From a7b8ace9ae096914a4f400f7230a84f19597c507 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Wed, 14 Aug 2024 16:23:11 -0600 Subject: [PATCH 1/8] Revert "comment out dvDCCoupledTechStorageInverterSize" This reverts commit ae497da0b208fd54c5f72cd3908b829be0418990. --- src/constraints/outage_constraints.jl | 18 ++++++------ src/constraints/storage_constraints.jl | 38 +++++++++++++------------- src/core/reopt.jl | 6 ++-- src/results/electric_storage.jl | 6 ++-- 4 files changed, 34 insertions(+), 34 deletions(-) diff --git a/src/constraints/outage_constraints.jl b/src/constraints/outage_constraints.jl index 9a243725d..6f8b4e7a8 100644 --- a/src/constraints/outage_constraints.jl +++ b/src/constraints/outage_constraints.jl @@ -391,15 +391,15 @@ function add_cannot_have_MG_with_only_PVwind_constraints(m, p) end function add_MG_dc_coupled_tech_elec_storage_constraints(m, p) - # # Lower bound on DC coupled PV and battery inverter power capacity - # @constraint(m, [s in p.s.electric_utility.scenarios, tz in p.s.electric_utility.outage_start_time_steps, ts in p.s.electric_utility.outage_time_steps], - # m[:dvDCCoupledTechStorageInverterSize]["ElectricStorage"] >= - # m[:dvMGDischargeFromStorage][s, tz, ts] + - # sum(m[:dvMGRatedProduction][t, s, tz, ts] * p.production_factor[t, tz+ts-1] * p.levelization_factor[t] - # - m[:dvMGProductionToStorage][t, s, tz, ts] - m[:dvMGCurtail][t, s, tz, ts] - # for t in p.techs.dc_couple_with_stor - # ) - # ) + # Lower bound on DC coupled PV and battery inverter power capacity + @constraint(m, [s in p.s.electric_utility.scenarios, tz in p.s.electric_utility.outage_start_time_steps, ts in p.s.electric_utility.outage_time_steps], + m[:dvDCCoupledTechStorageInverterSize]["ElectricStorage"] >= + m[:dvMGDischargeFromStorage][s, tz, ts] + + sum(m[:dvMGRatedProduction][t, s, tz, ts] * p.production_factor[t, tz+ts-1] * p.levelization_factor[t] + - m[:dvMGProductionToStorage][t, s, tz, ts] - m[:dvMGCurtail][t, s, tz, ts] + for t in p.techs.dc_couple_with_stor + ) + ) # Don't let AC coupled elec techs charge battery. # Future development could make this an option by adding a bool input and creating the set p.techs.elec_cannot_charge_stor that is different than p.techs.ac_couple_with_stor diff --git a/src/constraints/storage_constraints.jl b/src/constraints/storage_constraints.jl index 9878c14e1..8d835ed97 100644 --- a/src/constraints/storage_constraints.jl +++ b/src/constraints/storage_constraints.jl @@ -104,25 +104,25 @@ function add_elec_storage_dispatch_constraints(m, p, b; _n="") end function add_dc_coupled_tech_elec_storage_constraints(m, p, b; _n="") - # # Constraint (4d)-1: Lower bound on DC coupled PV and battery inverter power capacity (inverter direction) - # @constraint(m, [ts in p.time_steps], - # m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= - # m[Symbol("dvDischargeFromStorage"*_n)][b,ts] - # - sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) - # + sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] - # - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] - # - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) - # ) - - # # Constraint (4d)-2: Lower bound on DC coupled PV and battery inverter power capacity (rectifier direction) - # @constraint(m, [ts in p.time_steps], - # m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= - # - m[Symbol("dvDischargeFromStorage"*_n)][b,ts] - # + sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) - # - sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] - # - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] - # - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) - # ) + # Constraint (4d)-1: Lower bound on DC coupled PV and battery inverter power capacity (inverter direction) + @constraint(m, [ts in p.time_steps], + m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= + m[Symbol("dvDischargeFromStorage"*_n)][b,ts] + - sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) + + sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] + - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] + - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) + ) + + # Constraint (4d)-2: Lower bound on DC coupled PV and battery inverter power capacity (rectifier direction) + @constraint(m, [ts in p.time_steps], + m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= + - m[Symbol("dvDischargeFromStorage"*_n)][b,ts] + + sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) + - sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] + - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] + - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) + ) # Constraint (4d)-3: Don't let AC coupled elec techs charge battery. # Future development could make this an option by adding a bool input and creating the set p.techs.elec_cannot_charge_stor that is different than p.techs.ac_couple_with_stor diff --git a/src/core/reopt.jl b/src/core/reopt.jl index caf9d6e83..c32a6a959 100644 --- a/src/core/reopt.jl +++ b/src/core/reopt.jl @@ -610,9 +610,9 @@ function add_variables!(m::JuMP.AbstractModel, p::REoptInputs) binGHP[p.ghp_options], Bin # Can be <= 1 if require_ghp_purchase=0, and is ==1 if require_ghp_purchase=1 end - # if !isempty(p.techs.dc_couple_with_stor) - # @variable(m, dvDCCoupledTechStorageInverterSize[p.s.storage.types.elec] >= 0) # Power capacity of the DC coupled PV and electric storage system b [kW] - # end + if !isempty(p.techs.dc_couple_with_stor) + @variable(m, dvDCCoupledTechStorageInverterSize[p.s.storage.types.elec] >= 0) # Power capacity of the DC coupled PV and electric storage system b [kW] + end if !isempty(p.techs.gen) # Problem becomes a MILP @warn "Adding binary variable to model gas generator. Some solvers are very slow with integer variables." diff --git a/src/results/electric_storage.jl b/src/results/electric_storage.jl index e74731f0a..fd7cee9df 100644 --- a/src/results/electric_storage.jl +++ b/src/results/electric_storage.jl @@ -23,9 +23,9 @@ function add_electric_storage_results(m::JuMP.AbstractModel, p::REoptInputs, d:: r = Dict{String, Any}() r["size_kwh"] = round(value(m[Symbol("dvStorageEnergy"*_n)][b]), digits=2) r["size_kw"] = round(value(m[Symbol("dvStoragePower"*_n)][b]), digits=2) - # if !isempty(p.techs.dc_couple_with_stor) - # r["dc_couple_inverter_size_kw"] = round(value(m[:dvDCCoupledTechStorageInverterSize][b]), digits=2) - # end + if !isempty(p.techs.dc_couple_with_stor) + r["dc_couple_inverter_size_kw"] = round(value(m[:dvDCCoupledTechStorageInverterSize][b]), digits=2) + end if r["size_kwh"] != 0 soc = (m[Symbol("dvStoredEnergy"*_n)][b, ts] for ts in p.time_steps) From 15f79cfa6faff9c8b0fc26a8d5aceee8febfd815 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Wed, 14 Aug 2024 16:23:17 -0600 Subject: [PATCH 2/8] Revert "uncomment dvDCCoupledTechStorageInverterSize constraints" This reverts commit 0dcd8cd3e0ad1d5998abf4ca8a24753b6a53a734. --- src/constraints/outage_constraints.jl | 16 +++++------ src/constraints/storage_constraints.jl | 38 +++++++++++++------------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/constraints/outage_constraints.jl b/src/constraints/outage_constraints.jl index 6f8b4e7a8..383ccb066 100644 --- a/src/constraints/outage_constraints.jl +++ b/src/constraints/outage_constraints.jl @@ -392,14 +392,14 @@ end function add_MG_dc_coupled_tech_elec_storage_constraints(m, p) # Lower bound on DC coupled PV and battery inverter power capacity - @constraint(m, [s in p.s.electric_utility.scenarios, tz in p.s.electric_utility.outage_start_time_steps, ts in p.s.electric_utility.outage_time_steps], - m[:dvDCCoupledTechStorageInverterSize]["ElectricStorage"] >= - m[:dvMGDischargeFromStorage][s, tz, ts] + - sum(m[:dvMGRatedProduction][t, s, tz, ts] * p.production_factor[t, tz+ts-1] * p.levelization_factor[t] - - m[:dvMGProductionToStorage][t, s, tz, ts] - m[:dvMGCurtail][t, s, tz, ts] - for t in p.techs.dc_couple_with_stor - ) - ) + # @constraint(m, [s in p.s.electric_utility.scenarios, tz in p.s.electric_utility.outage_start_time_steps, ts in p.s.electric_utility.outage_time_steps], + # m[:dvDCCoupledTechStorageInverterSize]["ElectricStorage"] >= + # m[:dvMGDischargeFromStorage][s, tz, ts] + + # sum(m[:dvMGRatedProduction][t, s, tz, ts] * p.production_factor[t, tz+ts-1] * p.levelization_factor[t] + # - m[:dvMGProductionToStorage][t, s, tz, ts] - m[:dvMGCurtail][t, s, tz, ts] + # for t in p.techs.dc_couple_with_stor + # ) + # ) # Don't let AC coupled elec techs charge battery. # Future development could make this an option by adding a bool input and creating the set p.techs.elec_cannot_charge_stor that is different than p.techs.ac_couple_with_stor diff --git a/src/constraints/storage_constraints.jl b/src/constraints/storage_constraints.jl index 8d835ed97..9878c14e1 100644 --- a/src/constraints/storage_constraints.jl +++ b/src/constraints/storage_constraints.jl @@ -104,25 +104,25 @@ function add_elec_storage_dispatch_constraints(m, p, b; _n="") end function add_dc_coupled_tech_elec_storage_constraints(m, p, b; _n="") - # Constraint (4d)-1: Lower bound on DC coupled PV and battery inverter power capacity (inverter direction) - @constraint(m, [ts in p.time_steps], - m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= - m[Symbol("dvDischargeFromStorage"*_n)][b,ts] - - sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) - + sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] - - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] - - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) - ) - - # Constraint (4d)-2: Lower bound on DC coupled PV and battery inverter power capacity (rectifier direction) - @constraint(m, [ts in p.time_steps], - m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= - - m[Symbol("dvDischargeFromStorage"*_n)][b,ts] - + sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) - - sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] - - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] - - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) - ) + # # Constraint (4d)-1: Lower bound on DC coupled PV and battery inverter power capacity (inverter direction) + # @constraint(m, [ts in p.time_steps], + # m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= + # m[Symbol("dvDischargeFromStorage"*_n)][b,ts] + # - sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) + # + sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] + # - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] + # - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) + # ) + + # # Constraint (4d)-2: Lower bound on DC coupled PV and battery inverter power capacity (rectifier direction) + # @constraint(m, [ts in p.time_steps], + # m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= + # - m[Symbol("dvDischargeFromStorage"*_n)][b,ts] + # + sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) + # - sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] + # - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] + # - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) + # ) # Constraint (4d)-3: Don't let AC coupled elec techs charge battery. # Future development could make this an option by adding a bool input and creating the set p.techs.elec_cannot_charge_stor that is different than p.techs.ac_couple_with_stor From 00c229265244ee062fcccfe5d75c7478c18d78d6 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Wed, 14 Aug 2024 16:23:24 -0600 Subject: [PATCH 3/8] Revert "Update ac_dc_pvs_results.json" This reverts commit 5d024bc9df0763143325177bff20831c1f1f0a64. --- test/ac_dc_pvs_results.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/ac_dc_pvs_results.json b/test/ac_dc_pvs_results.json index 92c38a326..844c997f7 100644 --- a/test/ac_dc_pvs_results.json +++ b/test/ac_dc_pvs_results.json @@ -10,11 +10,11 @@ "macro expansion at macros.jl:1345 [inlined]", "(::REopt.var\"#226#229\"{REoptInputs{Scenario}, Model})(t::String) at macro.jl:301", "#87 at container.jl:124 [inlined]", - "iterate at generator.jl:47 [inlined]", + "iterate(::Base.Generator{Base.Iterators.Enumerate{Vector{Any}}, RecipesBase.var\"#sub#4\"}) at generator.jl:47 [inlined]", "collect(itr::Base.Generator{JuMP.Containers.VectorizedProductIterator{Tuple{Vector{String}}}, JuMP.Containers.var\"#87#89\"{REopt.var\"#226#229\"{REoptInputs{Scenario}, Model}}}) at array.jl:834", - "map(f::Function, A::JuMP.Containers.VectorizedProductIterator{Tuple{Vector{String}}}) at abstractarray.jl:3313", + "map(f::Function, A::JuMP.Containers.VectorizedProductIterator{Tuple{Vector{String}}}) at abstractarray.jl:3310", "container(f::Function, indices::JuMP.Containers.VectorizedProductIterator{Tuple{Vector{String}}}, ::Type{JuMP.Containers.DenseAxisArray}, names::Vector{Any}) at container.jl:123", - "container at container.jl:75 [inlined]", + "container(f::Function, indices::JuMP.Containers.VectorizedProductIterator{Tuple{Vector{String}}}, ::Type{JuMP.Containers.DenseAxisArray}, names::Vector{Any}) at container.jl:75 [inlined]", "macro expansion at macros.jl:1213 [inlined]", "add_outage_cost_constraints(m::Model, p::REoptInputs{Scenario}) at outage_constraints.jl:37", "build_reopt!(m::Model, p::REoptInputs{Scenario}) at reopt.jl:385", @@ -25,15 +25,15 @@ "macro expansion at Test.jl:1577 [inlined]", "top-level scope at debugging_tests.jl:6", "eval at boot.jl:385 [inlined]", - "include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String) at loading.jl:2076", - "_include(mapexpr::Function, mod::Module, _path::String) at loading.jl:2136", + "include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String) at loading.jl:2070", + "_include(mapexpr::Function, mod::Module, _path::String) at loading.jl:2130", "include(fname::String) at client.jl:489", "macro expansion at runtests.jl:15 [inlined]", "macro expansion at Test.jl:1577 [inlined]", "top-level scope at runtests.jl:15", "eval at boot.jl:385 [inlined]", - "include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String) at loading.jl:2076", - "_include(mapexpr::Function, mod::Module, _path::String) at loading.jl:2136", + "include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String) at loading.jl:2070", + "_include(mapexpr::Function, mod::Module, _path::String) at loading.jl:2130", "include(fname::String) at client.jl:489", "top-level scope at none:6", "eval at boot.jl:385 [inlined]", From 8b734562b25b43051a0611463bdeab5a87f795bf Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Wed, 14 Aug 2024 16:26:47 -0600 Subject: [PATCH 4/8] Revert "debugging infeasible" --- src/constraints/outage_constraints.jl | 16 +- src/constraints/storage_constraints.jl | 38 +- test/ac_dc_pvs_results.json | 47 +- test/ac_dc_pvs_results_baseline.json | 202426 ---------------------- test/debugging_tests.jl | 49 +- test/scenarios/ac_dc_pvs.json | 4 +- 6 files changed, 41 insertions(+), 202539 deletions(-) delete mode 100644 test/ac_dc_pvs_results_baseline.json diff --git a/src/constraints/outage_constraints.jl b/src/constraints/outage_constraints.jl index 383ccb066..6f8b4e7a8 100644 --- a/src/constraints/outage_constraints.jl +++ b/src/constraints/outage_constraints.jl @@ -392,14 +392,14 @@ end function add_MG_dc_coupled_tech_elec_storage_constraints(m, p) # Lower bound on DC coupled PV and battery inverter power capacity - # @constraint(m, [s in p.s.electric_utility.scenarios, tz in p.s.electric_utility.outage_start_time_steps, ts in p.s.electric_utility.outage_time_steps], - # m[:dvDCCoupledTechStorageInverterSize]["ElectricStorage"] >= - # m[:dvMGDischargeFromStorage][s, tz, ts] + - # sum(m[:dvMGRatedProduction][t, s, tz, ts] * p.production_factor[t, tz+ts-1] * p.levelization_factor[t] - # - m[:dvMGProductionToStorage][t, s, tz, ts] - m[:dvMGCurtail][t, s, tz, ts] - # for t in p.techs.dc_couple_with_stor - # ) - # ) + @constraint(m, [s in p.s.electric_utility.scenarios, tz in p.s.electric_utility.outage_start_time_steps, ts in p.s.electric_utility.outage_time_steps], + m[:dvDCCoupledTechStorageInverterSize]["ElectricStorage"] >= + m[:dvMGDischargeFromStorage][s, tz, ts] + + sum(m[:dvMGRatedProduction][t, s, tz, ts] * p.production_factor[t, tz+ts-1] * p.levelization_factor[t] + - m[:dvMGProductionToStorage][t, s, tz, ts] - m[:dvMGCurtail][t, s, tz, ts] + for t in p.techs.dc_couple_with_stor + ) + ) # Don't let AC coupled elec techs charge battery. # Future development could make this an option by adding a bool input and creating the set p.techs.elec_cannot_charge_stor that is different than p.techs.ac_couple_with_stor diff --git a/src/constraints/storage_constraints.jl b/src/constraints/storage_constraints.jl index 9878c14e1..8d835ed97 100644 --- a/src/constraints/storage_constraints.jl +++ b/src/constraints/storage_constraints.jl @@ -104,25 +104,25 @@ function add_elec_storage_dispatch_constraints(m, p, b; _n="") end function add_dc_coupled_tech_elec_storage_constraints(m, p, b; _n="") - # # Constraint (4d)-1: Lower bound on DC coupled PV and battery inverter power capacity (inverter direction) - # @constraint(m, [ts in p.time_steps], - # m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= - # m[Symbol("dvDischargeFromStorage"*_n)][b,ts] - # - sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) - # + sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] - # - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] - # - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) - # ) - - # # Constraint (4d)-2: Lower bound on DC coupled PV and battery inverter power capacity (rectifier direction) - # @constraint(m, [ts in p.time_steps], - # m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= - # - m[Symbol("dvDischargeFromStorage"*_n)][b,ts] - # + sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) - # - sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] - # - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] - # - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) - # ) + # Constraint (4d)-1: Lower bound on DC coupled PV and battery inverter power capacity (inverter direction) + @constraint(m, [ts in p.time_steps], + m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= + m[Symbol("dvDischargeFromStorage"*_n)][b,ts] + - sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) + + sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] + - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] + - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) + ) + + # Constraint (4d)-2: Lower bound on DC coupled PV and battery inverter power capacity (rectifier direction) + @constraint(m, [ts in p.time_steps], + m[Symbol("dvDCCoupledTechStorageInverterSize"*_n)][b] >= + - m[Symbol("dvDischargeFromStorage"*_n)][b,ts] + + sum(m[Symbol("dvProductionToStorage"*_n)][b, t, ts] for t in p.techs.ac_couple_with_stor) + - sum(p.production_factor[t, ts] * p.levelization_factor[t] * m[Symbol("dvRatedProduction"*_n)][t,ts] + - m[Symbol("dvProductionToStorage"*_n)][b, t, ts] + - m[Symbol("dvCurtail"*_n)][t, ts] for t in p.techs.dc_couple_with_stor) + ) # Constraint (4d)-3: Don't let AC coupled elec techs charge battery. # Future development could make this an option by adding a bool input and creating the set p.techs.elec_cannot_charge_stor that is different than p.techs.ac_couple_with_stor diff --git a/test/ac_dc_pvs_results.json b/test/ac_dc_pvs_results.json index 844c997f7..5f76c6a42 100644 --- a/test/ac_dc_pvs_results.json +++ b/test/ac_dc_pvs_results.json @@ -2,47 +2,13 @@ "Messages": { "errors": [ [ - "ErrorException(\"Constraints of type MathOptInterface.VectorAffineFunction{Float64}-in-MathOptInterface.Indicator{MathOptInterface.ACTIVATE_ON_ONE, MathOptInterface.GreaterThan{Float64}} are not supported by the solver.\\n\\nIf you expected the solver to support your problem, you may have an error in your formulation. Otherwise, consider using a different solver.\\n\\nThe list of available solvers, along with the problem types they support, is available at https://jump.dev/JuMP.jl/stable/installation/#Supported-solvers.\")", + "core_reopt.jl_149", [ - "error(s::String) at error.jl:35", - "_moi_add_constraint(model::MathOptInterface.Utilities.CachingOptimizer{MathOptInterface.Bridges.LazyBridgeOptimizer{HiGHS.Optimizer}, MathOptInterface.Utilities.UniversalFallback{MathOptInterface.Utilities.Model{Float64}}}, f::MathOptInterface.VectorAffineFunction{Float64}, s::MathOptInterface.Indicator{MathOptInterface.ACTIVATE_ON_ONE, MathOptInterface.GreaterThan{Float64}}) at constraints.jl:679", - "add_constraint(model::Model, con::VectorConstraint{AffExpr, MathOptInterface.Indicator{MathOptInterface.ACTIVATE_ON_ONE, MathOptInterface.GreaterThan{Float64}}, VectorShape}, name::String) at constraints.jl:706", - "macro expansion at macros.jl:1345 [inlined]", - "(::REopt.var\"#226#229\"{REoptInputs{Scenario}, Model})(t::String) at macro.jl:301", - "#87 at container.jl:124 [inlined]", - "iterate(::Base.Generator{Base.Iterators.Enumerate{Vector{Any}}, RecipesBase.var\"#sub#4\"}) at generator.jl:47 [inlined]", - "collect(itr::Base.Generator{JuMP.Containers.VectorizedProductIterator{Tuple{Vector{String}}}, JuMP.Containers.var\"#87#89\"{REopt.var\"#226#229\"{REoptInputs{Scenario}, Model}}}) at array.jl:834", - "map(f::Function, A::JuMP.Containers.VectorizedProductIterator{Tuple{Vector{String}}}) at abstractarray.jl:3310", - "container(f::Function, indices::JuMP.Containers.VectorizedProductIterator{Tuple{Vector{String}}}, ::Type{JuMP.Containers.DenseAxisArray}, names::Vector{Any}) at container.jl:123", - "container(f::Function, indices::JuMP.Containers.VectorizedProductIterator{Tuple{Vector{String}}}, ::Type{JuMP.Containers.DenseAxisArray}, names::Vector{Any}) at container.jl:75 [inlined]", - "macro expansion at macros.jl:1213 [inlined]", - "add_outage_cost_constraints(m::Model, p::REoptInputs{Scenario}) at outage_constraints.jl:37", - "build_reopt!(m::Model, p::REoptInputs{Scenario}) at reopt.jl:385", - "run_reopt(m::Model, p::REoptInputs{Scenario}; organize_pvs::Bool) at reopt.jl:535", - "run_reopt at reopt.jl:532 [inlined]", - "run_reopt(m::Model, d::Dict{String, Any}) at reopt.jl:52", - "macro expansion at debugging_tests.jl:15 [inlined]", - "macro expansion at Test.jl:1577 [inlined]", - "top-level scope at debugging_tests.jl:6", - "eval at boot.jl:385 [inlined]", - "include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String) at loading.jl:2070", - "_include(mapexpr::Function, mod::Module, _path::String) at loading.jl:2130", - "include(fname::String) at client.jl:489", - "macro expansion at runtests.jl:15 [inlined]", - "macro expansion at Test.jl:1577 [inlined]", - "top-level scope at runtests.jl:15", - "eval at boot.jl:385 [inlined]", - "include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String) at loading.jl:2070", - "_include(mapexpr::Function, mod::Module, _path::String) at loading.jl:2130", - "include(fname::String) at client.jl:489", - "top-level scope at none:6", - "eval at boot.jl:385 [inlined]", - "exec_options(opts::Base.JLOptions) at client.jl:291", - "_start() at client.jl:552" + "REopt with-DERs scenario solved with non-optimal solution." ] ] ], - "has_stacktrace": true, + "has_stacktrace": false, "warnings": [ [ "core_electric_utility.jl_187", @@ -50,9 +16,16 @@ "When using stochastic outage modeling (i.e. outage_start_time_steps, outage_durations, outage_probabilities), \n emissions and renewable energy percentage calculations and constraints do not consider outages." ] ], + [ + "core_reopt.jl_547", + [ + "REopt solved with " + ] + ], [ "core_reopt.jl_641", [ + "Adding binary variable to model outages. Some solvers are very slow with integer variables", "Adding binary variable to model outages. Some solvers are very slow with integer variables" ] ], diff --git a/test/ac_dc_pvs_results_baseline.json b/test/ac_dc_pvs_results_baseline.json deleted file mode 100644 index 967740c85..000000000 --- a/test/ac_dc_pvs_results_baseline.json +++ /dev/null @@ -1,202426 +0,0 @@ -{ - "Site": { - "annual_emissions_from_fuelburn_tonnes_PM25": 0.0, - "lifecycle_emissions_tonnes_CO2_bau": 10653.83, - "annual_emissions_tonnes_CO2_bau": 495.07, - "lifecycle_emissions_reduction_CO2_fraction": 0.08563586991720352, - "lifecycle_emissions_tonnes_PM25": 0.54, - "lifecycle_emissions_tonnes_PM25_bau": 0.6, - "annual_emissions_from_fuelburn_tonnes_NOx_bau": 0.0, - "lifecycle_emissions_tonnes_SO2": 0.63, - "lifecycle_emissions_from_fuelburn_tonnes_PM25": 0.0, - "annual_emissions_tonnes_SO2_bau": 0.03, - "annual_emissions_from_fuelburn_tonnes_NOx": 0.0, - "lifecycle_emissions_from_fuelburn_tonnes_SO2_bau": 0.0, - "annual_emissions_tonnes_NOx": 0.13, - "renewable_electricity_fraction_bau": 0.040913, - "annual_emissions_tonnes_SO2": 0.03, - "annual_emissions_tonnes_PM25": 0.03, - "total_renewable_energy_fraction_bau": 0.040913, - "lifecycle_emissions_from_fuelburn_tonnes_CO2_bau": 0.0, - "lifecycle_emissions_tonnes_NOx": 2.84, - "annual_emissions_from_fuelburn_tonnes_CO2": 0.0, - "annual_emissions_from_fuelburn_tonnes_CO2_bau": 0.0, - "annual_emissions_tonnes_PM25_bau": 0.03, - "total_renewable_energy_fraction": 0.179195, - "annual_emissions_from_fuelburn_tonnes_SO2": 0.0, - "lifecycle_emissions_from_fuelburn_tonnes_NOx_bau": 0.0, - "lifecycle_emissions_from_fuelburn_tonnes_SO2": 0.0, - "annual_renewable_electricity_kwh_bau": 45938.78, - "renewable_electricity_fraction": 0.179195, - "lifecycle_emissions_tonnes_NOx_bau": 3.11, - "lifecycle_emissions_tonnes_SO2_bau": 0.69, - "lifecycle_emissions_from_fuelburn_tonnes_CO2": 0.0, - "annual_emissions_from_fuelburn_tonnes_PM25_bau": 0.0, - "annual_emissions_from_fuelburn_tonnes_SO2_bau": 0.0, - "lifecycle_emissions_from_fuelburn_tonnes_PM25_bau": 0.0, - "annual_emissions_tonnes_NOx_bau": 0.14, - "lifecycle_emissions_from_fuelburn_tonnes_NOx": 0.0, - "annual_renewable_electricity_kwh": 201205.81, - "annual_emissions_tonnes_CO2": 452.67, - "lifecycle_emissions_tonnes_CO2": 9741.48 - }, - "Outages": { - "expected_outage_cost": 38003.69101517182, - "electric_storage_microgrid_upgraded": true, - "unserved_load_per_outage_kwh": [ - [ - 2934.9 - ] - ], - "pv_microgrid_size_kw": 121.6667, - "pv_to_storage_series_kw": [ - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 2.467 - ] - ], - [ - [ - 7.593 - ] - ], - [ - [ - 27.479 - ] - ], - [ - [ - 14.63 - ] - ], - [ - [ - 21.782 - ] - ], - [ - [ - 4.668 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ] - ], - "critical_loads_per_outage_series_kw": [ - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 35.7032525087 - ] - ], - [ - [ - 39.13324098535 - ] - ], - [ - [ - 65.73176077400001 - ] - ], - [ - [ - 98.6273313215 - ] - ], - [ - [ - 98.5803765585 - ] - ], - [ - [ - 98.5217491685 - ] - ], - [ - [ - 98.5224687115 - ] - ], - [ - [ - 98.5364321545 - ] - ], - [ - [ - 98.536721342 - ] - ], - [ - [ - 98.3879792935 - ] - ], - [ - [ - 100.0259452265 - ] - ], - [ - [ - 108.680057484 - ] - ], - [ - [ - 84.6323553725 - ] - ], - [ - [ - 84.696616961 - ] - ], - [ - [ - 75.87522944749999 - ] - ], - [ - [ - 30.45418713595 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 16.06619674345 - ] - ], - [ - [ - 16.4401459875 - ] - ], - [ - [ - 16.42034179565 - ] - ], - [ - [ - 16.5319430043 - ] - ], - [ - [ - 35.5986135471 - ] - ], - [ - [ - 30.8088586586 - ] - ], - [ - [ - 47.996797263800005 - ] - ], - [ - [ - 74.0402767375 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 99.7876786385 - ] - ], - [ - [ - 108.353473262 - ] - ], - [ - [ - 75.3876981175 - ] - ], - [ - [ - 57.674028539999995 - ] - ], - [ - [ - 57.684197782999995 - ] - ], - [ - [ - 40.10646857055 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 16.0157476851 - ] - ], - [ - [ - 16.030614242 - ] - ], - [ - [ - 16.0572089538 - ] - ], - [ - [ - 5.697231791 - ] - ], - [ - [ - 30.045383660949998 - ] - ], - [ - [ - 29.6814054141 - ] - ], - [ - [ - 56.2519097805 - ] - ], - [ - [ - 56.2519097805 - ] - ], - [ - [ - 73.965579358 - ] - ], - [ - [ - 73.965579358 - ] - ], - [ - [ - 73.965579358 - ] - ], - [ - [ - 73.965579358 - ] - ], - [ - [ - 75.67873828249999 - ] - ], - [ - [ - 66.5308633285 - ] - ], - [ - [ - 48.817193751199994 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 35.793373751 - ] - ], - [ - [ - 39.14933736705 - ] - ], - [ - [ - 65.4495116485 - ] - ], - [ - [ - 98.08212518399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 98.07451971399999 - ] - ], - [ - [ - 99.7876786385 - ] - ], - [ - [ - 108.353473262 - ] - ], - [ - [ - 84.244532906 - ] - ], - [ - [ - 84.244532906 - ] - ], - [ - [ - 75.3876981175 - ] - ], - [ - [ - 30.45418713595 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ] - ], - "pv_microgrid_upgrade_cost": 0.0, - "max_outage_cost_per_outage_duration": [ - 38003.69101517182 - ], - "unserved_load_series_kw": [ - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 35.7032525087 - ] - ], - [ - [ - 4.4985749249905425 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 38.954240578951485 - ] - ], - [ - [ - 25.215782278447378 - ] - ], - [ - [ - 18.46897149460871 - ] - ], - [ - [ - 18.526527228529417 - ] - ], - [ - [ - 38.47081039497125 - ] - ], - [ - [ - 57.809153953554144 - ] - ], - [ - [ - 56.7607599028973 - ] - ], - [ - [ - 94.84041781498684 - ] - ], - [ - [ - 108.680057484 - ] - ], - [ - [ - 84.6323553725 - ] - ], - [ - [ - 84.696616961 - ] - ], - [ - [ - 43.99892355189999 - ] - ], - [ - [ - 30.45418713595 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 16.06619674345 - ] - ], - [ - [ - 16.4401459875 - ] - ], - [ - [ - 16.42034179565 - ] - ], - [ - [ - 16.5319430043 - ] - ], - [ - [ - 35.5986135471 - ] - ], - [ - [ - 27.545618904499626 - ] - ], - [ - [ - 8.992402886784191 - ] - ], - [ - [ - 15.780079410714663 - ] - ], - [ - [ - 47.66268221460136 - ] - ], - [ - [ - 48.483197172743154 - ] - ], - [ - [ - 36.54749512535171 - ] - ], - [ - [ - 25.114796075762854 - ] - ], - [ - [ - 37.42444801644768 - ] - ], - [ - [ - 24.598784868702396 - ] - ], - [ - [ - 88.85549108487504 - ] - ], - [ - [ - 108.353473262 - ] - ], - [ - [ - 75.3876981175 - ] - ], - [ - [ - 57.674028539999995 - ] - ], - [ - [ - 57.684197782999995 - ] - ], - [ - [ - 40.10646857055 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 16.0157476851 - ] - ], - [ - [ - 16.030614242 - ] - ], - [ - [ - 16.0572089538 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 3.552713678800501e-15 - ] - ], - [ - [ - 3.552713678800501e-15 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 13.438481755355632 - ] - ], - [ - [ - 0.9567510014497458 - ] - ], - [ - [ - 64.50725185406851 - ] - ], - [ - [ - 66.5308633285 - ] - ], - [ - [ - 48.817193751199994 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 15.938152947799999 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 35.793373751 - ] - ], - [ - [ - 30.509936857109146 - ] - ], - [ - [ - 25.36579835636666 - ] - ], - [ - [ - 4.641551207752826 - ] - ], - [ - [ - 21.587254811716633 - ] - ], - [ - [ - 13.769712185780705 - ] - ], - [ - [ - 13.496360661803237 - ] - ], - [ - [ - 19.900055645888102 - ] - ], - [ - [ - 32.82177591806004 - ] - ], - [ - [ - 21.53986100962777 - ] - ], - [ - [ - 86.83480344212165 - ] - ], - [ - [ - 108.353473262 - ] - ], - [ - [ - 84.244532906 - ] - ], - [ - [ - 84.244532906 - ] - ], - [ - [ - 63.96130186104654 - ] - ], - [ - [ - 30.45418713595 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ], - [ - [ - 16.553543950349997 - ] - ] - ], - "soc_series_fraction": [ - [ - [ - 1.0 - ] - ], - [ - [ - 1.0 - ] - ], - [ - [ - 1.0 - ] - ], - [ - [ - 1.0 - ] - ], - [ - [ - 0.84 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.707 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.547 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.387 - ] - ], - [ - [ - 0.398 - ] - ], - [ - [ - 0.432 - ] - ], - [ - [ - 0.556 - ] - ], - [ - [ - 0.622 - ] - ], - [ - [ - 0.721 - ] - ], - [ - [ - 0.742 - ] - ], - [ - [ - 0.737 - ] - ], - [ - [ - 0.737 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.577 - ] - ], - [ - [ - 0.417 - ] - ], - [ - [ - 0.417 - ] - ], - [ - [ - 0.417 - ] - ], - [ - [ - 0.417 - ] - ], - [ - [ - 0.417 - ] - ], - [ - [ - 0.417 - ] - ], - [ - [ - 0.257 - ] - ], - [ - [ - 0.257 - ] - ], - [ - [ - 0.257 - ] - ], - [ - [ - 0.257 - ] - ], - [ - [ - 0.257 - ] - ], - [ - [ - 0.2 - ] - ], - [ - [ - 0.2 - ] - ], - [ - [ - 0.2 - ] - ], - [ - [ - 0.2 - ] - ], - [ - [ - 0.2 - ] - ], - [ - [ - 0.2 - ] - ], - [ - [ - 0.2 - ] - ] - ], - "pv_curtailed_series_kw": [ - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ] - ], - "storage_microgrid_upgrade_cost": 0.0, - "pv_to_load_series_kw": [ - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 2.758 - ] - ], - [ - [ - 39.255 - ] - ], - [ - [ - 59.673 - ] - ], - [ - [ - 73.365 - ] - ], - [ - [ - 80.053 - ] - ], - [ - [ - 79.996 - ] - ], - [ - [ - 60.066 - ] - ], - [ - [ - 40.728 - ] - ], - [ - [ - 41.627 - ] - ], - [ - [ - 5.186 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 3.263 - ] - ], - [ - [ - 39.004 - ] - ], - [ - [ - 58.26 - ] - ], - [ - [ - 50.412 - ] - ], - [ - [ - 49.591 - ] - ], - [ - [ - 61.527 - ] - ], - [ - [ - 72.96 - ] - ], - [ - [ - 60.65 - ] - ], - [ - [ - 41.599 - ] - ], - [ - [ - 10.932 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 5.697 - ] - ], - [ - [ - 30.045 - ] - ], - [ - [ - 29.681 - ] - ], - [ - [ - 56.252 - ] - ], - [ - [ - 56.252 - ] - ], - [ - [ - 73.966 - ] - ], - [ - [ - 73.101 - ] - ], - [ - [ - 60.527 - ] - ], - [ - [ - 41.133 - ] - ], - [ - [ - 11.171 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 8.639 - ] - ], - [ - [ - 40.084 - ] - ], - [ - [ - 61.564 - ] - ], - [ - [ - 76.487 - ] - ], - [ - [ - 84.305 - ] - ], - [ - [ - 84.578 - ] - ], - [ - [ - 78.174 - ] - ], - [ - [ - 65.253 - ] - ], - [ - [ - 44.658 - ] - ], - [ - [ - 12.953 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ] - ], - "storage_discharge_series_kw": [ - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 31.8763058956 - ] - ], - [ - [ - 26.477048520759453 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 31.8763058956 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 31.8763058956 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.8641905819693108 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 31.8763058956 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 31.8763058956 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 31.8763058956 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 11.426396256453451 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ], - [ - [ - 0.0 - ] - ] - ], - "microgrid_upgrade_capital_cost": 0.0 - }, - "ElectricStorage": { - "size_kw": 31.88, - "size_kwh": 210.17, - "initial_capital_cost": 124638.15, - "dc_couple_inverter_size_kw": 82.18, - "soc_series_fraction": [ - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.5, - 0.51, - 0.654, - 0.798, - 0.941, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.21, - 0.354, - 0.497, - 0.641, - 0.785, - 0.929, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.21, - 0.28, - 0.424, - 0.567, - 0.711, - 0.855, - 0.999, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.236, - 0.38, - 0.523, - 0.667, - 0.811, - 0.955, - 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, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.212, - 0.356, - 0.5, - 0.643, - 0.787, - 0.931, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.377, - 0.521, - 0.664, - 0.808, - 0.952, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.235, - 0.379, - 0.523, - 0.666, - 0.81, - 0.954, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.282, - 0.425, - 0.569, - 0.713, - 0.857, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.214, - 0.358, - 0.502, - 0.645, - 0.789, - 0.933, - 1.0, - 1.0, - 0.851, - 0.691, - 0.531, - 0.371, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.213, - 0.222, - 0.281, - 0.425, - 0.569, - 0.712, - 0.856, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.232, - 0.376, - 0.519, - 0.663, - 0.807, - 0.951, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.377, - 0.521, - 0.665, - 0.808, - 0.952, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.236, - 0.38, - 0.524, - 0.668, - 0.811, - 0.955, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.216, - 0.359, - 0.503, - 0.647, - 0.791, - 0.912, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.232, - 0.373, - 0.517, - 0.661, - 0.804, - 0.948, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.234, - 0.376, - 0.52, - 0.664, - 0.807, - 0.951, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.226, - 0.332, - 0.448, - 0.591, - 0.735, - 0.879, - 1.0, - 1.0, - 0.922, - 0.762, - 0.602, - 0.442, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.31, - 0.324, - 0.388, - 0.497, - 0.594, - 0.738, - 0.882, - 1.0, - 0.88, - 0.72, - 0.56, - 0.4, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.274, - 0.418, - 0.562, - 0.706, - 0.849, - 0.954, - 0.972, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.212, - 0.272, - 0.416, - 0.559, - 0.703, - 0.847, - 0.991, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.24, - 0.384, - 0.528, - 0.671, - 0.815, - 0.959, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.238, - 0.382, - 0.525, - 0.669, - 0.813, - 0.957, - 1.0, - 1.0, - 1.0, - 0.969, - 0.809, - 0.649, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.495, - 0.55, - 0.611, - 0.703, - 0.795, - 0.892, - 0.973, - 1.0, - 1.0, - 1.0, - 0.869, - 0.709, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.567, - 0.62, - 0.653, - 0.711, - 0.712, - 0.856, - 1.0, - 0.934, - 0.774, - 0.614, - 0.454, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.329, - 0.413, - 0.557, - 0.565, - 0.709, - 0.852, - 0.996, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.244, - 0.388, - 0.532, - 0.676, - 0.819, - 0.963, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.253, - 0.396, - 0.54, - 0.684, - 0.828, - 0.972, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.253, - 0.396, - 0.54, - 0.684, - 0.828, - 0.971, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.216, - 0.36, - 0.503, - 0.647, - 0.791, - 0.935, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.3, - 0.443, - 0.587, - 0.731, - 0.875, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.239, - 0.375, - 0.519, - 0.663, - 0.807, - 0.95, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.256, - 0.399, - 0.543, - 0.687, - 0.831, - 0.975, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.261, - 0.405, - 0.549, - 0.692, - 0.836, - 0.98, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.258, - 0.402, - 0.546, - 0.689, - 0.833, - 0.977, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.213, - 0.289, - 0.418, - 0.561, - 0.705, - 0.849, - 0.993, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.259, - 0.403, - 0.547, - 0.691, - 0.834, - 0.978, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.34, - 0.484, - 0.628, - 0.771, - 0.915, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.292, - 0.42, - 0.55, - 0.654, - 0.797, - 0.941, - 1.0, - 0.908, - 0.748, - 0.588, - 0.428, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.323, - 0.425, - 0.569, - 0.713, - 0.856, - 0.909, - 0.967, - 1.0, - 0.905, - 0.745, - 0.585, - 0.425, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.272, - 0.334, - 0.362, - 0.425, - 0.569, - 0.712, - 0.856, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.344, - 0.488, - 0.631, - 0.775, - 0.919, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.256, - 0.4, - 0.535, - 0.679, - 0.823, - 0.966, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.264, - 0.408, - 0.552, - 0.66, - 0.804, - 0.948, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.269, - 0.413, - 0.557, - 0.701, - 0.844, - 0.988, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.223, - 0.366, - 0.51, - 0.654, - 0.798, - 0.941, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.271, - 0.415, - 0.559, - 0.703, - 0.847, - 0.99, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.27, - 0.413, - 0.557, - 0.701, - 0.845, - 0.988, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.219, - 0.314, - 0.434, - 0.578, - 0.709, - 0.784, - 0.928, - 1.0, - 1.0, - 0.991, - 0.831, - 0.671, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.52, - 0.527, - 0.536, - 0.569, - 0.712, - 0.856, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.273, - 0.416, - 0.56, - 0.704, - 0.848, - 0.991, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.269, - 0.413, - 0.557, - 0.701, - 0.844, - 0.988, - 1.0, - 1.0, - 0.874, - 0.714, - 0.554, - 0.394, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.303, - 0.35, - 0.395, - 0.425, - 0.569, - 0.712, - 0.856, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.283, - 0.426, - 0.57, - 0.714, - 0.858, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.283, - 0.427, - 0.571, - 0.714, - 0.858, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.279, - 0.422, - 0.566, - 0.71, - 0.854, - 0.998, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.277, - 0.421, - 0.565, - 0.708, - 0.852, - 0.996, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.345, - 0.489, - 0.633, - 0.776, - 0.92, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.287, - 0.431, - 0.575, - 0.719, - 0.863, - 1.0, - 1.0, - 1.0, - 0.925, - 0.765, - 0.605, - 0.445, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.294, - 0.395, - 0.475, - 0.588, - 0.731, - 0.756, - 0.899, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.223, - 0.318, - 0.438, - 0.582, - 0.726, - 0.87, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.236, - 0.333, - 0.477, - 0.621, - 0.764, - 0.908, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.283, - 0.427, - 0.571, - 0.715, - 0.858, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.286, - 0.43, - 0.574, - 0.717, - 0.861, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.24, - 0.334, - 0.457, - 0.601, - 0.745, - 0.888, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.293, - 0.437, - 0.58, - 0.724, - 0.868, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.302, - 0.446, - 0.59, - 0.733, - 0.877, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.203, - 0.271, - 0.415, - 0.559, - 0.703, - 0.846, - 0.99, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.299, - 0.428, - 0.571, - 0.715, - 0.859, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.262, - 0.38, - 0.524, - 0.667, - 0.811, - 0.955, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.21, - 0.303, - 0.447, - 0.591, - 0.735, - 0.878, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.21, - 0.303, - 0.447, - 0.59, - 0.734, - 0.878, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.212, - 0.308, - 0.452, - 0.596, - 0.74, - 0.883, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.213, - 0.309, - 0.453, - 0.597, - 0.74, - 0.884, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.213, - 0.303, - 0.447, - 0.591, - 0.735, - 0.879, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.215, - 0.316, - 0.46, - 0.604, - 0.748, - 0.891, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.216, - 0.319, - 0.463, - 0.607, - 0.751, - 0.894, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.217, - 0.32, - 0.464, - 0.608, - 0.752, - 0.895, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.263, - 0.368, - 0.512, - 0.656, - 0.799, - 0.943, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.217, - 0.313, - 0.457, - 0.601, - 0.745, - 0.888, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.217, - 0.31, - 0.453, - 0.597, - 0.741, - 0.885, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.218, - 0.315, - 0.443, - 0.586, - 0.73, - 0.874, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.218, - 0.311, - 0.434, - 0.578, - 0.722, - 0.866, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.219, - 0.313, - 0.456, - 0.6, - 0.744, - 0.888, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.221, - 0.323, - 0.467, - 0.611, - 0.755, - 0.898, - 0.957, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.221, - 0.324, - 0.467, - 0.611, - 0.755, - 0.899, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.221, - 0.32, - 0.464, - 0.607, - 0.751, - 0.895, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.222, - 0.278, - 0.397, - 0.541, - 0.685, - 0.829, - 0.972, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.225, - 0.338, - 0.482, - 0.626, - 0.769, - 0.913, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.225, - 0.33, - 0.474, - 0.618, - 0.761, - 0.905, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.341, - 0.485, - 0.629, - 0.773, - 0.916, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.339, - 0.482, - 0.626, - 0.77, - 0.914, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.226, - 0.331, - 0.474, - 0.618, - 0.762, - 0.906, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.333, - 0.451, - 0.594, - 0.738, - 0.882, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.341, - 0.485, - 0.629, - 0.772, - 0.916, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.23, - 0.344, - 0.488, - 0.631, - 0.775, - 0.919, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.345, - 0.489, - 0.632, - 0.776, - 0.92, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.223, - 0.331, - 0.475, - 0.619, - 0.762, - 0.906, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.377, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.248, - 0.357, - 0.501, - 0.644, - 0.788, - 0.932, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.232, - 0.345, - 0.489, - 0.633, - 0.777, - 0.92, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.312, - 0.416, - 0.56, - 0.607, - 0.75, - 0.894, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.346, - 0.45, - 0.594, - 0.738, - 0.881, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.905, - 0.745, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.695, - 0.839, - 0.89, - 0.896, - 0.916, - 0.926, - 0.963, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.224, - 0.345, - 0.489, - 0.632, - 0.776, - 0.92, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.234, - 0.347, - 0.491, - 0.635, - 0.778, - 0.922, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.377, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.218, - 0.251, - 0.363, - 0.506, - 0.65, - 0.794, - 0.938, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.233, - 0.344, - 0.488, - 0.632, - 0.776, - 0.919, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.229, - 0.339, - 0.483, - 0.627, - 0.771, - 0.914, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.235, - 0.346, - 0.49, - 0.634, - 0.778, - 0.921, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.234, - 0.339, - 0.483, - 0.626, - 0.77, - 0.914, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.235, - 0.345, - 0.489, - 0.632, - 0.776, - 0.92, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.235, - 0.343, - 0.487, - 0.631, - 0.775, - 0.918, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.394, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.236, - 0.272, - 0.385, - 0.529, - 0.673, - 0.816, - 0.96, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.226, - 0.337, - 0.48, - 0.624, - 0.768, - 0.893, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.308, - 0.414, - 0.54, - 0.599, - 0.743, - 0.887, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.238, - 0.351, - 0.495, - 0.639, - 0.782, - 0.926, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.203, - 0.24, - 0.357, - 0.501, - 0.645, - 0.789, - 0.932, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.203, - 0.241, - 0.354, - 0.498, - 0.642, - 0.785, - 0.929, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.242, - 0.354, - 0.497, - 0.641, - 0.785, - 0.929, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.412, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.255, - 0.293, - 0.402, - 0.546, - 0.689, - 0.833, - 0.977, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.24, - 0.355, - 0.499, - 0.642, - 0.786, - 0.93, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.241, - 0.352, - 0.496, - 0.639, - 0.783, - 0.927, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.239, - 0.348, - 0.491, - 0.635, - 0.779, - 0.923, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.241, - 0.346, - 0.49, - 0.633, - 0.777, - 0.921, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.243, - 0.354, - 0.497, - 0.641, - 0.785, - 0.929, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.247, - 0.342, - 0.485, - 0.629, - 0.773, - 0.917, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.412, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.259, - 0.302, - 0.417, - 0.504, - 0.648, - 0.792, - 0.936, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.246, - 0.364, - 0.507, - 0.651, - 0.795, - 0.939, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.245, - 0.353, - 0.497, - 0.64, - 0.784, - 0.928, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.25, - 0.359, - 0.502, - 0.646, - 0.79, - 0.934, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.248, - 0.359, - 0.503, - 0.647, - 0.791, - 0.934, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.246, - 0.36, - 0.504, - 0.647, - 0.791, - 0.935, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.248, - 0.372, - 0.516, - 0.659, - 0.803, - 0.947, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.43, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.277, - 0.319, - 0.436, - 0.58, - 0.724, - 0.868, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.252, - 0.367, - 0.511, - 0.655, - 0.799, - 0.942, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.25, - 0.362, - 0.506, - 0.65, - 0.793, - 0.937, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.249, - 0.361, - 0.505, - 0.648, - 0.792, - 0.936, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.246, - 0.36, - 0.504, - 0.648, - 0.792, - 0.935, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.245, - 0.36, - 0.504, - 0.648, - 0.792, - 0.935, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.245, - 0.355, - 0.499, - 0.643, - 0.787, - 0.931, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.43, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.276, - 0.313, - 0.42, - 0.564, - 0.708, - 0.851, - 0.995, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.243, - 0.352, - 0.496, - 0.64, - 0.784, - 0.927, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.244, - 0.349, - 0.492, - 0.636, - 0.78, - 0.924, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.243, - 0.327, - 0.471, - 0.615, - 0.759, - 0.903, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.247, - 0.36, - 0.504, - 0.648, - 0.791, - 0.935, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.251, - 0.363, - 0.507, - 0.651, - 0.794, - 0.938, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.249, - 0.358, - 0.502, - 0.646, - 0.79, - 0.933, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.448, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.295, - 0.333, - 0.441, - 0.584, - 0.728, - 0.872, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.448, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.288, - 0.296, - 0.334, - 0.439, - 0.583, - 0.726, - 0.87, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.21, - 0.245, - 0.351, - 0.495, - 0.639, - 0.783, - 0.926, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.244, - 0.323, - 0.41, - 0.553, - 0.697, - 0.841, - 0.961, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.245, - 0.347, - 0.49, - 0.634, - 0.778, - 0.922, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.242, - 0.324, - 0.397, - 0.541, - 0.685, - 0.829, - 0.972, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.245, - 0.347, - 0.491, - 0.635, - 0.778, - 0.922, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.449, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.297, - 0.332, - 0.433, - 0.577, - 0.721, - 0.865, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.229, - 0.287, - 0.332, - 0.386, - 0.53, - 0.674, - 0.818, - 0.961, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.245, - 0.352, - 0.496, - 0.64, - 0.783, - 0.927, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.246, - 0.361, - 0.504, - 0.648, - 0.792, - 0.936, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.245, - 0.361, - 0.505, - 0.649, - 0.793, - 0.936, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.243, - 0.353, - 0.497, - 0.64, - 0.784, - 0.928, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.243, - 0.349, - 0.493, - 0.637, - 0.78, - 0.924, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.449, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.289, - 0.296, - 0.33, - 0.433, - 0.577, - 0.721, - 0.864, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.244, - 0.35, - 0.494, - 0.638, - 0.781, - 0.925, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.244, - 0.352, - 0.496, - 0.64, - 0.784, - 0.927, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.243, - 0.349, - 0.493, - 0.637, - 0.78, - 0.924, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.243, - 0.345, - 0.488, - 0.632, - 0.776, - 0.92, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.241, - 0.344, - 0.488, - 0.632, - 0.776, - 0.919, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.243, - 0.347, - 0.491, - 0.634, - 0.778, - 0.922, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.467, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.315, - 0.349, - 0.453, - 0.597, - 0.74, - 0.884, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.21, - 0.246, - 0.346, - 0.49, - 0.634, - 0.778, - 0.921, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.242, - 0.342, - 0.486, - 0.63, - 0.773, - 0.917, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.241, - 0.342, - 0.486, - 0.63, - 0.774, - 0.918, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.239, - 0.339, - 0.482, - 0.626, - 0.77, - 0.914, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.238, - 0.337, - 0.481, - 0.625, - 0.769, - 0.912, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.239, - 0.326, - 0.469, - 0.613, - 0.756, - 0.9, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.467, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.315, - 0.347, - 0.437, - 0.581, - 0.725, - 0.868, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.238, - 0.332, - 0.476, - 0.62, - 0.764, - 0.907, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.238, - 0.333, - 0.477, - 0.621, - 0.765, - 0.908, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.24, - 0.341, - 0.485, - 0.629, - 0.772, - 0.916, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.241, - 0.345, - 0.489, - 0.633, - 0.776, - 0.92, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.237, - 0.336, - 0.48, - 0.624, - 0.768, - 0.912, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.235, - 0.337, - 0.481, - 0.625, - 0.768, - 0.912, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.466, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.311, - 0.341, - 0.444, - 0.587, - 0.731, - 0.875, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.235, - 0.337, - 0.481, - 0.625, - 0.769, - 0.912, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.234, - 0.333, - 0.477, - 0.621, - 0.764, - 0.908, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.467, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.307, - 0.314, - 0.344, - 0.435, - 0.579, - 0.723, - 0.867, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.243, - 0.333, - 0.477, - 0.621, - 0.764, - 0.908, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.236, - 0.331, - 0.475, - 0.619, - 0.762, - 0.906, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.234, - 0.331, - 0.474, - 0.618, - 0.762, - 0.906, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.466, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.312, - 0.341, - 0.436, - 0.58, - 0.724, - 0.868, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.231, - 0.308, - 0.37, - 0.514, - 0.657, - 0.801, - 0.945, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.239, - 0.336, - 0.48, - 0.623, - 0.767, - 0.911, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.234, - 0.332, - 0.476, - 0.62, - 0.764, - 0.907, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.232, - 0.33, - 0.474, - 0.617, - 0.761, - 0.905, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.223, - 0.299, - 0.416, - 0.56, - 0.662, - 0.796, - 0.93, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.228, - 0.318, - 0.462, - 0.606, - 0.75, - 0.893, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.466, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.311, - 0.338, - 0.43, - 0.574, - 0.718, - 0.861, - 1.0, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.231, - 0.328, - 0.472, - 0.616, - 0.759, - 0.903, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.231, - 0.329, - 0.473, - 0.616, - 0.76, - 0.904, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.231, - 0.327, - 0.471, - 0.615, - 0.758, - 0.902, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.23, - 0.328, - 0.472, - 0.615, - 0.759, - 0.903, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.231, - 0.327, - 0.471, - 0.614, - 0.758, - 0.902, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.231, - 0.323, - 0.466, - 0.61, - 0.754, - 0.898, - 1.0, - 1.0, - 1.0, - 0.992, - 0.832, - 0.672, - 0.599, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.44, - 0.458, - 0.478, - 0.496, - 0.64, - 0.784, - 0.928, - 0.945, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.231, - 0.321, - 0.465, - 0.608, - 0.752, - 0.896, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.229, - 0.322, - 0.466, - 0.61, - 0.754, - 0.898, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.229, - 0.323, - 0.467, - 0.61, - 0.754, - 0.898, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.23, - 0.321, - 0.465, - 0.609, - 0.753, - 0.897, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.23, - 0.323, - 0.467, - 0.611, - 0.755, - 0.898, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.203, - 0.229, - 0.323, - 0.467, - 0.61, - 0.754, - 0.898, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.447, - 0.287, - 0.287, - 0.287, - 0.287, - 0.287, - 0.287, - 0.287, - 0.287, - 0.287, - 0.287, - 0.291, - 0.317, - 0.41, - 0.554, - 0.698, - 0.842, - 0.986, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.203, - 0.23, - 0.322, - 0.466, - 0.609, - 0.753, - 0.897, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.215, - 0.217, - 0.343, - 0.487, - 0.631, - 0.775, - 0.919, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.203, - 0.23, - 0.322, - 0.466, - 0.61, - 0.754, - 0.897, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.203, - 0.229, - 0.324, - 0.467, - 0.611, - 0.755, - 0.899, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.23, - 0.323, - 0.467, - 0.611, - 0.755, - 0.899, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.232, - 0.326, - 0.47, - 0.614, - 0.757, - 0.901, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.43, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.272, - 0.3, - 0.402, - 0.546, - 0.69, - 0.833, - 0.977, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.229, - 0.33, - 0.474, - 0.617, - 0.761, - 0.905, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.229, - 0.331, - 0.475, - 0.619, - 0.762, - 0.906, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.229, - 0.33, - 0.474, - 0.617, - 0.761, - 0.905, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.228, - 0.329, - 0.473, - 0.617, - 0.76, - 0.904, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.229, - 0.329, - 0.473, - 0.617, - 0.76, - 0.904, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.228, - 0.325, - 0.469, - 0.612, - 0.756, - 0.9, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.429, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.271, - 0.297, - 0.393, - 0.537, - 0.681, - 0.824, - 0.968, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.227, - 0.322, - 0.466, - 0.61, - 0.754, - 0.898, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.228, - 0.323, - 0.467, - 0.61, - 0.754, - 0.898, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.228, - 0.323, - 0.466, - 0.61, - 0.754, - 0.898, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.228, - 0.322, - 0.466, - 0.61, - 0.753, - 0.897, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.228, - 0.325, - 0.468, - 0.612, - 0.756, - 0.9, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.227, - 0.328, - 0.472, - 0.616, - 0.759, - 0.903, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.412, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.281, - 0.384, - 0.528, - 0.672, - 0.816, - 0.959, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.228, - 0.33, - 0.473, - 0.617, - 0.761, - 0.905, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.228, - 0.329, - 0.472, - 0.616, - 0.76, - 0.904, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.334, - 0.477, - 0.621, - 0.765, - 0.909, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.331, - 0.475, - 0.619, - 0.763, - 0.906, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.323, - 0.467, - 0.611, - 0.754, - 0.898, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.32, - 0.464, - 0.608, - 0.751, - 0.895, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.394, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.261, - 0.357, - 0.501, - 0.645, - 0.788, - 0.932, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.326, - 0.47, - 0.613, - 0.757, - 0.901, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.325, - 0.469, - 0.613, - 0.757, - 0.9, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.212, - 0.309, - 0.453, - 0.596, - 0.74, - 0.884, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.32, - 0.463, - 0.607, - 0.751, - 0.895, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.333, - 0.477, - 0.62, - 0.764, - 0.908, - 1.0, - 1.0, - 1.0, - 0.843, - 0.683, - 0.523, - 0.363, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.233, - 0.338, - 0.481, - 0.625, - 0.769, - 0.913, - 0.972, - 0.978, - 0.983, - 0.823, - 0.663, - 0.503, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.33, - 0.474, - 0.618, - 0.762, - 0.905, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.377, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.246, - 0.348, - 0.492, - 0.636, - 0.78, - 0.924, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.228, - 0.328, - 0.472, - 0.616, - 0.759, - 0.903, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.228, - 0.328, - 0.472, - 0.616, - 0.76, - 0.903, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.33, - 0.474, - 0.618, - 0.761, - 0.905, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.341, - 0.485, - 0.628, - 0.772, - 0.916, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.232, - 0.343, - 0.487, - 0.631, - 0.775, - 0.918, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.339, - 0.483, - 0.626, - 0.77, - 0.914, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.339, - 0.483, - 0.627, - 0.771, - 0.914, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.23, - 0.336, - 0.479, - 0.623, - 0.767, - 0.911, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.332, - 0.476, - 0.62, - 0.764, - 0.907, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.321, - 0.465, - 0.609, - 0.753, - 0.897, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.232, - 0.347, - 0.491, - 0.635, - 0.779, - 0.922, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.234, - 0.356, - 0.5, - 0.643, - 0.787, - 0.931, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.234, - 0.354, - 0.498, - 0.641, - 0.785, - 0.929, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.349, - 0.493, - 0.637, - 0.78, - 0.924, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.339, - 0.483, - 0.626, - 0.77, - 0.914, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.351, - 0.495, - 0.639, - 0.783, - 0.926, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.346, - 0.49, - 0.634, - 0.777, - 0.921, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.228, - 0.33, - 0.473, - 0.617, - 0.761, - 0.905, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.234, - 0.355, - 0.499, - 0.643, - 0.786, - 0.93, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.234, - 0.353, - 0.497, - 0.641, - 0.785, - 0.928, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.352, - 0.496, - 0.639, - 0.783, - 0.927, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.341, - 0.485, - 0.629, - 0.773, - 0.917, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.35, - 0.494, - 0.637, - 0.781, - 0.925, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.224, - 0.325, - 0.468, - 0.612, - 0.756, - 0.9, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.23, - 0.338, - 0.482, - 0.626, - 0.769, - 0.913, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.23, - 0.34, - 0.484, - 0.627, - 0.771, - 0.915, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.341, - 0.485, - 0.628, - 0.772, - 0.916, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.214, - 0.31, - 0.454, - 0.598, - 0.742, - 0.886, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.23, - 0.341, - 0.484, - 0.628, - 0.772, - 0.916, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.228, - 0.34, - 0.484, - 0.628, - 0.772, - 0.915, - 1.0, - 1.0, - 1.0, - 0.857, - 0.697, - 0.537, - 0.377, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.242, - 0.258, - 0.333, - 0.476, - 0.597, - 0.741, - 0.884, - 0.93, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.357, - 0.501, - 0.644, - 0.788, - 0.932, - 0.963, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.355, - 0.499, - 0.643, - 0.787, - 0.93, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.35, - 0.494, - 0.638, - 0.781, - 0.925, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.351, - 0.494, - 0.638, - 0.782, - 0.926, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.345, - 0.489, - 0.632, - 0.776, - 0.92, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.344, - 0.488, - 0.632, - 0.776, - 0.919, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.23, - 0.348, - 0.491, - 0.635, - 0.779, - 0.923, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.347, - 0.49, - 0.634, - 0.778, - 0.922, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.342, - 0.486, - 0.63, - 0.773, - 0.917, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.225, - 0.324, - 0.468, - 0.611, - 0.755, - 0.899, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.226, - 0.337, - 0.481, - 0.625, - 0.769, - 0.912, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.226, - 0.343, - 0.486, - 0.63, - 0.774, - 0.918, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.345, - 0.488, - 0.632, - 0.776, - 0.92, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.224, - 0.34, - 0.483, - 0.627, - 0.771, - 0.915, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.221, - 0.335, - 0.478, - 0.622, - 0.766, - 0.91, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.219, - 0.332, - 0.475, - 0.619, - 0.763, - 0.907, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.218, - 0.332, - 0.476, - 0.619, - 0.763, - 0.907, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.218, - 0.331, - 0.475, - 0.619, - 0.763, - 0.906, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.213, - 0.315, - 0.459, - 0.603, - 0.746, - 0.89, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.212, - 0.313, - 0.457, - 0.6, - 0.744, - 0.888, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.212, - 0.316, - 0.46, - 0.603, - 0.747, - 0.891, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.214, - 0.334, - 0.478, - 0.622, - 0.765, - 0.909, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.213, - 0.332, - 0.476, - 0.62, - 0.764, - 0.907, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.212, - 0.327, - 0.471, - 0.615, - 0.758, - 0.902, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.211, - 0.325, - 0.469, - 0.613, - 0.756, - 0.9, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.21, - 0.322, - 0.466, - 0.61, - 0.754, - 0.897, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.209, - 0.318, - 0.462, - 0.606, - 0.75, - 0.893, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.31, - 0.454, - 0.598, - 0.741, - 0.885, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.325, - 0.469, - 0.612, - 0.756, - 0.9, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.205, - 0.32, - 0.463, - 0.607, - 0.751, - 0.895, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.312, - 0.455, - 0.599, - 0.743, - 0.887, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.203, - 0.308, - 0.452, - 0.596, - 0.74, - 0.884, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.203, - 0.309, - 0.452, - 0.596, - 0.74, - 0.884, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.305, - 0.448, - 0.592, - 0.736, - 0.88, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.201, - 0.302, - 0.446, - 0.59, - 0.734, - 0.877, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.303, - 0.447, - 0.591, - 0.735, - 0.879, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.281, - 0.425, - 0.568, - 0.712, - 0.856, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.282, - 0.381, - 0.524, - 0.668, - 0.812, - 0.956, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.235, - 0.337, - 0.48, - 0.624, - 0.768, - 0.912, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.207, - 0.351, - 0.488, - 0.631, - 0.775, - 0.919, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.289, - 0.433, - 0.577, - 0.721, - 0.864, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.306, - 0.449, - 0.593, - 0.737, - 0.881, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.299, - 0.443, - 0.587, - 0.731, - 0.875, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.235, - 0.347, - 0.491, - 0.635, - 0.778, - 0.904, - 0.994, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.287, - 0.367, - 0.511, - 0.654, - 0.798, - 0.857, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.291, - 0.435, - 0.579, - 0.722, - 0.866, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.288, - 0.431, - 0.575, - 0.719, - 0.863, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.338, - 0.481, - 0.625, - 0.769, - 0.913, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.29, - 0.433, - 0.577, - 0.721, - 0.865, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.373, - 0.516, - 0.66, - 0.804, - 0.948, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.373, - 0.516, - 0.66, - 0.804, - 0.948, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.232, - 0.376, - 0.519, - 0.663, - 0.807, - 0.951, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.223, - 0.318, - 0.462, - 0.605, - 0.749, - 0.893, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.224, - 0.324, - 0.468, - 0.611, - 0.755, - 0.899, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.272, - 0.416, - 0.56, - 0.704, - 0.847, - 0.991, - 1.0, - 1.0, - 1.0, - 1.0, - 1.0, - 0.957, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.802, - 0.853, - 0.93, - 0.934, - 0.954, - 0.962, - 0.972, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.264, - 0.407, - 0.551, - 0.695, - 0.839, - 0.982, - 1.0, - 1.0, - 0.976, - 0.816, - 0.656, - 0.496, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.349, - 0.378, - 0.404, - 0.445, - 0.588, - 0.725, - 0.868, - 1.0, - 0.946, - 0.786, - 0.626, - 0.466, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.367, - 0.369, - 0.513, - 0.637, - 0.781, - 0.925, - 0.999, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.263, - 0.407, - 0.551, - 0.695, - 0.839, - 0.982, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.263, - 0.407, - 0.551, - 0.695, - 0.838, - 0.982, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.26, - 0.403, - 0.547, - 0.691, - 0.835, - 0.978, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.26, - 0.404, - 0.547, - 0.691, - 0.835, - 0.979, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.258, - 0.402, - 0.546, - 0.689, - 0.833, - 0.977, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.255, - 0.398, - 0.542, - 0.686, - 0.83, - 0.973, - 1.0, - 1.0, - 0.922, - 0.762, - 0.602, - 0.442, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.333, - 0.476, - 0.62, - 0.754, - 0.898, - 0.906, - 0.976, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.253, - 0.397, - 0.541, - 0.685, - 0.828, - 0.972, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.253, - 0.397, - 0.541, - 0.685, - 0.828, - 0.972, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.249, - 0.323, - 0.467, - 0.611, - 0.754, - 0.898, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.243, - 0.325, - 0.468, - 0.612, - 0.756, - 0.9, - 0.923, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.247, - 0.391, - 0.535, - 0.679, - 0.822, - 0.966, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.249, - 0.393, - 0.536, - 0.68, - 0.824, - 0.968, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.234, - 0.257, - 0.401, - 0.544, - 0.688, - 0.832, - 0.976, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.245, - 0.389, - 0.532, - 0.676, - 0.82, - 0.964, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.243, - 0.386, - 0.53, - 0.674, - 0.818, - 0.961, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.214, - 0.284, - 0.393, - 0.537, - 0.681, - 0.825, - 0.968, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.238, - 0.382, - 0.525, - 0.669, - 0.813, - 0.957, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.239, - 0.382, - 0.526, - 0.67, - 0.814, - 0.957, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.237, - 0.381, - 0.525, - 0.669, - 0.812, - 0.956, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.241, - 0.385, - 0.529, - 0.672, - 0.816, - 0.96, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.24, - 0.384, - 0.528, - 0.671, - 0.815, - 0.959, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.237, - 0.38, - 0.524, - 0.668, - 0.812, - 0.955, - 1.0, - 1.0, - 0.924, - 0.764, - 0.604, - 0.444, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.29, - 0.329, - 0.383, - 0.497, - 0.641, - 0.785, - 0.926, - 1.0, - 1.0, - 0.987, - 0.827, - 0.667, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.509, - 0.604, - 0.748, - 0.863, - 0.912, - 0.957, - 0.97, - 1.0, - 1.0, - 1.0, - 1.0, - 0.851, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.696, - 0.698, - 0.752, - 0.776, - 0.814, - 0.828, - 0.861, - 1.0, - 1.0, - 1.0, - 1.0, - 0.863, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.732, - 0.744, - 0.821, - 0.836, - 0.883, - 0.931, - 0.972, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.369, - 0.513, - 0.657, - 0.8, - 0.944, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2 - ], - "storage_to_load_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 29.636, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 15.58, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 23.941, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.126, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 26.115, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 13.14, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.269, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.993, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.803, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 25.119, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 15.04, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 28.45, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.869, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 28.45, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 25.024, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 21.597, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 21.541, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 18.015, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 17.961, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 14.385, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 14.378, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 14.195, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 14.144, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 10.564, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 10.598, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 10.802, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 10.601, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 10.812, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 10.749, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.63, - 31.876, - 31.876, - 14.412, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 14.465, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 17.987, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 18.086, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 21.597, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 25.024, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.203, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 28.45, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 28.45, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 28.476, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.532, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.77, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.661, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 15.585, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 15.081, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.56, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 29.663, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 27.283, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0 - ] - }, - "status": "optimal", - "solver_seconds": 4.146, - "ElectricUtility": { - "lifecycle_emissions_tonnes_CO2_bau": 10653.83, - "annual_emissions_tonnes_CO2_bau": 495.07, - "lifecycle_emissions_tonnes_PM25": 0.54, - "annual_energy_supplied_kwh_bau": 1.0054267e6, - "lifecycle_emissions_tonnes_PM25_bau": 0.6, - "lifecycle_emissions_tonnes_SO2": 0.63, - "annual_emissions_tonnes_SO2_bau": 0.03, - "electric_to_load_series_kw": [ - 31.876, - 31.876, - 31.876, - 32.165, - 32.388, - 32.759, - 32.725, - 12.575, - 73.11, - 63.72, - 111.297, - 90.255, - 113.198, - 116.304, - 122.103, - 98.833, - 115.351, - 101.185, - 65.758, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.869, - 79.217, - 142.417, - 199.573, - 194.506, - 192.324, - 192.813, - 180.031, - 170.021, - 146.76, - 167.355, - 184.831, - 136.613, - 136.616, - 150.852, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.547, - 79.191, - 137.719, - 199.706, - 193.94, - 191.367, - 191.818, - 194.907, - 169.273, - 145.937, - 163.221, - 184.831, - 136.641, - 136.845, - 151.093, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.658, - 81.787, - 142.648, - 199.388, - 194.189, - 192.063, - 192.573, - 173.826, - 169.627, - 178.181, - 195.171, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.407, - 77.017, - 112.15, - 169.597, - 164.427, - 162.144, - 162.643, - 171.571, - 180.023, - 147.39, - 166.027, - 185.484, - 137.388, - 137.517, - 151.75, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 32.132, - 32.88, - 32.841, - 33.064, - 71.197, - 62.768, - 108.679, - 152.989, - 205.92, - 206.866, - 201.716, - 180.428, - 170.533, - 146.785, - 163.131, - 184.831, - 118.899, - 83.472, - 115.368, - 80.213, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 32.031, - 32.061, - 32.114, - 14.615, - 73.449, - 64.789, - 112.81, - 110.403, - 146.014, - 127.473, - 122.371, - 98.772, - 114.821, - 101.185, - 65.758, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.587, - 81.715, - 143.041, - 199.466, - 193.879, - 191.253, - 191.631, - 173.07, - 168.583, - 145.504, - 162.299, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.617, - 78.905, - 137.236, - 200.016, - 194.96, - 192.632, - 193.009, - 195.752, - 169.559, - 145.968, - 162.067, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.299, - 79.241, - 142.978, - 200.593, - 200.37, - 203.665, - 199.795, - 192.035, - 178.183, - 156.707, - 166.795, - 184.881, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.17, - 78.132, - 131.441, - 201.548, - 197.855, - 194.809, - 202.002, - 204.154, - 202.425, - 148.339, - 162.106, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.145, - 80.844, - 143.659, - 201.041, - 195.666, - 193.139, - 193.428, - 175.484, - 169.984, - 146.183, - 161.623, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 69.872, - 63.241, - 108.101, - 153.007, - 196.36, - 194.744, - 197.657, - 182.89, - 179.961, - 152.374, - 161.746, - 186.084, - 118.899, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.849, - 71.84, - 63.377, - 111.493, - 118.587, - 159.772, - 140.014, - 129.983, - 105.75, - 111.359, - 101.185, - 65.758, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 12.811, - 74.153, - 65.414, - 121.732, - 117.58, - 159.149, - 136.545, - 137.751, - 114.836, - 115.228, - 101.185, - 65.78, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 72.055, - 81.543, - 144.186, - 201.719, - 196.16, - 193.388, - 193.44, - 175.715, - 169.551, - 145.97, - 157.662, - 184.831, - 136.613, - 136.613, - 150.785, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 72.113, - 82.001, - 145.256, - 203.221, - 198.08, - 194.936, - 202.225, - 176.299, - 170.686, - 146.793, - 158.234, - 185.772, - 137.705, - 137.733, - 151.814, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.148, - 33.158, - 33.216, - 72.404, - 81.07, - 140.715, - 207.003, - 203.144, - 200.842, - 201.761, - 205.999, - 180.379, - 173.387, - 163.409, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.35, - 80.521, - 131.453, - 201.99, - 206.137, - 205.01, - 194.142, - 196.574, - 207.31, - 160.034, - 163.418, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.942, - 32.204, - 32.265, - 32.304, - 70.631, - 63.94, - 109.033, - 152.814, - 195.753, - 192.941, - 205.652, - 197.767, - 198.544, - 163.914, - 163.745, - 184.831, - 118.899, - 83.472, - 115.348, - 79.969, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 32.186, - 32.412, - 32.572, - 32.831, - 13.001, - 65.917, - 71.332, - 118.973, - 117.874, - 152.522, - 159.243, - 134.393, - 100.995, - 108.417, - 101.185, - 65.758, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.244, - 33.107, - 71.731, - 82.197, - 143.499, - 201.284, - 196.18, - 193.306, - 193.219, - 173.104, - 169.212, - 145.126, - 156.622, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.252, - 33.274, - 71.623, - 81.829, - 144.287, - 201.757, - 206.599, - 201.207, - 204.881, - 184.362, - 176.465, - 183.93, - 188.069, - 184.845, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.536, - 78.214, - 135.358, - 201.612, - 206.589, - 209.321, - 209.491, - 217.231, - 219.764, - 212.548, - 204.153, - 190.298, - 138.73, - 138.619, - 152.783, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.007, - 77.277, - 131.757, - 200.925, - 200.959, - 217.074, - 224.38, - 229.497, - 239.5, - 203.918, - 189.423, - 203.469, - 148.371, - 139.821, - 152.829, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.525, - 80.529, - 138.115, - 208.109, - 204.64, - 225.008, - 238.408, - 252.749, - 240.697, - 177.861, - 174.342, - 192.748, - 148.007, - 141.976, - 153.127, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 65.393, - 63.785, - 106.741, - 150.148, - 192.182, - 200.395, - 218.99, - 198.779, - 190.828, - 159.146, - 160.663, - 183.492, - 119.125, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 16.512, - 70.807, - 61.807, - 109.45, - 109.62, - 146.079, - 123.02, - 122.197, - 97.656, - 107.988, - 97.759, - 65.758, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.545, - 82.9, - 141.933, - 199.542, - 194.564, - 192.323, - 192.612, - 177.323, - 172.438, - 152.694, - 161.135, - 181.404, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 68.015, - 79.559, - 143.537, - 200.486, - 201.175, - 199.115, - 199.639, - 185.384, - 174.898, - 149.449, - 159.727, - 181.404, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 68.134, - 78.18, - 131.509, - 204.58, - 208.545, - 190.75, - 190.734, - 193.23, - 194.613, - 143.179, - 156.392, - 181.404, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.59, - 81.668, - 143.785, - 201.939, - 196.594, - 193.935, - 193.466, - 174.679, - 168.321, - 144.214, - 155.73, - 181.404, - 136.613, - 136.613, - 150.829, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.73, - 83.473, - 142.281, - 199.182, - 199.39, - 198.037, - 199.967, - 167.803, - 167.479, - 143.258, - 154.173, - 181.404, - 136.728, - 136.928, - 151.24, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 32.006, - 67.647, - 66.854, - 106.542, - 150.935, - 194.003, - 191.456, - 191.639, - 166.93, - 167.523, - 143.269, - 154.053, - 177.978, - 118.899, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.949, - 28.668, - 17.268, - 72.36, - 63.234, - 110.933, - 108.373, - 143.88, - 119.843, - 119.794, - 95.485, - 106.159, - 94.333, - 65.758, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 68.128, - 79.148, - 137.677, - 208.065, - 202.15, - 199.941, - 202.38, - 206.663, - 177.19, - 152.004, - 160.427, - 177.978, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.707, - 83.867, - 143.486, - 201.235, - 195.809, - 192.9, - 192.57, - 173.117, - 173.253, - 147.552, - 157.748, - 177.978, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.924, - 81.022, - 140.83, - 207.953, - 203.635, - 198.278, - 204.604, - 193.065, - 179.162, - 149.024, - 158.463, - 177.978, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.02, - 80.433, - 136.75, - 208.248, - 208.07, - 205.533, - 204.4, - 202.938, - 194.541, - 165.313, - 160.607, - 177.978, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.812, - 83.695, - 140.261, - 208.363, - 207.295, - 201.679, - 200.738, - 202.193, - 202.698, - 178.008, - 167.91, - 179.554, - 136.756, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 62.819, - 60.345, - 100.517, - 150.398, - 210.112, - 223.964, - 225.248, - 222.774, - 226.555, - 166.706, - 178.196, - 186.818, - 121.135, - 84.248, - 115.542, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.318, - 72.191, - 63.394, - 111.251, - 109.054, - 145.63, - 136.431, - 125.924, - 103.285, - 112.355, - 96.512, - 65.808, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.44, - 82.589, - 143.568, - 215.129, - 216.302, - 224.958, - 235.161, - 220.822, - 212.766, - 182.892, - 193.23, - 193.031, - 140.132, - 138.965, - 152.421, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.389, - 83.404, - 142.226, - 200.13, - 219.369, - 222.596, - 219.988, - 198.007, - 191.31, - 171.36, - 174.016, - 183.779, - 139.715, - 138.601, - 151.9, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.537, - 84.014, - 141.445, - 198.788, - 192.986, - 190.433, - 190.947, - 164.59, - 167.217, - 143.149, - 154.033, - 175.238, - 136.758, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.558, - 79.576, - 141.312, - 199.15, - 194.112, - 191.488, - 191.517, - 175.347, - 167.439, - 143.144, - 153.467, - 174.552, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.161, - 84.814, - 142.401, - 199.797, - 194.44, - 191.764, - 191.724, - 164.511, - 167.344, - 143.128, - 153.965, - 174.942, - 137.07, - 137.197, - 151.421, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 64.059, - 67.638, - 107.353, - 151.345, - 194.134, - 191.471, - 191.577, - 164.847, - 167.509, - 146.966, - 162.039, - 174.552, - 118.899, - 83.472, - 115.357, - 80.121, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 13.017, - 69.009, - 70.418, - 123.792, - 124.469, - 154.56, - 158.648, - 142.833, - 132.155, - 138.999, - 90.906, - 65.758, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 11.318, - 61.442, - 60.707, - 113.702, - 115.913, - 153.428, - 157.776, - 150.857, - 94.622, - 105.175, - 90.675, - 66.024, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.194, - 33.723, - 33.906, - 62.098, - 85.642, - 142.245, - 199.723, - 194.618, - 191.826, - 191.625, - 163.899, - 166.68, - 142.561, - 152.924, - 174.156, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.407, - 33.466, - 61.664, - 84.726, - 142.532, - 200.81, - 195.826, - 192.635, - 192.036, - 164.748, - 166.765, - 149.093, - 152.776, - 174.065, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 61.069, - 84.497, - 134.684, - 200.033, - 198.779, - 205.54, - 200.684, - 203.101, - 208.902, - 149.586, - 157.399, - 174.466, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 61.098, - 85.701, - 139.652, - 196.666, - 190.965, - 189.978, - 189.667, - 158.558, - 163.57, - 139.951, - 151.427, - 174.203, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 59.852, - 68.005, - 104.478, - 149.53, - 192.6, - 190.655, - 190.897, - 162.373, - 166.882, - 141.827, - 152.07, - 170.76, - 118.899, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 18.821, - 70.342, - 61.666, - 109.077, - 106.606, - 142.051, - 121.645, - 143.016, - 114.54, - 113.557, - 86.847, - 65.758, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 61.03, - 85.129, - 141.079, - 199.015, - 193.495, - 190.546, - 190.36, - 161.792, - 165.842, - 141.57, - 152.328, - 170.254, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.179, - 33.342, - 58.029, - 78.084, - 139.91, - 197.066, - 199.042, - 198.36, - 189.984, - 176.456, - 164.161, - 162.307, - 161.897, - 171.023, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.252, - 58.042, - 86.492, - 139.375, - 196.53, - 190.99, - 189.93, - 188.555, - 158.531, - 163.797, - 156.84, - 163.963, - 170.484, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 58.026, - 78.828, - 139.598, - 203.315, - 206.246, - 205.712, - 198.234, - 206.408, - 205.234, - 160.443, - 158.744, - 171.125, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.95, - 79.644, - 139.084, - 207.026, - 208.018, - 202.205, - 206.403, - 204.876, - 182.155, - 154.911, - 160.267, - 171.125, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 56.059, - 63.113, - 103.629, - 159.725, - 199.442, - 199.248, - 203.684, - 202.304, - 194.976, - 166.296, - 169.581, - 173.922, - 119.409, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 18.315, - 18.957, - 70.104, - 71.097, - 118.13, - 124.879, - 171.335, - 146.489, - 148.945, - 114.798, - 116.278, - 86.899, - 65.758, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.699, - 85.318, - 141.092, - 199.933, - 194.938, - 204.539, - 190.965, - 162.386, - 172.464, - 142.756, - 158.563, - 170.137, - 136.903, - 137.073, - 151.312, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 57.85, - 81.882, - 139.641, - 207.389, - 194.632, - 192.19, - 199.486, - 186.849, - 167.059, - 142.827, - 152.838, - 169.952, - 136.613, - 136.637, - 150.902, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 54.407, - 85.989, - 140.099, - 197.735, - 199.192, - 197.623, - 198.415, - 169.386, - 170.831, - 146.615, - 152.019, - 170.781, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 54.393, - 86.265, - 138.709, - 196.626, - 191.562, - 190.025, - 185.472, - 160.591, - 165.665, - 141.403, - 154.486, - 166.664, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.559, - 83.687, - 139.841, - 198.135, - 193.276, - 191.406, - 192.443, - 165.939, - 167.925, - 147.64, - 155.089, - 166.32, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 53.211, - 68.304, - 106.872, - 150.064, - 193.189, - 190.775, - 190.411, - 161.543, - 166.711, - 142.293, - 152.462, - 166.162, - 118.899, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 15.483, - 65.045, - 70.101, - 113.317, - 115.009, - 151.327, - 148.621, - 132.389, - 125.401, - 101.669, - 71.86, - 47.494, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.58, - 81.952, - 139.147, - 204.994, - 197.179, - 191.951, - 190.001, - 185.178, - 160.882, - 166.113, - 141.824, - 152.202, - 117.772, - 136.613, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.114, - 82.359, - 139.256, - 205.441, - 197.67, - 192.625, - 190.141, - 185.279, - 160.858, - 166.086, - 141.7, - 152.005, - 117.662, - 136.613, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.056, - 82.479, - 139.428, - 205.145, - 198.016, - 193.609, - 191.415, - 185.527, - 161.904, - 166.616, - 142.033, - 152.139, - 117.651, - 136.613, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.766, - 79.685, - 139.83, - 204.831, - 197.222, - 192.036, - 189.993, - 184.006, - 160.963, - 166.366, - 142.055, - 152.2, - 117.663, - 136.613, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.75, - 79.565, - 139.187, - 206.014, - 199.425, - 194.827, - 193.099, - 187.485, - 162.463, - 166.954, - 142.084, - 151.992, - 117.568, - 136.613, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 69.962, - 61.823, - 104.466, - 155.962, - 196.592, - 191.402, - 189.826, - 182.111, - 159.927, - 165.075, - 143.475, - 155.216, - 100.228, - 83.472, - 83.472, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 12.806, - 69.486, - 66.959, - 112.26, - 107.316, - 141.585, - 133.251, - 112.36, - 117.406, - 93.09, - 67.842, - 46.538, - -0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.432, - 79.719, - 140.167, - 203.672, - 196.209, - 191.29, - 189.849, - 181.298, - 161.131, - 166.474, - 141.92, - 151.81, - 117.42, - 136.613, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.716, - 79.048, - 136.039, - 205.675, - 200.138, - 197.071, - 198.588, - 198.891, - 181.127, - 175.798, - 142.414, - 152.211, - 114.054, - 136.613, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.388, - 79.734, - 139.762, - 205.814, - 198.774, - 194.368, - 192.018, - 184.62, - 161.901, - 166.916, - 142.946, - 153.159, - 114.658, - 137.367, - 119.8, - 60.908, - 33.107, - 33.107, - 33.107, - 33.232, - 33.608, - 33.8, - 34.179, - 34.375, - 69.002, - 80.844, - 139.985, - 206.509, - 199.301, - 195.593, - 193.626, - 186.612, - 162.646, - 167.041, - 142.459, - 152.406, - 114.065, - 136.613, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 68.216, - 80.007, - 139.618, - 207.755, - 206.098, - 195.779, - 197.955, - 194.798, - 169.912, - 171.861, - 143.287, - 155.927, - 114.534, - 136.613, - 118.932, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 66.844, - 62.159, - 103.927, - 159.127, - 202.639, - 193.872, - 191.939, - 190.269, - 163.411, - 176.159, - 145.834, - 155.519, - 96.415, - 83.472, - 83.472, - 79.955, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 12.926, - 68.974, - 69.424, - 115.453, - 109.9, - 142.789, - 135.859, - 118.088, - 119.174, - 94.58, - 68.963, - 43.193, - -0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.626, - 79.675, - 139.645, - 204.195, - 196.921, - 195.81, - 196.863, - 209.073, - 192.447, - 182.425, - 158.123, - 162.537, - 115.232, - 136.756, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.543, - 79.673, - 139.869, - 204.323, - 197.082, - 192.73, - 190.737, - 181.019, - 161.229, - 166.283, - 142.087, - 159.084, - 113.905, - 136.613, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.544, - 79.724, - 139.3, - 205.505, - 198.871, - 196.76, - 211.124, - 205.408, - 184.418, - 185.902, - 152.136, - 156.196, - 115.107, - 136.708, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.492, - 79.629, - 135.293, - 206.876, - 199.229, - 200.576, - 207.46, - 218.155, - 191.679, - 185.608, - 161.532, - 169.55, - 118.686, - 138.139, - 119.739, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.478, - 79.52, - 140.276, - 202.702, - 195.911, - 202.661, - 217.39, - 212.731, - 194.066, - 192.507, - 161.755, - 166.798, - 118.606, - 137.719, - 119.263, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 62.392, - 61.747, - 104.162, - 155.978, - 208.606, - 219.644, - 223.298, - 211.503, - 195.125, - 204.356, - 177.091, - 189.149, - 104.369, - 84.168, - 83.472, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 13.558, - 70.094, - 65.624, - 111.259, - 106.26, - 141.16, - 127.962, - 110.967, - 116.606, - 92.595, - 67.853, - 42.857, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.441, - 80.345, - 140.716, - 203.316, - 196.175, - 191.763, - 189.995, - 178.025, - 167.727, - 166.623, - 142.099, - 152.022, - 113.762, - 133.186, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.438, - 80.256, - 139.934, - 209.017, - 204.546, - 195.833, - 193.401, - 181.929, - 163.038, - 167.486, - 142.85, - 152.471, - 113.776, - 133.186, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.356, - 80.258, - 139.978, - 206.585, - 202.657, - 193.167, - 190.678, - 184.933, - 161.262, - 166.329, - 141.85, - 152.037, - 113.661, - 133.186, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.303, - 80.336, - 140.588, - 202.871, - 195.358, - 190.866, - 189.516, - 176.306, - 159.697, - 165.198, - 150.543, - 151.969, - 113.565, - 133.186, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.61, - 80.287, - 140.487, - 202.712, - 195.357, - 190.344, - 189.486, - 175.721, - 160.265, - 165.654, - 141.601, - 151.961, - 113.545, - 133.186, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 59.181, - 62.485, - 104.999, - 154.831, - 196.096, - 191.975, - 190.388, - 177.087, - 162.149, - 167.106, - 142.476, - 152.382, - 96.11, - 80.117, - 83.472, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 13.217, - 68.973, - 67.732, - 116.473, - 124.241, - 165.654, - 153.403, - 134.964, - 140.619, - 114.904, - 77.741, - 44.233, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.012, - 79.864, - 139.787, - 204.38, - 198.507, - 198.206, - 195.778, - 178.931, - 166.388, - 171.458, - 147.171, - 157.988, - 115.63, - 133.857, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.309, - 80.082, - 140.272, - 203.418, - 196.676, - 193.278, - 195.433, - 178.982, - 164.244, - 169.612, - 145.102, - 154.991, - 115.66, - 134.064, - 119.02, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.172, - 77.482, - 140.107, - 205.355, - 196.139, - 200.18, - 208.838, - 191.823, - 204.388, - 200.752, - 197.424, - 219.175, - 163.69, - 166.142, - 140.056, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.633, - 79.753, - 140.054, - 208.541, - 215.06, - 221.229, - 226.44, - 232.559, - 200.963, - 216.499, - 223.518, - 218.556, - 147.958, - 142.989, - 120.344, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.969, - 77.289, - 139.792, - 203.736, - 214.852, - 225.934, - 239.273, - 239.346, - 236.38, - 230.577, - 180.844, - 182.034, - 128.56, - 135.401, - 119.698, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 55.532, - 61.778, - 105.315, - 153.734, - 194.858, - 190.85, - 190.158, - 176.168, - 161.325, - 166.795, - 142.39, - 152.613, - 96.536, - 80.097, - 83.472, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 18.204, - 13.986, - 69.53, - 66.996, - 114.048, - 110.735, - 144.937, - 130.134, - 115.057, - 119.599, - 94.643, - 68.887, - 42.764, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.799, - 79.986, - 139.892, - 204.188, - 197.991, - 195.996, - 201.213, - 186.256, - 175.075, - 180.997, - 156.131, - 165.604, - 122.376, - 131.255, - 119.688, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.784, - 79.932, - 139.861, - 204.656, - 198.929, - 195.528, - 193.815, - 179.468, - 163.449, - 168.072, - 143.163, - 152.621, - 113.79, - 129.76, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.989, - 79.821, - 139.879, - 204.414, - 203.34, - 199.863, - 192.528, - 180.108, - 163.538, - 168.319, - 143.39, - 155.092, - 113.776, - 129.762, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.986, - 80.059, - 139.926, - 204.126, - 198.214, - 194.917, - 195.262, - 183.791, - 169.386, - 173.753, - 148.071, - 156.798, - 115.132, - 130.484, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.729, - 80.014, - 139.364, - 205.198, - 198.93, - 194.396, - 193.134, - 181.558, - 165.703, - 170.643, - 144.684, - 153.273, - 113.875, - 129.76, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 55.868, - 62.458, - 104.586, - 156.658, - 199.1, - 195.644, - 194.418, - 180.768, - 165.302, - 169.587, - 144.186, - 153.082, - 96.093, - 76.619, - 83.516, - 80.169, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.864, - 13.859, - 69.907, - 69.172, - 115.883, - 111.785, - 145.086, - 131.479, - 115.787, - 120.366, - 95.581, - 69.238, - 42.852, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 55.009, - 81.346, - 140.882, - 204.904, - 198.72, - 194.547, - 192.536, - 169.499, - 162.597, - 167.603, - 142.802, - 152.329, - 113.689, - 130.117, - 119.363, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 55.09, - 80.493, - 140.613, - 205.498, - 197.947, - 199.157, - 207.233, - 199.895, - 174.976, - 188.762, - 157.538, - 160.023, - 114.947, - 129.76, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.96, - 80.094, - 137.518, - 205.462, - 207.34, - 201.252, - 206.758, - 200.522, - 197.1, - 182.263, - 148.898, - 155.618, - 113.709, - 129.76, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.751, - 80.278, - 140.245, - 203.854, - 197.272, - 193.023, - 191.031, - 175.898, - 179.69, - 175.215, - 155.702, - 159.389, - 115.22, - 129.76, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.856, - 80.401, - 140.434, - 203.31, - 197.08, - 193.015, - 191.472, - 175.594, - 163.53, - 168.609, - 143.525, - 152.933, - 113.506, - 129.76, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 52.452, - 62.688, - 104.693, - 155.684, - 197.485, - 193.234, - 192.093, - 177.32, - 164.786, - 169.784, - 144.316, - 153.072, - 96.185, - 77.034, - 83.895, - 80.478, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 15.041, - 14.191, - 70.113, - 68.069, - 114.798, - 111.058, - 145.598, - 130.718, - 117.375, - 121.774, - 96.259, - 69.73, - 42.615, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.933, - 80.691, - 140.184, - 205.773, - 199.664, - 195.519, - 193.462, - 166.849, - 164.057, - 169.003, - 144.166, - 152.727, - 113.63, - 126.46, - 119.102, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.859, - 80.545, - 140.288, - 203.92, - 197.945, - 194.248, - 193.274, - 181.18, - 171.766, - 180.581, - 156.831, - 165.455, - 119.338, - 126.725, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.43, - 80.222, - 139.762, - 204.587, - 198.94, - 195.408, - 194.428, - 179.977, - 167.493, - 174.309, - 148.681, - 157.496, - 114.095, - 126.368, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.231, - 80.052, - 139.465, - 205.044, - 199.395, - 195.718, - 194.623, - 180.7, - 166.45, - 170.625, - 145.093, - 153.687, - 113.542, - 126.334, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.174, - 80.108, - 139.266, - 206.27, - 200.883, - 196.724, - 194.822, - 180.611, - 165.404, - 169.818, - 144.582, - 153.432, - 113.482, - 126.32, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 49.059, - 62.533, - 104.304, - 157.421, - 202.397, - 197.736, - 197.776, - 176.869, - 163.726, - 173.818, - 145.996, - 154.176, - 95.679, - 73.152, - 83.472, - 79.942, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.828, - 14.432, - 67.981, - 69.91, - 114.714, - 110.897, - 144.231, - 154.085, - 133.074, - 119.562, - 94.744, - 71.788, - 42.051, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 51.024, - 81.064, - 140.325, - 203.79, - 197.144, - 192.963, - 191.018, - 178.034, - 180.536, - 192.787, - 146.333, - 155.371, - 113.393, - 126.238, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.653, - 80.373, - 140.222, - 203.316, - 206.391, - 193.374, - 192.01, - 174.578, - 173.513, - 173.962, - 144.157, - 153.194, - 113.279, - 126.239, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.589, - 80.39, - 139.372, - 205.469, - 199.612, - 195.636, - 193.633, - 178.05, - 165.207, - 172.27, - 147.133, - 155.93, - 115.413, - 126.262, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.711, - 80.698, - 139.524, - 204.935, - 198.715, - 194.414, - 196.486, - 185.659, - 175.217, - 180.338, - 155.65, - 164.414, - 119.425, - 127.055, - 118.915, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.437, - 80.36, - 139.594, - 204.685, - 198.543, - 196.158, - 204.598, - 192.402, - 180.647, - 187.154, - 161.916, - 170.396, - 127.431, - 129.288, - 119.511, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 48.923, - 62.504, - 104.339, - 155.859, - 198.094, - 193.588, - 191.79, - 186.656, - 184.889, - 191.661, - 166.652, - 175.513, - 110.137, - 71.839, - 83.708, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.767, - 14.209, - 69.855, - 65.449, - 112.585, - 108.993, - 142.903, - 123.61, - 114.935, - 119.915, - 94.958, - 68.985, - 42.361, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.363, - 80.365, - 140.115, - 203.419, - 197.461, - 193.55, - 189.293, - 161.978, - 168.745, - 174.046, - 149.402, - 158.95, - 120.057, - 123.476, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.415, - 80.493, - 139.922, - 203.55, - 197.2, - 193.088, - 191.325, - 177.243, - 191.582, - 178.715, - 146.668, - 154.476, - 113.362, - 122.704, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.255, - 80.174, - 139.64, - 204.264, - 198.193, - 194.337, - 192.481, - 175.117, - 165.466, - 171.207, - 150.016, - 155.639, - 113.328, - 122.632, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.288, - 80.24, - 139.59, - 203.94, - 197.518, - 193.221, - 191.306, - 174.003, - 162.74, - 169.166, - 144.91, - 154.377, - 113.19, - 122.715, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.278, - 80.092, - 139.822, - 203.982, - 198.446, - 195.334, - 194.16, - 177.274, - 165.146, - 169.611, - 144.131, - 152.958, - 113.41, - 122.72, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 49.348, - 62.56, - 104.639, - 155.742, - 198.35, - 194.739, - 193.488, - 176.864, - 165.442, - 170.314, - 144.548, - 153.005, - 95.642, - 69.573, - 83.479, - 80.138, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.78, - 13.901, - 69.383, - 68.267, - 115.448, - 112.199, - 146.669, - 131.37, - 118.916, - 122.583, - 96.372, - 69.57, - 42.443, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.912, - 80.26, - 139.341, - 205.82, - 200.009, - 196.032, - 194.143, - 163.531, - 164.884, - 169.478, - 144.168, - 153.049, - 113.391, - 122.713, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.653, - 80.068, - 139.414, - 205.466, - 200.176, - 196.866, - 198.413, - 188.595, - 177.99, - 182.531, - 156.618, - 164.853, - 123.951, - 124.891, - 118.935, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.211, - 79.788, - 138.94, - 205.928, - 200.365, - 197.843, - 204.251, - 193.547, - 179.114, - 183.696, - 158.127, - 166.622, - 124.968, - 124.367, - 119.055, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.118, - 79.768, - 137.309, - 204.707, - 198.656, - 201.737, - 192.986, - 183.312, - 164.261, - 171.751, - 149.601, - 158.47, - 116.349, - 122.789, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.322, - 79.961, - 139.58, - 203.993, - 197.938, - 193.933, - 192.182, - 175.151, - 163.282, - 168.097, - 143.083, - 152.378, - 113.203, - 122.612, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 49.532, - 62.704, - 104.339, - 155.889, - 197.918, - 193.765, - 192.137, - 174.432, - 163.461, - 168.307, - 143.223, - 152.483, - 95.258, - 65.974, - 83.472, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.995, - 14.112, - 68.847, - 68.453, - 116.015, - 112.147, - 146.603, - 147.391, - 132.791, - 129.13, - 103.384, - 70.46, - 42.362, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.865, - 13.863, - 68.25, - 68.763, - 134.079, - 133.501, - 160.11, - 133.953, - 138.376, - 142.885, - 116.793, - 86.615, - 52.031, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.943, - 79.691, - 138.902, - 206.594, - 214.011, - 233.279, - 246.221, - 226.312, - 235.82, - 226.946, - 193.864, - 197.596, - 148.207, - 146.5, - 136.855, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.048, - 79.852, - 139.527, - 234.721, - 237.914, - 240.165, - 241.173, - 227.811, - 214.496, - 217.816, - 190.416, - 194.412, - 146.86, - 144.548, - 134.945, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.046, - 79.863, - 136.882, - 203.603, - 206.73, - 212.75, - 224.566, - 233.302, - 227.478, - 206.097, - 183.587, - 178.765, - 133.027, - 128.376, - 119.986, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.192, - 79.65, - 138.618, - 205.663, - 200.386, - 196.942, - 194.783, - 183.33, - 174.075, - 173.593, - 146.161, - 154.859, - 112.804, - 118.936, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 49.488, - 62.36, - 101.727, - 154.316, - 206.431, - 202.711, - 199.214, - 199.858, - 176.131, - 183.241, - 153.109, - 156.773, - 95.586, - 65.807, - 83.472, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.949, - 13.886, - 67.999, - 69.541, - 117.017, - 113.687, - 148.377, - 135.011, - 120.187, - 123.828, - 97.472, - 70.082, - 42.147, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.288, - 79.675, - 138.624, - 206.4, - 200.878, - 197.075, - 193.372, - 163.489, - 165.705, - 170.067, - 144.507, - 152.896, - 112.948, - 118.945, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.326, - 79.136, - 135.258, - 199.982, - 200.874, - 201.996, - 205.638, - 194.871, - 196.853, - 183.494, - 143.922, - 152.611, - 112.392, - 118.855, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.634, - 79.885, - 139.063, - 204.904, - 198.845, - 194.818, - 192.912, - 177.532, - 164.058, - 169.458, - 144.25, - 153.208, - 112.872, - 118.84, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.251, - 79.706, - 139.585, - 203.484, - 197.023, - 192.886, - 191.915, - 178.754, - 170.435, - 176.786, - 151.724, - 160.665, - 121.077, - 119.959, - 118.941, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.263, - 79.744, - 139.843, - 203.027, - 196.722, - 192.766, - 191.543, - 176.08, - 163.075, - 167.903, - 142.786, - 151.939, - 112.805, - 118.935, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 48.938, - 61.846, - 103.725, - 156.296, - 198.997, - 195.634, - 194.307, - 179.215, - 167.602, - 173.296, - 147.296, - 155.258, - 95.196, - 65.711, - 83.472, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.84, - 13.514, - 68.295, - 68.553, - 116.098, - 112.799, - 147.064, - 132.69, - 118.038, - 121.966, - 96.054, - 68.895, - 41.945, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.14, - 79.415, - 138.626, - 205.851, - 199.966, - 195.927, - 192.188, - 162.304, - 165.978, - 171.837, - 146.334, - 154.909, - 113.041, - 118.88, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.066, - 79.486, - 138.864, - 204.55, - 199.475, - 195.56, - 192.621, - 177.707, - 165.177, - 172.983, - 148.435, - 157.135, - 114.948, - 118.863, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.121, - 79.417, - 139.0, - 204.803, - 198.856, - 194.877, - 193.185, - 180.782, - 168.704, - 175.519, - 152.34, - 160.62, - 117.979, - 116.038, - 118.976, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.115, - 79.397, - 138.851, - 205.376, - 200.148, - 197.152, - 196.421, - 181.966, - 166.703, - 170.253, - 144.291, - 152.511, - 112.63, - 115.335, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.138, - 79.313, - 138.557, - 206.355, - 200.658, - 196.772, - 195.62, - 185.143, - 172.289, - 179.143, - 154.111, - 162.104, - 121.636, - 120.778, - 119.158, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 48.675, - 61.431, - 103.177, - 157.3, - 199.623, - 201.626, - 208.486, - 202.6, - 188.742, - 193.049, - 167.485, - 175.005, - 109.974, - 65.336, - 83.755, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.934, - 13.506, - 67.814, - 68.848, - 116.419, - 113.103, - 149.164, - 138.678, - 126.752, - 133.81, - 107.635, - 70.633, - 41.791, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.112, - 79.278, - 138.646, - 205.672, - 200.313, - 197.315, - 191.871, - 168.656, - 170.531, - 174.259, - 148.16, - 156.117, - 113.089, - 115.69, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.386, - 79.562, - 138.445, - 206.404, - 201.684, - 201.722, - 200.956, - 194.154, - 182.333, - 186.89, - 160.471, - 167.993, - 126.801, - 120.846, - 119.487, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.153, - 79.352, - 138.357, - 206.325, - 200.95, - 197.94, - 202.669, - 194.543, - 179.788, - 183.754, - 157.383, - 165.047, - 124.48, - 119.141, - 119.204, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.143, - 79.202, - 138.469, - 206.001, - 200.325, - 199.888, - 206.917, - 194.415, - 181.245, - 187.299, - 161.115, - 168.47, - 125.509, - 117.997, - 119.307, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.79, - 78.979, - 138.342, - 206.337, - 200.822, - 200.832, - 208.263, - 203.546, - 190.745, - 196.86, - 169.897, - 177.08, - 132.845, - 125.779, - 120.09, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 48.535, - 61.245, - 102.846, - 158.326, - 202.02, - 222.053, - 227.753, - 212.96, - 196.895, - 202.875, - 178.905, - 185.48, - 113.568, - 65.796, - 83.894, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.899, - 13.41, - 66.526, - 71.734, - 117.545, - 113.863, - 147.88, - 138.815, - 125.138, - 130.0, - 104.74, - 74.441, - 41.973, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.986, - 79.375, - 137.627, - 208.125, - 202.502, - 196.972, - 200.621, - 179.464, - 186.72, - 193.564, - 167.247, - 174.02, - 126.717, - 118.37, - 119.452, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.988, - 78.995, - 137.908, - 207.799, - 202.402, - 199.069, - 207.592, - 202.963, - 184.596, - 197.244, - 171.517, - 169.23, - 124.58, - 116.507, - 119.131, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.984, - 79.067, - 137.926, - 207.092, - 201.634, - 199.077, - 203.058, - 198.322, - 183.562, - 187.65, - 161.311, - 168.314, - 123.854, - 117.164, - 119.38, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.15, - 79.123, - 138.431, - 216.937, - 226.794, - 232.102, - 236.797, - 230.45, - 215.991, - 218.52, - 189.259, - 193.56, - 146.037, - 141.028, - 136.733, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.887, - 79.066, - 138.69, - 217.113, - 221.114, - 224.24, - 228.198, - 220.012, - 211.172, - 219.199, - 191.405, - 194.121, - 147.283, - 138.804, - 133.793, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 48.612, - 61.136, - 102.877, - 169.286, - 227.972, - 236.201, - 240.38, - 232.646, - 216.566, - 221.963, - 195.607, - 198.442, - 126.06, - 79.979, - 88.43, - 80.07, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.683, - 12.913, - 67.616, - 68.742, - 116.355, - 113.141, - 146.796, - 134.481, - 117.079, - 121.073, - 95.231, - 68.11, - 41.617, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.832, - 78.732, - 138.504, - 205.287, - 199.502, - 195.804, - 189.79, - 163.996, - 168.674, - 178.006, - 154.706, - 162.865, - 123.314, - 125.728, - 122.487, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.752, - 78.756, - 138.469, - 205.712, - 207.167, - 216.706, - 218.989, - 211.258, - 197.428, - 204.897, - 178.451, - 184.712, - 139.507, - 133.332, - 128.314, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.671, - 12.984, - 67.339, - 70.059, - 118.625, - 115.121, - 154.416, - 137.132, - 119.674, - 123.436, - 97.24, - 68.961, - 41.447, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.817, - 79.025, - 137.66, - 207.859, - 202.497, - 198.86, - 197.232, - 173.69, - 181.94, - 185.128, - 158.933, - 166.309, - 125.181, - 123.893, - 119.984, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.006, - 79.571, - 137.568, - 208.049, - 202.597, - 198.839, - 196.864, - 190.435, - 175.618, - 178.584, - 152.956, - 160.535, - 119.723, - 122.319, - 120.326, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 48.565, - 61.239, - 102.485, - 158.598, - 201.013, - 196.99, - 202.154, - 209.438, - 202.7, - 208.681, - 181.841, - 188.323, - 117.59, - 72.324, - 84.516, - 79.977, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.724, - 12.95, - 67.232, - 69.388, - 116.553, - 112.557, - 149.102, - 142.402, - 133.945, - 148.62, - 124.41, - 94.956, - 57.105, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.762, - 78.867, - 140.278, - 238.614, - 238.321, - 239.753, - 241.31, - 217.503, - 223.739, - 230.101, - 200.754, - 202.733, - 152.425, - 144.239, - 139.334, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.825, - 79.113, - 141.614, - 231.098, - 248.274, - 258.061, - 264.032, - 265.364, - 249.679, - 252.911, - 218.025, - 218.223, - 166.673, - 156.412, - 147.931, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.887, - 79.19, - 142.177, - 241.739, - 247.033, - 251.429, - 251.717, - 241.461, - 224.517, - 228.39, - 198.372, - 200.446, - 153.109, - 145.995, - 139.407, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.665, - 78.753, - 138.231, - 221.089, - 236.553, - 246.502, - 250.499, - 243.218, - 226.828, - 228.319, - 197.257, - 198.509, - 150.693, - 142.499, - 135.963, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.636, - 78.603, - 138.166, - 206.5, - 206.302, - 217.022, - 225.978, - 218.629, - 201.494, - 206.318, - 179.339, - 185.396, - 139.993, - 133.666, - 125.623, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 48.179, - 61.214, - 101.129, - 158.054, - 208.868, - 217.304, - 233.738, - 240.785, - 224.963, - 206.557, - 179.708, - 185.917, - 118.983, - 75.727, - 86.049, - 79.99, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.511, - 13.457, - 66.717, - 71.047, - 118.606, - 114.657, - 153.35, - 158.825, - 142.75, - 149.655, - 124.139, - 88.128, - 49.43, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.678, - 78.674, - 137.763, - 207.175, - 201.369, - 204.191, - 212.093, - 189.854, - 196.669, - 204.466, - 176.982, - 183.102, - 138.797, - 133.602, - 128.087, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.62, - 78.662, - 138.095, - 206.364, - 208.344, - 216.797, - 220.702, - 215.267, - 199.658, - 206.96, - 182.147, - 189.305, - 142.946, - 137.171, - 133.9, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.605, - 78.651, - 138.179, - 206.111, - 200.151, - 196.162, - 199.797, - 196.742, - 179.095, - 184.516, - 160.254, - 168.389, - 128.935, - 133.008, - 124.555, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.589, - 78.624, - 138.103, - 206.347, - 200.385, - 200.259, - 208.108, - 208.747, - 197.44, - 205.072, - 179.3, - 186.383, - 144.026, - 143.124, - 135.553, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.596, - 78.57, - 138.179, - 209.152, - 229.421, - 243.458, - 247.834, - 241.744, - 224.105, - 230.265, - 199.884, - 202.092, - 152.484, - 146.968, - 138.813, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 48.381, - 60.989, - 102.619, - 158.349, - 211.169, - 228.367, - 236.575, - 228.705, - 207.71, - 215.132, - 189.876, - 193.587, - 122.58, - 83.204, - 90.342, - 80.188, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.699, - 12.989, - 66.886, - 70.778, - 118.668, - 119.808, - 167.607, - 163.746, - 143.54, - 148.917, - 154.289, - 92.515, - 54.302, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.275, - 77.109, - 131.763, - 199.77, - 216.082, - 239.466, - 248.762, - 254.803, - 257.595, - 266.687, - 216.756, - 213.048, - 151.267, - 147.99, - 139.737, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.626, - 78.81, - 137.637, - 227.522, - 243.015, - 250.803, - 252.765, - 246.215, - 227.368, - 237.724, - 203.647, - 200.439, - 148.943, - 146.928, - 139.616, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.578, - 78.611, - 137.901, - 207.003, - 206.316, - 216.71, - 223.259, - 221.828, - 206.251, - 211.983, - 186.512, - 194.534, - 150.093, - 147.058, - 140.283, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.577, - 78.653, - 137.932, - 208.781, - 220.066, - 236.112, - 239.864, - 235.473, - 217.116, - 220.141, - 193.958, - 198.509, - 149.87, - 147.418, - 139.262, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.596, - 78.723, - 137.806, - 207.377, - 205.561, - 220.285, - 229.32, - 224.952, - 205.701, - 210.382, - 183.899, - 189.975, - 142.653, - 140.509, - 134.887, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 48.369, - 61.079, - 102.488, - 158.956, - 204.887, - 208.162, - 210.483, - 205.592, - 188.732, - 195.724, - 171.653, - 179.847, - 117.664, - 83.407, - 98.237, - 85.304, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.606, - 13.004, - 67.097, - 73.298, - 145.583, - 153.646, - 190.686, - 182.22, - 162.865, - 167.434, - 142.431, - 106.69, - 67.087, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.562, - 78.797, - 137.967, - 207.613, - 218.595, - 233.488, - 241.534, - 218.978, - 219.811, - 226.252, - 197.339, - 199.373, - 149.433, - 146.595, - 138.965, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.543, - 78.83, - 137.879, - 209.359, - 213.333, - 224.954, - 234.689, - 233.851, - 218.433, - 225.471, - 197.974, - 200.889, - 150.927, - 146.455, - 138.066, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.275, - 78.363, - 130.431, - 229.866, - 237.789, - 247.5, - 248.397, - 248.702, - 235.917, - 222.333, - 193.82, - 195.101, - 144.926, - 143.174, - 134.862, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.525, - 78.932, - 137.921, - 217.722, - 235.347, - 241.389, - 242.459, - 237.513, - 215.93, - 217.149, - 188.704, - 193.623, - 146.699, - 143.848, - 135.285, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.916, - 78.766, - 138.146, - 211.243, - 219.364, - 225.563, - 230.442, - 226.337, - 209.574, - 215.471, - 186.081, - 186.273, - 135.992, - 136.135, - 121.79, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 51.676, - 61.253, - 102.619, - 158.977, - 210.644, - 219.826, - 226.539, - 222.379, - 210.376, - 207.823, - 182.219, - 188.061, - 116.695, - 78.093, - 84.432, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.942, - 13.532, - 67.254, - 70.246, - 117.253, - 113.037, - 146.257, - 136.228, - 116.574, - 120.768, - 95.283, - 68.148, - 41.748, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.152, - 79.06, - 138.742, - 205.203, - 198.806, - 194.35, - 193.566, - 174.659, - 174.124, - 179.317, - 154.219, - 162.604, - 122.582, - 124.3, - 119.111, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.851, - 78.855, - 138.69, - 222.566, - 233.726, - 241.86, - 248.734, - 248.772, - 234.087, - 233.245, - 202.688, - 206.901, - 159.41, - 160.14, - 149.168, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.85, - 78.895, - 151.336, - 253.606, - 267.596, - 273.482, - 276.25, - 271.545, - 251.762, - 256.694, - 227.991, - 231.695, - 171.938, - 161.559, - 146.698, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.835, - 78.886, - 157.015, - 257.174, - 257.552, - 261.579, - 268.672, - 262.776, - 242.334, - 244.174, - 213.325, - 212.284, - 157.718, - 152.744, - 138.043, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.819, - 78.891, - 138.713, - 205.909, - 204.194, - 211.879, - 215.797, - 209.648, - 193.615, - 200.547, - 173.793, - 180.368, - 133.627, - 133.691, - 121.645, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 51.607, - 61.226, - 103.266, - 161.908, - 230.806, - 242.903, - 249.138, - 240.051, - 222.426, - 229.099, - 204.316, - 205.707, - 130.624, - 92.472, - 98.754, - 83.16, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.865, - 13.158, - 68.938, - 87.581, - 152.405, - 153.914, - 193.114, - 189.358, - 171.556, - 176.924, - 152.275, - 111.383, - 69.649, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.82, - 78.915, - 143.225, - 241.418, - 249.782, - 255.052, - 259.586, - 240.522, - 236.541, - 240.486, - 214.446, - 215.245, - 161.406, - 160.624, - 145.016, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.806, - 78.921, - 140.731, - 240.452, - 248.758, - 262.627, - 263.015, - 258.244, - 245.293, - 247.899, - 208.273, - 204.302, - 147.81, - 148.46, - 133.575, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.78, - 79.083, - 139.754, - 237.787, - 244.41, - 249.757, - 258.094, - 255.111, - 233.316, - 238.18, - 212.647, - 215.248, - 163.218, - 164.774, - 148.614, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.769, - 79.111, - 142.026, - 238.767, - 252.228, - 262.429, - 266.928, - 260.502, - 239.351, - 243.003, - 216.032, - 218.071, - 168.231, - 170.658, - 153.458, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.207, - 79.095, - 141.433, - 239.087, - 248.661, - 256.523, - 260.127, - 254.265, - 234.786, - 242.113, - 209.618, - 212.005, - 160.866, - 160.837, - 144.721, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 54.976, - 61.323, - 103.086, - 158.372, - 201.197, - 204.881, - 211.595, - 207.456, - 189.806, - 196.757, - 171.706, - 178.205, - 110.471, - 76.206, - 84.144, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 18.266, - 13.351, - 68.024, - 69.043, - 118.868, - 111.769, - 151.916, - 150.669, - 138.797, - 145.006, - 119.106, - 82.217, - 43.681, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.194, - 79.136, - 139.11, - 205.56, - 199.598, - 198.707, - 214.272, - 203.024, - 197.937, - 201.779, - 175.603, - 180.045, - 129.372, - 132.337, - 120.159, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.177, - 79.123, - 138.907, - 205.984, - 202.313, - 206.463, - 210.325, - 208.117, - 199.56, - 211.449, - 183.939, - 187.914, - 138.267, - 142.127, - 126.299, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.162, - 79.105, - 138.898, - 205.957, - 201.564, - 209.2, - 217.789, - 215.713, - 203.732, - 214.944, - 187.553, - 191.676, - 143.845, - 152.252, - 133.207, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.165, - 79.239, - 139.217, - 206.788, - 214.54, - 223.809, - 233.479, - 230.529, - 212.178, - 215.602, - 188.473, - 193.777, - 145.48, - 152.649, - 136.406, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.149, - 79.232, - 139.099, - 226.585, - 234.81, - 244.927, - 250.889, - 245.503, - 231.205, - 232.525, - 197.816, - 197.804, - 149.597, - 156.683, - 139.302, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 54.901, - 61.465, - 103.083, - 167.586, - 234.797, - 247.508, - 250.342, - 243.748, - 227.668, - 230.673, - 204.15, - 202.623, - 127.649, - 95.958, - 96.519, - 82.915, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 18.171, - 13.48, - 67.466, - 72.132, - 132.098, - 136.124, - 180.481, - 176.643, - 154.456, - 173.234, - 143.527, - 96.14, - 58.93, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.128, - 79.187, - 138.598, - 230.655, - 241.452, - 248.041, - 252.987, - 242.284, - 227.984, - 230.491, - 200.063, - 201.837, - 151.872, - 156.445, - 137.537, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.128, - 79.176, - 138.827, - 210.161, - 220.003, - 229.158, - 233.838, - 228.795, - 210.072, - 214.055, - 186.526, - 192.83, - 146.562, - 152.601, - 133.617, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.128, - 79.207, - 138.781, - 207.451, - 207.138, - 216.13, - 220.897, - 215.776, - 201.79, - 218.518, - 192.905, - 192.579, - 144.229, - 149.515, - 132.021, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.128, - 78.115, - 138.667, - 207.372, - 211.189, - 227.202, - 238.847, - 238.702, - 232.31, - 243.967, - 192.292, - 204.225, - 151.397, - 158.875, - 137.379, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.128, - 79.262, - 138.347, - 215.876, - 226.355, - 233.293, - 237.873, - 234.53, - 214.288, - 220.627, - 192.358, - 194.617, - 146.197, - 150.945, - 124.138, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 58.323, - 61.695, - 103.886, - 158.072, - 200.328, - 205.54, - 219.099, - 218.029, - 210.834, - 218.512, - 192.454, - 195.599, - 119.132, - 88.357, - 85.857, - 80.535, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 13.682, - 68.573, - 69.631, - 117.656, - 114.862, - 167.629, - 186.001, - 183.709, - 183.36, - 130.777, - 96.203, - 57.131, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 13.638, - 68.319, - 69.582, - 116.77, - 112.846, - 151.247, - 146.857, - 150.278, - 152.381, - 127.418, - 84.775, - 44.917, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 79.445, - 139.263, - 206.508, - 200.607, - 198.244, - 204.767, - 204.279, - 196.289, - 200.258, - 173.984, - 181.512, - 136.127, - 145.875, - 121.871, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 79.412, - 139.046, - 206.722, - 205.011, - 217.968, - 224.183, - 223.195, - 210.09, - 216.714, - 201.868, - 195.889, - 147.084, - 156.27, - 135.95, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 79.44, - 139.052, - 210.775, - 220.978, - 237.197, - 244.697, - 238.219, - 224.979, - 228.216, - 199.005, - 202.685, - 154.488, - 165.394, - 145.753, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 79.494, - 140.327, - 234.309, - 245.566, - 250.815, - 253.251, - 248.384, - 233.333, - 237.836, - 207.74, - 211.512, - 163.437, - 175.051, - 150.307, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 58.323, - 61.952, - 104.61, - 179.821, - 247.117, - 255.108, - 258.731, - 249.522, - 233.622, - 235.349, - 206.027, - 210.651, - 137.595, - 113.066, - 108.47, - 98.048, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 13.991, - 69.534, - 77.831, - 146.914, - 158.835, - 202.235, - 191.974, - 179.263, - 181.707, - 149.736, - 112.02, - 69.201, - -0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 79.707, - 139.875, - 216.466, - 237.133, - 249.159, - 249.574, - 237.595, - 221.657, - 226.889, - 199.988, - 202.716, - 150.192, - 163.522, - 141.445, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 79.675, - 139.929, - 205.869, - 211.898, - 224.402, - 235.603, - 230.945, - 215.775, - 220.173, - 193.796, - 199.135, - 149.849, - 162.978, - 138.69, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 79.613, - 139.702, - 206.185, - 211.599, - 220.975, - 226.356, - 223.568, - 212.592, - 218.887, - 190.213, - 194.204, - 145.768, - 158.26, - 134.039, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 79.549, - 139.504, - 206.136, - 200.282, - 214.419, - 235.026, - 229.479, - 211.263, - 215.361, - 187.576, - 190.898, - 139.227, - 153.023, - 131.687, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 79.394, - 138.671, - 207.183, - 205.163, - 209.582, - 209.771, - 201.835, - 185.957, - 196.957, - 173.466, - 181.07, - 141.731, - 153.612, - 131.483, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 61.75, - 62.17, - 105.129, - 155.118, - 196.465, - 196.531, - 198.493, - 187.503, - 175.656, - 182.804, - 159.406, - 169.305, - 114.494, - 89.67, - 84.588, - 80.045, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 14.321, - 70.305, - 65.816, - 112.175, - 114.944, - 165.185, - 159.116, - 150.595, - 155.494, - 129.917, - 92.033, - 55.133, - -0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 80.07, - 141.008, - 203.029, - 197.231, - 199.005, - 201.112, - 188.125, - 176.768, - 182.691, - 158.129, - 167.576, - 131.017, - 144.534, - 120.286, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 80.007, - 140.682, - 204.222, - 198.242, - 194.575, - 195.372, - 191.608, - 182.293, - 187.715, - 162.847, - 171.645, - 134.28, - 148.157, - 122.122, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 79.807, - 139.984, - 204.874, - 198.181, - 193.737, - 191.875, - 179.591, - 163.503, - 169.9, - 149.859, - 162.129, - 125.576, - 137.943, - 119.302, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.026, - 80.054, - 140.908, - 203.56, - 197.387, - 195.435, - 201.987, - 195.306, - 185.522, - 190.546, - 165.516, - 174.543, - 134.79, - 144.893, - 120.76, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.025, - 80.004, - 140.526, - 204.643, - 198.296, - 201.603, - 213.623, - 205.022, - 192.613, - 199.167, - 174.87, - 183.208, - 144.704, - 152.293, - 128.941, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 61.75, - 61.874, - 103.982, - 160.383, - 217.732, - 225.11, - 234.961, - 233.351, - 218.871, - 225.043, - 201.018, - 208.006, - 139.449, - 106.267, - 102.088, - 88.935, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 14.4, - 70.391, - 73.241, - 142.955, - 157.402, - 201.785, - 189.456, - 185.402, - 191.292, - 162.389, - 133.631, - 89.055, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 80.158, - 154.76, - 248.774, - 266.667, - 289.255, - 290.857, - 271.766, - 256.872, - 259.47, - 226.448, - 223.566, - 173.423, - 176.192, - 153.765, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 80.101, - 150.726, - 244.137, - 250.616, - 258.427, - 271.616, - 264.699, - 248.893, - 255.419, - 226.42, - 223.72, - 173.823, - 177.306, - 154.167, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 79.896, - 140.342, - 205.159, - 201.107, - 213.238, - 217.717, - 211.006, - 198.677, - 203.626, - 179.096, - 185.887, - 143.692, - 149.574, - 123.57, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 80.151, - 140.904, - 204.382, - 201.132, - 214.21, - 218.965, - 207.181, - 194.447, - 199.161, - 173.048, - 180.474, - 141.182, - 146.217, - 122.127, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 79.305, - 139.408, - 209.227, - 198.309, - 205.814, - 222.451, - 217.356, - 203.821, - 213.452, - 170.614, - 178.518, - 142.323, - 147.502, - 122.418, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 61.75, - 62.09, - 104.765, - 157.41, - 199.773, - 198.532, - 198.076, - 196.009, - 187.607, - 195.671, - 170.101, - 177.856, - 118.673, - 84.221, - 83.482, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 14.092, - 69.493, - 68.313, - 118.745, - 114.442, - 151.814, - 150.445, - 127.271, - 136.234, - 103.915, - 78.689, - 55.479, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.636, - 80.101, - 140.376, - 205.801, - 200.054, - 210.797, - 224.557, - 222.945, - 210.393, - 212.571, - 182.275, - 184.458, - 143.439, - 144.675, - 122.357, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 78.308, - 139.125, - 205.464, - 199.492, - 195.504, - 194.834, - 191.248, - 168.838, - 174.251, - 149.935, - 159.913, - 127.933, - 137.727, - 119.589, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.577, - 79.93, - 140.477, - 204.836, - 199.314, - 201.894, - 207.048, - 197.139, - 181.702, - 186.999, - 162.665, - 172.143, - 139.325, - 141.493, - 121.746, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.452, - 79.682, - 140.629, - 204.165, - 201.188, - 204.326, - 212.086, - 209.155, - 195.947, - 209.844, - 187.878, - 194.264, - 148.244, - 153.416, - 130.731, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 79.371, - 131.623, - 202.884, - 209.923, - 247.487, - 243.759, - 251.063, - 261.155, - 263.644, - 199.341, - 208.734, - 160.485, - 160.972, - 134.902, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 65.176, - 62.457, - 106.358, - 154.212, - 195.94, - 201.631, - 213.403, - 226.515, - 223.513, - 225.284, - 192.161, - 186.607, - 125.489, - 87.081, - 85.837, - 80.604, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 14.459, - 70.759, - 65.9, - 112.861, - 111.946, - 154.165, - 148.202, - 140.046, - 145.459, - 120.204, - 78.96, - 60.714, - -0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 14.312, - 70.448, - 66.633, - 114.245, - 125.546, - 170.383, - 153.42, - 139.425, - 141.912, - 112.883, - 75.525, - 58.982, - -0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 80.076, - 141.368, - 203.752, - 201.653, - 209.487, - 209.139, - 195.584, - 182.758, - 188.057, - 163.099, - 172.383, - 140.318, - 140.454, - 122.122, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 79.918, - 141.018, - 204.403, - 198.222, - 209.09, - 223.53, - 204.769, - 190.142, - 195.079, - 170.534, - 177.588, - 141.368, - 139.78, - 120.764, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 79.877, - 141.028, - 203.997, - 198.081, - 199.053, - 205.75, - 197.366, - 184.497, - 190.137, - 165.349, - 174.501, - 143.524, - 141.464, - 122.239, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 79.974, - 141.277, - 203.946, - 197.695, - 194.636, - 194.66, - 182.249, - 169.867, - 176.154, - 152.102, - 162.518, - 132.998, - 139.244, - 120.5, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 68.602, - 62.227, - 105.812, - 155.972, - 198.292, - 195.021, - 194.296, - 183.974, - 178.451, - 184.268, - 159.332, - 168.859, - 116.821, - 83.62, - 83.472, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.126, - 70.026, - 68.354, - 120.295, - 115.916, - 146.863, - 138.126, - 124.733, - 123.752, - 102.008, - 75.047, - 62.332, - -0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.951, - 79.531, - 139.518, - 206.283, - 199.849, - 196.201, - 196.007, - 189.333, - 172.5, - 179.462, - 155.602, - 165.986, - 136.209, - 138.209, - 120.021, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.124, - 79.688, - 140.712, - 204.979, - 199.074, - 198.785, - 203.541, - 196.578, - 183.532, - 190.461, - 166.4, - 175.83, - 143.787, - 140.688, - 122.133, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.833, - 79.687, - 141.195, - 204.12, - 199.814, - 199.065, - 198.02, - 195.022, - 190.509, - 196.013, - 169.332, - 174.765, - 139.056, - 140.07, - 121.452, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.833, - 79.727, - 141.369, - 208.156, - 217.453, - 213.3, - 212.684, - 200.174, - 186.516, - 192.185, - 167.38, - 177.777, - 146.901, - 141.433, - 122.799, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.833, - 79.436, - 141.465, - 220.219, - 232.231, - 250.939, - 249.538, - 234.447, - 218.605, - 225.134, - 191.059, - 186.424, - 148.165, - 142.027, - 123.488, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 68.602, - 61.446, - 105.523, - 156.201, - 198.174, - 194.664, - 193.545, - 183.09, - 178.751, - 192.072, - 167.237, - 176.02, - 117.605, - 83.505, - 83.472, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 13.225, - 70.036, - 67.757, - 114.801, - 111.622, - 146.177, - 136.368, - 118.884, - 124.341, - 100.502, - 76.025, - 65.758, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.963, - 79.034, - 141.07, - 204.21, - 197.978, - 194.138, - 192.826, - 183.8, - 181.063, - 192.312, - 167.952, - 175.613, - 141.015, - 136.712, - 118.899, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.01, - 78.904, - 141.058, - 204.163, - 198.153, - 194.532, - 194.39, - 187.664, - 176.63, - 185.295, - 161.162, - 171.359, - 140.344, - 138.398, - 120.131, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.007, - 78.424, - 139.926, - 205.839, - 199.446, - 196.732, - 201.262, - 199.912, - 181.765, - 195.014, - 166.586, - 172.424, - 139.641, - 137.962, - 119.977, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.971, - 81.715, - 139.796, - 205.854, - 199.044, - 195.105, - 193.713, - 188.963, - 168.445, - 175.131, - 152.139, - 162.399, - 138.038, - 137.93, - 119.74, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.385, - 81.962, - 140.139, - 204.634, - 197.512, - 195.548, - 198.14, - 191.93, - 171.254, - 177.314, - 154.597, - 165.822, - 139.621, - 138.654, - 120.006, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 69.127, - 64.592, - 106.301, - 154.501, - 196.182, - 192.344, - 192.447, - 184.054, - 168.156, - 174.116, - 150.872, - 162.504, - 120.83, - 83.828, - 83.472, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 16.039, - 70.862, - 66.196, - 112.804, - 109.785, - 151.311, - 147.161, - 131.119, - 133.046, - 106.244, - 78.316, - 65.762, - 0.0, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.311, - 81.938, - 141.306, - 203.689, - 198.73, - 209.273, - 225.233, - 225.447, - 213.382, - 223.357, - 192.734, - 192.474, - 155.978, - 150.008, - 126.637, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.889, - 81.564, - 141.225, - 203.998, - 204.322, - 219.64, - 232.037, - 233.484, - 222.991, - 212.891, - 180.233, - 180.197, - 149.61, - 142.027, - 121.148, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.899, - 81.507, - 141.034, - 204.606, - 219.479, - 220.648, - 218.81, - 210.233, - 190.781, - 196.214, - 172.806, - 186.315, - 144.828, - 139.501, - 121.005, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.929, - 81.382, - 140.813, - 204.364, - 197.234, - 197.992, - 209.445, - 208.796, - 169.066, - 182.18, - 153.661, - 167.955, - 138.606, - 137.513, - 119.0, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.588, - 81.454, - 140.386, - 204.778, - 197.985, - 194.193, - 194.644, - 191.114, - 169.332, - 175.248, - 152.056, - 167.337, - 139.346, - 138.046, - 119.481, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 69.102, - 63.787, - 106.29, - 154.789, - 196.082, - 191.988, - 190.692, - 182.504, - 164.244, - 170.838, - 148.201, - 164.163, - 118.899, - 83.472, - 83.472, - 79.944, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 15.239, - 70.959, - 67.129, - 113.427, - 109.491, - 143.671, - 136.551, - 117.041, - 123.287, - 100.797, - 80.99, - 65.758, - -0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 57.45, - 87.648, - 138.737, - 198.088, - 194.131, - 192.833, - 188.973, - 168.952, - 175.387, - 152.28, - 167.611, - 187.346, - 137.981, - 137.303, - 150.796, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 57.145, - 87.549, - 139.064, - 198.659, - 195.022, - 199.954, - 205.113, - 183.602, - 189.092, - 164.193, - 170.751, - 187.637, - 137.954, - 137.484, - 151.025, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.782, - 87.432, - 139.352, - 199.271, - 196.624, - 202.728, - 203.799, - 181.55, - 186.992, - 163.013, - 176.297, - 189.029, - 138.787, - 137.89, - 151.694, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.759, - 87.175, - 139.498, - 205.484, - 217.674, - 226.152, - 229.868, - 205.307, - 205.373, - 175.742, - 186.661, - 200.898, - 143.101, - 139.57, - 152.94, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.382, - 86.896, - 139.948, - 201.787, - 212.323, - 224.491, - 234.264, - 203.231, - 206.907, - 180.881, - 188.957, - 199.05, - 141.327, - 140.342, - 153.733, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 54.955, - 69.465, - 103.77, - 151.384, - 211.654, - 220.078, - 217.101, - 195.287, - 205.914, - 183.267, - 189.603, - 200.371, - 122.548, - 86.155, - 117.506, - 80.336, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 18.171, - 19.119, - 70.932, - 63.4, - 111.79, - 110.371, - 146.969, - 128.061, - 126.444, - 103.889, - 123.336, - 101.185, - 65.758, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.589, - 85.089, - 139.463, - 200.103, - 195.595, - 194.029, - 195.042, - 176.442, - 172.632, - 149.848, - 168.86, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.765, - 80.438, - 139.71, - 199.763, - 195.81, - 203.143, - 214.887, - 211.501, - 193.875, - 169.021, - 176.941, - 187.748, - 138.656, - 137.563, - 150.941, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.956, - 77.843, - 140.69, - 208.893, - 195.157, - 193.45, - 194.377, - 184.163, - 172.524, - 150.111, - 170.777, - 185.076, - 136.677, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 58.108, - 87.421, - 141.895, - 200.142, - 195.482, - 193.989, - 193.114, - 166.478, - 173.03, - 150.375, - 169.57, - 185.303, - 137.121, - 137.101, - 151.285, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 61.214, - 88.234, - 137.925, - 196.406, - 192.225, - 190.901, - 186.944, - 164.343, - 170.816, - 148.859, - 168.949, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 59.146, - 69.363, - 103.663, - 149.806, - 193.817, - 192.518, - 190.317, - 166.702, - 172.923, - 153.098, - 171.543, - 185.528, - 119.145, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 14.618, - 70.094, - 61.59, - 118.817, - 115.63, - 159.585, - 156.089, - 144.667, - 104.289, - 122.61, - 101.185, - 65.758, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.25, - 86.112, - 137.902, - 200.013, - 205.771, - 204.725, - 201.381, - 198.525, - 173.497, - 151.01, - 170.363, - 185.381, - 136.901, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.08, - 86.083, - 140.465, - 202.256, - 216.386, - 234.798, - 247.147, - 222.799, - 229.333, - 196.382, - 195.464, - 201.178, - 143.589, - 140.767, - 154.018, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.575, - 85.703, - 140.372, - 200.971, - 200.856, - 208.577, - 213.158, - 188.026, - 194.457, - 171.583, - 187.777, - 191.799, - 140.582, - 139.346, - 152.156, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 14.003, - 69.698, - 72.548, - 112.366, - 110.629, - 147.1, - 138.097, - 124.893, - 106.936, - 122.608, - 101.185, - 65.758, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.472, - 86.548, - 139.579, - 197.98, - 193.48, - 191.894, - 191.955, - 166.455, - 172.964, - 150.476, - 171.629, - 184.874, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 58.961, - 62.496, - 104.747, - 150.482, - 194.641, - 192.972, - 193.976, - 177.193, - 171.786, - 149.418, - 169.481, - 184.831, - 118.899, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 14.039, - 69.12, - 62.578, - 112.176, - 110.397, - 146.691, - 129.936, - 124.641, - 101.779, - 121.338, - 101.185, - 65.758, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.177, - 80.163, - 140.351, - 199.751, - 198.322, - 205.564, - 216.868, - 203.088, - 199.409, - 175.349, - 189.242, - 197.633, - 141.465, - 139.197, - 151.715, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.859, - 79.627, - 139.165, - 209.028, - 201.823, - 203.624, - 206.222, - 194.335, - 175.542, - 152.239, - 171.14, - 185.693, - 136.721, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.403, - 79.709, - 139.752, - 200.698, - 196.028, - 195.353, - 199.102, - 193.596, - 177.277, - 154.198, - 173.357, - 187.306, - 137.556, - 136.693, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.31, - 84.707, - 141.332, - 200.031, - 195.907, - 196.362, - 198.206, - 171.612, - 175.956, - 193.795, - 205.787, - 217.926, - 160.331, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.044, - 77.898, - 134.948, - 203.179, - 196.445, - 197.941, - 196.803, - 196.976, - 198.62, - 161.784, - 169.782, - 184.831, - 136.613, - 136.613, - 150.799, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 63.269, - 66.668, - 107.605, - 158.601, - 202.805, - 204.645, - 202.821, - 182.824, - 189.713, - 190.56, - 171.125, - 184.831, - 118.91, - 83.647, - 115.624, - 80.35, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 12.522, - 63.76, - 62.998, - 117.366, - 126.958, - 161.718, - 159.111, - 161.633, - 125.178, - 123.478, - 102.057, - 66.759, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 65.086, - 84.424, - 131.174, - 200.054, - 207.701, - 207.967, - 205.901, - 202.881, - 196.272, - 149.981, - 170.939, - 184.831, - 136.613, - 136.613, - 150.798, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.307, - 83.846, - 140.814, - 198.637, - 194.64, - 198.995, - 204.077, - 174.5, - 175.925, - 152.886, - 175.869, - 185.245, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.609, - 83.358, - 141.56, - 200.156, - 195.854, - 194.178, - 202.329, - 170.728, - 180.885, - 154.515, - 173.972, - 185.349, - 137.112, - 136.764, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.636, - 83.136, - 141.455, - 199.678, - 195.271, - 193.464, - 194.468, - 180.626, - 172.468, - 149.949, - 173.277, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.106, - 83.415, - 140.96, - 199.123, - 194.343, - 193.374, - 195.077, - 171.505, - 173.209, - 151.159, - 174.726, - 186.027, - 137.452, - 136.655, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 66.204, - 65.707, - 105.441, - 150.651, - 196.988, - 197.188, - 193.928, - 176.589, - 171.915, - 149.29, - 173.08, - 184.831, - 118.899, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 16.641, - 71.193, - 63.25, - 111.69, - 109.463, - 145.31, - 143.498, - 141.037, - 117.74, - 125.075, - 101.185, - 65.758, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.347, - 33.392, - 33.37, - 68.291, - 83.312, - 142.468, - 206.67, - 208.64, - 193.568, - 196.85, - 202.551, - 198.195, - 157.538, - 170.225, - 184.831, - 136.625, - 137.045, - 151.62, - 60.908, - 33.107, - 33.107, - 33.107, - 33.25, - 33.265, - 33.803, - 34.096, - 34.422, - 68.957, - 83.857, - 141.893, - 199.18, - 194.285, - 192.169, - 193.06, - 171.102, - 171.427, - 149.016, - 169.589, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.314, - 33.582, - 34.004, - 34.072, - 34.376, - 68.876, - 83.535, - 141.3, - 199.146, - 194.307, - 192.453, - 193.448, - 171.274, - 171.518, - 149.045, - 169.457, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.402, - 33.526, - 33.539, - 33.8, - 34.142, - 68.678, - 82.725, - 137.268, - 200.399, - 196.191, - 194.965, - 195.45, - 189.223, - 172.453, - 149.621, - 169.597, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.216, - 33.336, - 68.178, - 81.895, - 138.028, - 200.153, - 204.961, - 205.242, - 206.97, - 198.383, - 196.07, - 149.566, - 171.006, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 66.533, - 64.676, - 106.109, - 150.964, - 194.032, - 192.298, - 194.107, - 173.1, - 171.977, - 149.65, - 170.32, - 185.423, - 118.899, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 16.076, - 70.66, - 62.868, - 112.727, - 114.806, - 157.529, - 133.174, - 132.908, - 112.566, - 127.886, - 102.532, - 66.24, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.493, - 80.651, - 132.229, - 200.848, - 208.105, - 226.541, - 229.241, - 237.663, - 204.388, - 169.383, - 182.277, - 188.87, - 139.612, - 138.654, - 152.061, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.138, - 81.518, - 141.743, - 200.846, - 209.387, - 226.829, - 231.114, - 208.021, - 200.734, - 174.308, - 188.582, - 197.763, - 143.151, - 141.391, - 154.606, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.557, - 81.207, - 142.401, - 201.892, - 212.062, - 227.746, - 240.014, - 219.52, - 209.157, - 180.777, - 186.945, - 189.712, - 139.845, - 138.591, - 151.877, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.762, - 78.356, - 136.954, - 208.001, - 214.854, - 224.711, - 231.843, - 221.953, - 202.546, - 169.623, - 180.631, - 189.083, - 139.769, - 138.927, - 152.122, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.962, - 80.83, - 143.589, - 201.51, - 201.606, - 213.647, - 204.797, - 185.671, - 181.962, - 159.497, - 175.884, - 188.101, - 138.309, - 137.364, - 150.879, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 66.192, - 63.621, - 107.616, - 152.741, - 196.474, - 195.343, - 196.199, - 191.069, - 178.325, - 161.261, - 172.621, - 185.794, - 118.899, - 83.472, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.932, - 73.053, - 64.076, - 112.541, - 111.92, - 148.976, - 128.249, - 126.404, - 100.82, - 122.346, - 101.185, - 65.758, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.776, - 82.202, - 141.862, - 199.21, - 194.779, - 205.866, - 230.29, - 206.144, - 192.448, - 166.25, - 173.23, - 185.953, - 137.34, - 136.667, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 15.203, - 71.34, - 62.762, - 112.316, - 120.902, - 167.766, - 150.377, - 143.595, - 112.482, - 123.521, - 101.204, - 65.758, - -0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.91, - 81.387, - 143.348, - 200.969, - 203.823, - 202.233, - 204.403, - 186.67, - 181.591, - 174.25, - 170.858, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.064, - 78.444, - 133.91, - 201.018, - 206.743, - 204.94, - 201.22, - 209.524, - 203.035, - 180.613, - 199.662, - 184.831, - 136.613, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.135, - 77.998, - 139.403, - 208.857, - 206.853, - 200.474, - 200.115, - 197.221, - 198.821, - 192.386, - 202.858, - 216.707, - 138.826, - 136.613, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 69.848, - 60.576, - 95.256, - 152.759, - 198.283, - 199.419, - 197.375, - 199.527, - 211.776, - 194.287, - 200.462, - 216.707, - 123.493, - 83.472, - 115.415, - 80.182, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.092, - 61.32, - 66.725, - 113.826, - 116.662, - 152.161, - 151.486, - 150.402, - 112.309, - 122.716, - 101.185, - 65.758, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.664, - 80.413, - 144.086, - 202.036, - 196.282, - 193.927, - 203.303, - 187.298, - 170.937, - 152.833, - 166.946, - 184.831, - 136.613, - 136.613, - 150.791, - 60.908, - 33.107, - 33.107 - ], - "annual_emissions_tonnes_NOx": 0.13, - "annual_emissions_tonnes_SO2": 0.03, - "annual_emissions_tonnes_PM25": 0.03, - "lifecycle_emissions_tonnes_NOx": 2.84, - "annual_emissions_tonnes_PM25_bau": 0.03, - "annual_energy_supplied_kwh": 920618.46, - "emissions_region": "California", - "electric_to_storage_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "lifecycle_emissions_tonnes_NOx_bau": 3.11, - "electric_to_load_series_kw_bau": [ - 31.876, - 31.876, - 31.876, - 32.165, - 32.388, - 32.759, - 32.725, - 11.701, - 61.786, - 61.326, - 114.313, - 114.512, - 149.959, - 149.812, - 149.485, - 148.975, - 151.609, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.869, - 78.357, - 131.408, - 197.598, - 197.981, - 198.183, - 198.205, - 198.047, - 197.722, - 197.211, - 199.6, - 216.707, - 168.489, - 168.492, - 150.852, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.547, - 78.334, - 131.506, - 197.95, - 198.04, - 198.239, - 198.265, - 198.12, - 197.785, - 197.262, - 199.85, - 216.707, - 168.518, - 168.721, - 151.093, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.658, - 78.498, - 131.793, - 197.616, - 198.003, - 198.203, - 198.224, - 198.077, - 197.749, - 197.241, - 199.845, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.407, - 78.333, - 132.345, - 198.669, - 198.956, - 199.038, - 199.059, - 198.6, - 198.12, - 197.842, - 200.186, - 217.36, - 169.265, - 169.393, - 151.75, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 32.132, - 32.88, - 32.841, - 33.064, - 71.197, - 61.694, - 96.869, - 149.463, - 197.4, - 197.405, - 197.705, - 198.001, - 197.697, - 197.214, - 199.857, - 216.707, - 150.775, - 115.348, - 115.368, - 80.213, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 32.031, - 32.061, - 32.114, - 11.573, - 60.936, - 60.72, - 114.241, - 114.45, - 149.912, - 149.787, - 149.476, - 148.985, - 151.645, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.587, - 78.487, - 131.798, - 197.622, - 198.02, - 198.249, - 198.278, - 198.133, - 197.814, - 197.293, - 199.909, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.617, - 78.099, - 130.812, - 197.579, - 197.962, - 198.173, - 198.2, - 198.067, - 197.757, - 197.266, - 199.924, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.299, - 77.977, - 131.162, - 197.553, - 197.694, - 198.294, - 199.167, - 198.59, - 198.537, - 198.049, - 200.568, - 216.758, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.17, - 78.033, - 130.748, - 196.626, - 197.819, - 198.059, - 197.698, - 197.593, - 197.702, - 197.125, - 199.923, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.145, - 77.935, - 131.094, - 197.537, - 197.932, - 198.151, - 198.181, - 198.04, - 197.737, - 197.257, - 199.954, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 69.872, - 60.189, - 95.686, - 149.309, - 197.897, - 198.929, - 201.794, - 205.582, - 207.757, - 203.466, - 199.976, - 217.96, - 150.775, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.513, - 60.248, - 60.792, - 114.469, - 117.858, - 154.315, - 153.88, - 153.884, - 153.086, - 150.402, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.415, - 60.997, - 60.71, - 113.792, - 114.066, - 148.911, - 149.78, - 148.585, - 148.016, - 147.989, - 133.062, - 97.656, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 72.055, - 78.576, - 131.317, - 197.505, - 197.91, - 198.14, - 198.184, - 198.063, - 197.767, - 197.277, - 196.564, - 216.707, - 168.489, - 168.489, - 150.785, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 72.113, - 78.868, - 132.257, - 198.451, - 198.83, - 198.597, - 198.144, - 198.488, - 198.311, - 197.86, - 197.282, - 217.648, - 169.581, - 169.609, - 151.814, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.148, - 33.158, - 33.216, - 72.404, - 78.723, - 131.159, - 196.979, - 197.556, - 197.739, - 197.723, - 197.216, - 197.138, - 196.614, - 196.209, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.35, - 77.96, - 130.38, - 196.666, - 197.001, - 196.956, - 198.149, - 198.04, - 197.099, - 196.914, - 196.209, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.942, - 32.204, - 32.265, - 32.304, - 70.631, - 60.762, - 95.98, - 149.326, - 197.938, - 198.171, - 197.017, - 196.327, - 196.405, - 196.175, - 196.186, - 216.707, - 150.775, - 115.348, - 115.348, - 79.969, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 32.186, - 32.412, - 32.572, - 32.831, - 11.947, - 60.762, - 60.447, - 113.945, - 114.066, - 149.568, - 149.205, - 148.916, - 148.872, - 148.417, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.244, - 33.107, - 71.731, - 78.48, - 131.308, - 197.54, - 197.922, - 198.156, - 198.207, - 198.084, - 197.8, - 197.338, - 196.636, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.252, - 33.274, - 71.623, - 78.3, - 131.238, - 197.515, - 197.393, - 197.785, - 197.896, - 197.791, - 197.705, - 197.246, - 196.591, - 216.721, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.536, - 77.757, - 130.612, - 196.644, - 198.957, - 201.756, - 201.458, - 210.612, - 217.676, - 214.575, - 204.937, - 216.414, - 170.607, - 170.495, - 152.783, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.007, - 77.277, - 130.382, - 196.595, - 198.376, - 212.506, - 224.271, - 233.115, - 237.342, - 237.856, - 229.742, - 235.345, - 180.247, - 171.697, - 152.829, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.525, - 77.29, - 130.764, - 197.345, - 204.03, - 220.137, - 233.125, - 242.381, - 240.403, - 229.2, - 213.147, - 224.624, - 179.883, - 173.853, - 153.127, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 65.393, - 59.681, - 95.73, - 149.484, - 198.15, - 208.065, - 226.654, - 228.412, - 222.99, - 213.882, - 202.456, - 215.369, - 151.001, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.599, - 60.468, - 60.901, - 114.509, - 117.231, - 153.689, - 153.549, - 153.206, - 151.793, - 149.762, - 129.635, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.545, - 78.001, - 131.222, - 197.644, - 198.029, - 198.23, - 198.262, - 197.694, - 197.617, - 196.892, - 196.359, - 213.281, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 68.015, - 78.188, - 131.586, - 197.599, - 197.678, - 197.851, - 197.86, - 197.703, - 197.478, - 197.092, - 196.449, - 213.281, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 68.134, - 78.18, - 130.911, - 196.87, - 197.306, - 198.318, - 198.372, - 198.261, - 197.962, - 197.479, - 196.665, - 213.281, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.59, - 78.143, - 131.569, - 197.632, - 197.933, - 198.148, - 198.219, - 198.129, - 197.875, - 197.418, - 196.709, - 213.281, - 168.489, - 168.489, - 150.829, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.73, - 78.289, - 131.789, - 197.953, - 197.805, - 197.917, - 197.848, - 198.222, - 197.929, - 197.479, - 196.811, - 213.281, - 168.604, - 168.804, - 151.24, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 32.006, - 67.647, - 61.139, - 96.146, - 149.46, - 198.072, - 198.287, - 198.327, - 198.203, - 197.928, - 197.48, - 196.82, - 209.854, - 150.775, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.949, - 28.668, - 11.84, - 61.124, - 60.87, - 114.395, - 114.608, - 150.081, - 149.956, - 149.68, - 149.237, - 148.583, - 126.209, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 68.128, - 78.098, - 131.035, - 197.087, - 197.64, - 197.817, - 197.716, - 197.487, - 197.444, - 196.943, - 196.408, - 209.854, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.707, - 78.319, - 131.663, - 197.585, - 197.984, - 198.213, - 198.279, - 197.862, - 197.584, - 197.219, - 196.584, - 209.854, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.924, - 78.215, - 131.232, - 197.263, - 197.579, - 197.921, - 197.602, - 197.524, - 197.236, - 197.131, - 196.539, - 209.854, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.02, - 78.01, - 131.255, - 197.299, - 197.178, - 197.021, - 197.611, - 197.709, - 197.096, - 196.967, - 196.398, - 209.854, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.812, - 78.663, - 131.282, - 197.247, - 197.386, - 197.732, - 196.625, - 197.542, - 200.173, - 200.899, - 199.787, - 211.431, - 168.632, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 62.819, - 59.797, - 95.252, - 148.275, - 205.083, - 216.793, - 216.111, - 215.997, - 215.695, - 215.091, - 212.459, - 218.694, - 153.011, - 116.124, - 115.542, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.318, - 60.291, - 60.866, - 114.692, - 115.89, - 152.835, - 154.781, - 157.072, - 157.733, - 155.068, - 128.388, - 97.684, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.44, - 77.449, - 131.136, - 203.635, - 219.248, - 231.274, - 241.577, - 249.635, - 243.545, - 237.051, - 225.776, - 224.907, - 172.008, - 170.842, - 152.421, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.389, - 77.467, - 131.191, - 198.477, - 210.472, - 229.884, - 227.574, - 223.398, - 223.014, - 221.217, - 217.127, - 215.655, - 171.592, - 170.477, - 151.9, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.537, - 77.629, - 131.227, - 197.738, - 198.165, - 198.381, - 198.915, - 199.599, - 199.271, - 198.736, - 197.938, - 207.114, - 168.635, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.558, - 77.666, - 131.411, - 197.721, - 198.104, - 198.317, - 198.363, - 198.239, - 197.96, - 197.518, - 196.884, - 206.428, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.161, - 78.23, - 131.631, - 197.742, - 198.083, - 198.374, - 198.549, - 198.471, - 198.083, - 197.668, - 197.202, - 206.818, - 168.947, - 169.073, - 151.421, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 64.059, - 61.256, - 96.619, - 149.523, - 198.105, - 198.32, - 198.363, - 198.247, - 197.961, - 197.28, - 196.305, - 206.428, - 150.775, - 115.348, - 115.357, - 80.121, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.467, - 60.829, - 60.405, - 113.751, - 113.59, - 148.604, - 149.28, - 149.285, - 148.967, - 148.422, - 122.783, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 11.318, - 60.771, - 60.178, - 112.994, - 113.392, - 150.231, - 149.584, - 149.769, - 149.331, - 148.68, - 122.845, - 97.901, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.194, - 33.723, - 33.906, - 62.098, - 79.048, - 131.743, - 197.712, - 198.095, - 198.315, - 198.373, - 198.275, - 198.02, - 197.568, - 196.933, - 206.464, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.407, - 33.466, - 61.664, - 78.484, - 131.343, - 197.662, - 198.033, - 198.272, - 198.351, - 198.271, - 198.018, - 197.585, - 196.945, - 206.472, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 61.069, - 78.339, - 130.857, - 196.554, - 196.433, - 197.556, - 197.859, - 197.736, - 197.393, - 197.124, - 196.627, - 206.434, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 61.098, - 78.238, - 131.635, - 197.887, - 198.308, - 198.455, - 198.511, - 198.5, - 198.226, - 197.747, - 197.045, - 206.453, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 59.852, - 60.516, - 95.945, - 149.615, - 198.219, - 198.395, - 198.405, - 198.264, - 198.019, - 197.625, - 197.002, - 203.027, - 150.775, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 11.753, - 60.781, - 61.013, - 114.568, - 114.778, - 150.256, - 149.631, - 148.277, - 148.055, - 148.114, - 119.413, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 61.03, - 78.244, - 131.383, - 197.776, - 198.174, - 198.405, - 198.464, - 198.359, - 198.09, - 197.648, - 196.99, - 203.082, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.179, - 33.342, - 58.029, - 77.989, - 131.436, - 197.884, - 197.874, - 197.965, - 198.517, - 198.495, - 198.201, - 196.286, - 196.315, - 203.009, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.252, - 58.042, - 78.694, - 131.746, - 197.917, - 198.324, - 198.472, - 198.525, - 198.512, - 198.227, - 197.757, - 196.171, - 203.057, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 58.026, - 78.139, - 131.1, - 196.831, - 197.103, - 197.559, - 196.377, - 197.552, - 197.036, - 196.415, - 196.539, - 203.002, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.95, - 77.813, - 131.103, - 197.111, - 197.396, - 197.758, - 197.537, - 197.464, - 197.08, - 196.787, - 196.43, - 203.002, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 56.048, - 60.102, - 95.537, - 149.123, - 197.861, - 198.394, - 201.312, - 215.605, - 219.888, - 212.484, - 207.214, - 205.999, - 151.286, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 18.188, - 11.79, - 60.602, - 60.561, - 115.042, - 123.776, - 171.9, - 170.413, - 169.808, - 169.753, - 160.491, - 119.948, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.53, - 77.971, - 131.656, - 197.912, - 198.144, - 197.622, - 198.382, - 198.288, - 197.692, - 197.589, - 196.555, - 203.202, - 168.779, - 168.949, - 151.312, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 57.794, - 78.658, - 131.753, - 197.273, - 198.131, - 198.334, - 197.945, - 198.31, - 198.036, - 197.587, - 196.976, - 203.115, - 168.489, - 168.513, - 150.902, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.948, - 78.358, - 131.818, - 197.931, - 197.886, - 198.025, - 197.864, - 197.866, - 197.799, - 197.339, - 197.039, - 203.026, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.726, - 78.008, - 131.453, - 197.95, - 198.319, - 198.478, - 198.517, - 198.41, - 198.133, - 197.687, - 196.858, - 199.67, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.283, - 77.865, - 131.526, - 197.872, - 198.224, - 198.391, - 198.373, - 198.214, - 197.986, - 197.272, - 196.815, - 199.711, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 52.499, - 60.453, - 96.011, - 149.654, - 198.231, - 198.429, - 198.462, - 198.354, - 198.07, - 197.633, - 197.016, - 199.728, - 150.775, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.794, - 60.471, - 60.319, - 114.299, - 114.283, - 149.705, - 149.9, - 149.587, - 149.416, - 148.911, - 113.142, - 80.606, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.58, - 81.11, - 131.093, - 197.39, - 197.938, - 198.31, - 198.489, - 198.529, - 198.403, - 198.115, - 197.67, - 197.039, - 151.529, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.114, - 81.462, - 131.326, - 197.47, - 197.912, - 198.276, - 198.478, - 198.527, - 198.408, - 198.12, - 197.681, - 197.056, - 151.547, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.056, - 81.419, - 131.221, - 197.431, - 197.902, - 198.223, - 198.405, - 198.442, - 198.343, - 198.087, - 197.662, - 197.05, - 151.55, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.766, - 78.563, - 131.633, - 197.506, - 197.948, - 198.315, - 198.496, - 198.527, - 198.406, - 198.107, - 197.662, - 197.047, - 151.546, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.75, - 78.512, - 131.48, - 197.379, - 197.829, - 198.158, - 198.311, - 198.392, - 198.313, - 198.07, - 197.663, - 197.066, - 151.565, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 69.962, - 60.504, - 95.902, - 149.234, - 197.989, - 198.358, - 198.521, - 198.564, - 198.478, - 198.198, - 197.573, - 196.819, - 133.797, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.421, - 60.772, - 60.884, - 114.388, - 114.744, - 150.31, - 150.343, - 150.222, - 149.946, - 149.504, - 113.466, - 80.735, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.432, - 78.291, - 131.436, - 197.501, - 198.019, - 198.374, - 198.525, - 198.556, - 198.407, - 198.11, - 197.68, - 197.087, - 151.585, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.716, - 78.491, - 131.434, - 197.087, - 197.799, - 198.038, - 197.998, - 198.01, - 197.942, - 197.508, - 197.649, - 197.06, - 148.146, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.388, - 78.32, - 131.696, - 197.724, - 198.33, - 198.837, - 199.093, - 198.809, - 198.365, - 198.087, - 198.019, - 197.605, - 148.629, - 169.243, - 151.676, - 60.908, - 33.107, - 33.107, - 33.107, - 33.232, - 33.608, - 33.8, - 34.179, - 34.375, - 69.002, - 79.472, - 132.259, - 197.841, - 197.857, - 198.134, - 198.297, - 198.38, - 198.319, - 198.081, - 197.654, - 197.051, - 148.145, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 68.216, - 78.52, - 131.571, - 197.183, - 197.484, - 198.122, - 198.041, - 198.026, - 197.862, - 197.768, - 197.598, - 196.772, - 148.071, - 168.489, - 150.809, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 66.844, - 60.728, - 96.195, - 148.973, - 197.679, - 198.237, - 198.403, - 198.415, - 198.275, - 197.491, - 197.423, - 196.806, - 130.415, - 115.348, - 115.348, - 79.955, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.443, - 61.169, - 60.729, - 114.231, - 114.614, - 150.244, - 150.287, - 149.973, - 150.137, - 149.714, - 113.397, - 77.289, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.626, - 77.993, - 131.172, - 197.492, - 198.27, - 202.73, - 205.711, - 204.484, - 205.411, - 205.217, - 204.375, - 199.632, - 149.443, - 168.633, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.543, - 78.009, - 131.385, - 197.511, - 197.995, - 198.314, - 198.486, - 198.546, - 198.425, - 198.146, - 197.695, - 196.524, - 148.168, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.544, - 78.032, - 131.207, - 197.438, - 197.898, - 200.209, - 211.74, - 214.552, - 214.045, - 213.221, - 206.057, - 200.116, - 149.283, - 168.584, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.492, - 77.929, - 130.82, - 197.099, - 197.911, - 204.942, - 212.804, - 214.605, - 215.671, - 216.096, - 214.491, - 209.688, - 152.195, - 170.015, - 151.616, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.478, - 77.547, - 130.993, - 197.593, - 198.706, - 210.662, - 226.437, - 234.334, - 232.707, - 225.533, - 218.405, - 212.375, - 153.034, - 169.595, - 151.14, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 62.392, - 59.833, - 95.516, - 149.322, - 209.589, - 225.987, - 232.107, - 231.126, - 233.294, - 237.1, - 233.403, - 221.214, - 136.33, - 116.045, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.487, - 60.726, - 60.954, - 114.497, - 114.854, - 150.394, - 150.428, - 150.355, - 150.043, - 149.583, - 113.511, - 77.361, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.441, - 78.283, - 131.591, - 197.625, - 198.068, - 198.39, - 198.547, - 198.544, - 198.024, - 198.139, - 197.708, - 197.114, - 148.213, - 165.063, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.438, - 78.226, - 131.452, - 197.289, - 197.593, - 198.15, - 198.34, - 198.411, - 198.325, - 198.084, - 197.66, - 197.082, - 148.198, - 165.063, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.356, - 78.172, - 131.376, - 197.102, - 197.706, - 198.314, - 198.511, - 198.559, - 198.445, - 198.167, - 197.734, - 197.12, - 148.213, - 165.063, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.303, - 78.15, - 131.503, - 197.639, - 198.126, - 198.457, - 198.603, - 198.643, - 198.55, - 198.246, - 197.116, - 197.119, - 148.213, - 165.063, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.61, - 78.001, - 131.323, - 197.627, - 198.133, - 198.488, - 198.609, - 198.64, - 198.517, - 198.216, - 197.755, - 197.124, - 148.222, - 165.063, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 59.181, - 60.162, - 95.811, - 149.393, - 198.09, - 198.395, - 198.539, - 198.529, - 198.392, - 198.242, - 198.076, - 197.465, - 130.772, - 111.994, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 11.491, - 60.26, - 60.744, - 116.645, - 129.278, - 173.128, - 171.701, - 171.356, - 171.508, - 169.721, - 122.453, - 78.797, - 28.45, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.012, - 77.568, - 131.028, - 197.543, - 199.006, - 203.411, - 203.498, - 203.442, - 203.344, - 202.912, - 202.321, - 201.494, - 149.93, - 165.733, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.309, - 77.755, - 131.156, - 197.597, - 198.066, - 199.796, - 204.394, - 202.072, - 201.979, - 201.75, - 201.122, - 200.262, - 150.286, - 165.94, - 150.896, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.172, - 77.486, - 131.141, - 197.033, - 198.098, - 196.58, - 197.424, - 200.864, - 219.001, - 228.012, - 245.485, - 253.714, - 195.654, - 198.018, - 171.933, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.633, - 77.33, - 131.053, - 200.225, - 216.941, - 227.993, - 235.449, - 240.219, - 238.187, - 234.288, - 232.12, - 225.908, - 168.393, - 174.865, - 152.221, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.969, - 77.293, - 131.039, - 198.044, - 210.901, - 225.469, - 237.72, - 238.623, - 233.493, - 227.738, - 222.762, - 217.373, - 160.437, - 167.277, - 151.574, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 55.532, - 59.946, - 95.732, - 149.478, - 198.183, - 198.729, - 199.381, - 199.405, - 199.291, - 199.019, - 198.548, - 197.906, - 131.159, - 111.973, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 18.176, - 11.552, - 60.549, - 60.812, - 114.374, - 114.622, - 150.165, - 150.262, - 150.411, - 150.16, - 149.746, - 113.55, - 77.395, - 28.45, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.759, - 77.607, - 131.06, - 197.571, - 198.001, - 200.19, - 207.008, - 209.226, - 209.49, - 210.704, - 210.531, - 210.047, - 156.984, - 163.131, - 151.564, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.733, - 77.634, - 131.089, - 197.55, - 197.947, - 198.198, - 198.343, - 198.406, - 198.33, - 198.079, - 197.674, - 197.109, - 148.254, - 161.636, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.881, - 77.779, - 131.191, - 197.562, - 197.694, - 197.941, - 198.439, - 198.449, - 198.34, - 198.078, - 197.685, - 196.911, - 148.265, - 161.639, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.892, - 77.742, - 131.126, - 197.581, - 197.992, - 198.395, - 200.054, - 201.852, - 201.679, - 201.415, - 200.952, - 200.249, - 149.663, - 162.36, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.647, - 77.671, - 131.149, - 197.524, - 197.949, - 198.272, - 198.392, - 198.354, - 198.182, - 197.899, - 197.562, - 197.059, - 148.248, - 161.636, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 55.77, - 60.152, - 95.945, - 149.336, - 197.944, - 198.198, - 198.312, - 198.318, - 198.213, - 197.982, - 197.607, - 197.08, - 130.543, - 108.495, - 115.392, - 80.169, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.757, - 11.556, - 61.412, - 61.31, - 114.523, - 115.13, - 150.474, - 150.434, - 150.287, - 149.839, - 149.421, - 113.456, - 77.432, - 25.024, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 54.881, - 78.843, - 132.061, - 198.433, - 198.734, - 198.99, - 199.086, - 198.651, - 198.404, - 198.128, - 197.716, - 197.151, - 148.386, - 161.993, - 151.239, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 54.919, - 78.719, - 131.951, - 197.849, - 198.021, - 197.999, - 197.271, - 197.482, - 197.587, - 196.663, - 196.622, - 196.451, - 148.009, - 161.636, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.96, - 78.085, - 131.239, - 197.062, - 197.247, - 196.691, - 197.557, - 197.976, - 197.79, - 197.115, - 197.259, - 196.833, - 148.279, - 161.636, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.582, - 77.916, - 131.437, - 197.678, - 198.069, - 198.376, - 198.544, - 198.566, - 197.277, - 197.605, - 196.756, - 196.499, - 147.99, - 161.636, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.638, - 77.888, - 131.362, - 197.655, - 198.083, - 198.377, - 198.516, - 198.492, - 198.346, - 198.06, - 197.663, - 197.099, - 148.279, - 161.636, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 52.22, - 60.12, - 95.932, - 149.411, - 198.058, - 198.365, - 198.478, - 198.428, - 198.26, - 197.974, - 197.601, - 197.102, - 130.877, - 108.911, - 115.771, - 80.478, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.777, - 11.612, - 61.439, - 61.381, - 114.553, - 114.661, - 150.152, - 150.11, - 149.988, - 149.747, - 149.38, - 113.412, - 77.407, - 21.597, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 53.668, - 78.176, - 131.73, - 197.847, - 198.096, - 198.423, - 198.517, - 198.428, - 198.319, - 198.045, - 197.629, - 197.129, - 148.307, - 158.337, - 150.979, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.603, - 78.155, - 131.48, - 197.633, - 198.036, - 198.306, - 198.409, - 200.941, - 203.978, - 208.98, - 210.422, - 209.436, - 153.967, - 158.601, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.141, - 77.818, - 131.204, - 197.589, - 197.978, - 198.235, - 198.333, - 198.288, - 199.825, - 202.535, - 201.991, - 201.22, - 148.805, - 158.244, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.968, - 77.728, - 131.143, - 197.562, - 197.95, - 198.216, - 198.322, - 198.306, - 198.159, - 197.931, - 197.561, - 197.046, - 148.273, - 158.21, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.868, - 77.725, - 131.168, - 197.494, - 197.863, - 198.155, - 198.311, - 198.343, - 198.235, - 197.994, - 197.605, - 197.072, - 148.284, - 158.215, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 48.735, - 60.07, - 95.784, - 149.315, - 197.78, - 198.103, - 198.134, - 198.48, - 198.353, - 197.713, - 197.495, - 196.993, - 130.548, - 105.079, - 115.348, - 79.942, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.376, - 11.657, - 60.681, - 60.846, - 114.381, - 114.656, - 150.253, - 148.779, - 148.955, - 149.925, - 149.509, - 113.193, - 77.463, - 21.603, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.485, - 78.178, - 131.51, - 196.943, - 198.101, - 198.405, - 198.567, - 198.307, - 197.224, - 196.383, - 197.467, - 196.857, - 148.332, - 158.228, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.257, - 77.804, - 131.254, - 197.681, - 197.55, - 198.378, - 198.504, - 198.49, - 197.697, - 197.704, - 197.639, - 197.087, - 148.293, - 158.217, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.15, - 77.804, - 131.151, - 197.553, - 197.949, - 198.232, - 198.396, - 198.424, - 198.98, - 200.775, - 200.307, - 199.653, - 150.72, - 158.218, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 50.137, - 77.854, - 131.215, - 197.594, - 198.008, - 198.316, - 202.558, - 208.58, - 209.816, - 209.902, - 209.614, - 208.547, - 154.501, - 159.088, - 150.792, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.923, - 77.681, - 131.136, - 197.605, - 198.018, - 199.991, - 210.455, - 215.186, - 215.302, - 216.774, - 216.146, - 214.754, - 162.381, - 161.347, - 151.387, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 48.501, - 59.957, - 95.74, - 149.424, - 198.051, - 198.37, - 198.558, - 210.345, - 220.083, - 221.632, - 221.123, - 219.99, - 145.07, - 103.859, - 115.584, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.373, - 11.668, - 60.528, - 60.975, - 114.524, - 114.788, - 150.352, - 150.341, - 150.259, - 150.208, - 149.802, - 113.748, - 77.498, - 18.205, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.857, - 77.746, - 131.223, - 197.686, - 198.094, - 198.377, - 198.528, - 200.139, - 204.02, - 204.241, - 204.069, - 203.631, - 155.359, - 155.587, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.772, - 77.707, - 131.194, - 197.682, - 198.114, - 198.41, - 198.562, - 198.503, - 198.973, - 201.307, - 201.225, - 199.022, - 148.735, - 154.819, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.66, - 77.536, - 131.158, - 197.64, - 198.048, - 198.329, - 198.486, - 198.639, - 200.403, - 200.962, - 200.139, - 198.593, - 148.63, - 154.821, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.732, - 77.654, - 131.164, - 197.658, - 198.094, - 198.402, - 198.564, - 198.585, - 198.441, - 199.751, - 199.872, - 199.211, - 148.389, - 154.828, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.87, - 77.737, - 131.234, - 197.659, - 198.037, - 198.267, - 198.375, - 198.367, - 198.266, - 198.031, - 197.675, - 197.137, - 148.347, - 154.835, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 48.957, - 60.248, - 96.048, - 149.458, - 198.178, - 198.352, - 198.421, - 198.397, - 198.247, - 197.967, - 197.614, - 197.123, - 130.635, - 101.693, - 115.355, - 80.138, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.376, - 11.65, - 61.091, - 61.106, - 114.366, - 114.591, - 150.112, - 150.066, - 149.908, - 149.716, - 149.401, - 113.466, - 77.486, - 18.219, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.514, - 78.057, - 131.34, - 197.549, - 197.942, - 198.225, - 198.382, - 198.408, - 198.297, - 198.045, - 197.662, - 197.13, - 148.345, - 154.837, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 50.307, - 77.912, - 131.266, - 197.572, - 197.932, - 198.262, - 201.186, - 206.695, - 209.62, - 209.848, - 209.486, - 208.626, - 159.033, - 157.041, - 150.811, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.764, - 77.597, - 131.106, - 197.542, - 197.922, - 199.742, - 208.054, - 212.171, - 212.198, - 212.071, - 211.594, - 210.818, - 159.957, - 156.537, - 150.932, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.759, - 77.62, - 130.964, - 197.622, - 198.031, - 197.871, - 198.463, - 198.465, - 198.343, - 201.022, - 203.578, - 202.897, - 151.453, - 155.007, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.82, - 77.658, - 131.185, - 197.665, - 198.079, - 198.368, - 198.518, - 198.531, - 198.414, - 198.149, - 197.747, - 197.196, - 148.386, - 154.861, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 48.914, - 60.199, - 95.968, - 149.445, - 198.079, - 198.379, - 198.522, - 198.533, - 198.402, - 198.134, - 197.738, - 197.183, - 130.668, - 98.288, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.4, - 11.68, - 60.738, - 60.892, - 114.327, - 114.602, - 150.608, - 167.915, - 165.794, - 157.515, - 157.019, - 114.859, - 77.588, - 14.824, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.386, - 11.661, - 60.285, - 60.902, - 132.048, - 135.402, - 166.907, - 168.401, - 170.389, - 170.444, - 169.738, - 130.538, - 87.346, - 14.817, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.437, - 77.423, - 131.116, - 198.195, - 211.705, - 235.053, - 252.899, - 261.447, - 261.569, - 254.971, - 246.972, - 240.612, - 183.692, - 178.883, - 168.732, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.364, - 77.406, - 131.681, - 226.602, - 235.713, - 241.975, - 244.944, - 246.708, - 247.286, - 246.021, - 243.686, - 238.624, - 182.275, - 176.94, - 166.821, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.363, - 77.402, - 130.926, - 196.931, - 200.588, - 210.577, - 217.727, - 223.872, - 224.602, - 225.747, - 224.432, - 222.984, - 168.471, - 160.833, - 151.862, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.608, - 77.459, - 131.094, - 197.567, - 197.926, - 198.178, - 198.35, - 198.185, - 197.673, - 197.768, - 197.527, - 196.937, - 148.277, - 151.418, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 48.973, - 60.116, - 95.573, - 148.602, - 197.56, - 197.818, - 198.064, - 198.053, - 197.952, - 197.057, - 196.958, - 196.732, - 130.458, - 98.291, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.394, - 11.661, - 60.49, - 60.752, - 114.264, - 114.507, - 150.011, - 149.958, - 149.835, - 149.642, - 149.327, - 113.419, - 77.504, - 14.841, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.802, - 77.668, - 131.134, - 197.523, - 197.899, - 198.17, - 198.322, - 198.353, - 198.252, - 198.013, - 197.644, - 197.147, - 148.386, - 151.469, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.836, - 77.578, - 130.822, - 196.563, - 196.656, - 197.866, - 197.647, - 198.386, - 198.305, - 197.66, - 197.687, - 197.152, - 148.388, - 151.436, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 50.074, - 77.807, - 131.248, - 197.618, - 198.031, - 198.319, - 198.479, - 198.536, - 198.625, - 199.03, - 198.631, - 198.065, - 148.549, - 151.477, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.777, - 77.676, - 131.231, - 197.711, - 198.148, - 198.445, - 199.479, - 203.489, - 206.401, - 207.604, - 207.12, - 206.32, - 156.823, - 152.569, - 150.818, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.857, - 77.743, - 131.41, - 197.758, - 198.167, - 198.453, - 198.57, - 198.456, - 198.436, - 198.169, - 197.774, - 197.235, - 148.435, - 151.5, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 48.542, - 59.924, - 95.765, - 149.428, - 198.022, - 198.266, - 198.385, - 198.366, - 199.875, - 200.703, - 200.328, - 199.805, - 130.691, - 98.349, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.386, - 11.654, - 60.564, - 60.85, - 114.329, - 114.567, - 150.1, - 150.09, - 149.989, - 149.78, - 149.439, - 113.526, - 77.555, - 14.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.706, - 77.584, - 131.117, - 197.564, - 197.96, - 198.248, - 198.414, - 198.479, - 199.859, - 201.002, - 200.556, - 199.954, - 148.702, - 151.5, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.65, - 77.555, - 131.142, - 197.646, - 197.99, - 198.271, - 198.5, - 198.52, - 199.908, - 202.839, - 203.095, - 202.418, - 150.68, - 151.566, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.573, - 77.457, - 131.159, - 197.631, - 198.033, - 198.318, - 198.591, - 201.629, - 203.016, - 204.906, - 206.64, - 205.71, - 153.635, - 148.709, - 150.853, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.631, - 77.549, - 131.143, - 197.595, - 197.949, - 198.167, - 198.241, - 198.236, - 198.192, - 198.02, - 197.686, - 197.185, - 148.411, - 148.063, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.614, - 77.479, - 131.108, - 197.53, - 197.917, - 198.194, - 198.998, - 202.415, - 205.02, - 207.329, - 207.295, - 206.634, - 157.437, - 153.445, - 151.035, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 48.19, - 59.686, - 95.691, - 149.367, - 198.052, - 204.29, - 213.137, - 221.06, - 222.596, - 222.156, - 221.656, - 220.124, - 145.747, - 98.037, - 115.632, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.395, - 11.65, - 60.269, - 60.792, - 114.31, - 114.55, - 151.861, - 155.448, - 158.752, - 161.712, - 161.12, - 115.472, - 77.64, - 11.454, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.592, - 77.457, - 131.122, - 197.577, - 197.94, - 198.159, - 200.225, - 202.302, - 202.243, - 202.012, - 201.515, - 200.84, - 149.004, - 148.454, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.72, - 77.518, - 131.099, - 197.529, - 198.568, - 202.561, - 203.808, - 211.375, - 214.676, - 214.528, - 213.722, - 212.629, - 162.676, - 153.584, - 151.363, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.625, - 77.494, - 131.093, - 197.533, - 197.9, - 198.661, - 204.952, - 210.247, - 211.829, - 211.452, - 210.608, - 209.644, - 160.303, - 151.846, - 151.081, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.625, - 77.47, - 131.105, - 197.553, - 197.938, - 201.587, - 210.595, - 211.477, - 214.201, - 215.703, - 214.857, - 213.411, - 161.33, - 150.72, - 151.184, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.339, - 77.381, - 131.092, - 197.533, - 197.923, - 201.993, - 211.4, - 219.362, - 223.458, - 225.11, - 223.537, - 222.029, - 168.694, - 158.499, - 151.966, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 48.106, - 59.665, - 95.656, - 149.302, - 198.816, - 222.072, - 230.131, - 228.075, - 229.314, - 230.975, - 231.874, - 229.917, - 149.408, - 98.463, - 115.77, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.387, - 11.615, - 60.131, - 60.603, - 114.236, - 114.5, - 150.048, - 150.589, - 153.351, - 155.183, - 155.592, - 116.929, - 77.883, - 11.447, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.46, - 77.391, - 131.01, - 197.422, - 197.798, - 198.454, - 205.724, - 212.76, - 219.263, - 222.379, - 221.338, - 219.283, - 162.647, - 151.066, - 151.328, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.494, - 77.392, - 131.04, - 197.438, - 197.804, - 198.44, - 208.941, - 215.481, - 215.395, - 214.34, - 213.577, - 213.338, - 160.529, - 149.284, - 151.007, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.511, - 77.394, - 131.047, - 197.483, - 197.854, - 199.418, - 205.382, - 212.203, - 215.591, - 215.35, - 214.507, - 213.027, - 159.858, - 149.928, - 151.256, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.644, - 77.426, - 131.102, - 208.855, - 225.202, - 235.04, - 241.845, - 248.509, - 250.113, - 247.926, - 243.72, - 239.029, - 182.067, - 173.751, - 168.609, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 26.254, - 49.349, - 77.393, - 131.159, - 209.292, - 219.07, - 225.6, - 231.261, - 237.241, - 244.178, - 248.092, - 245.753, - 239.604, - 183.305, - 171.517, - 165.669, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 48.18, - 59.655, - 95.679, - 160.389, - 224.706, - 237.013, - 243.426, - 248.123, - 249.595, - 250.676, - 249.718, - 243.889, - 161.974, - 112.507, - 120.306, - 80.07, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.365, - 11.604, - 60.257, - 60.793, - 114.309, - 114.543, - 150.117, - 150.149, - 150.057, - 149.845, - 149.498, - 113.584, - 77.601, - 11.477, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.51, - 77.402, - 131.115, - 197.594, - 197.985, - 198.252, - 198.407, - 200.191, - 202.558, - 207.423, - 209.434, - 208.604, - 159.324, - 158.255, - 154.363, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.448, - 77.376, - 131.109, - 197.567, - 204.422, - 217.272, - 221.23, - 225.853, - 229.423, - 232.84, - 232.204, - 229.879, - 175.352, - 165.814, - 160.19, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.363, - 11.601, - 60.22, - 60.71, - 114.163, - 114.413, - 149.618, - 150.03, - 149.875, - 149.671, - 149.341, - 113.496, - 77.554, - 11.446, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.338, - 77.361, - 131.012, - 197.431, - 197.792, - 198.05, - 200.553, - 206.438, - 209.385, - 212.161, - 211.728, - 210.746, - 161.21, - 156.634, - 151.861, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.358, - 77.398, - 131.0, - 197.419, - 197.784, - 198.051, - 198.21, - 198.859, - 202.889, - 205.547, - 205.656, - 205.042, - 155.94, - 155.151, - 152.202, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 48.105, - 59.643, - 95.611, - 149.278, - 197.887, - 198.173, - 205.417, - 223.655, - 235.753, - 237.333, - 235.864, - 233.576, - 153.504, - 104.874, - 116.392, - 79.977, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.366, - 11.585, - 60.203, - 60.748, - 114.292, - 114.577, - 153.245, - 157.446, - 167.583, - 177.716, - 178.856, - 140.623, - 93.214, - 11.469, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.331, - 77.351, - 133.342, - 229.275, - 234.922, - 240.434, - 246.703, - 252.15, - 256.308, - 258.3, - 254.161, - 247.744, - 188.869, - 177.08, - 171.21, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.337, - 77.304, - 135.833, - 226.347, - 240.963, - 251.914, - 255.224, - 258.52, - 261.024, - 265.931, - 266.733, - 261.251, - 202.442, - 189.129, - 179.807, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.344, - 77.374, - 135.118, - 233.077, - 244.994, - 254.22, - 256.669, - 258.264, - 258.834, - 258.244, - 253.404, - 246.375, - 189.283, - 178.504, - 171.283, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.32, - 77.342, - 131.066, - 212.631, - 234.252, - 248.323, - 254.392, - 258.325, - 260.379, - 257.538, - 251.838, - 244.116, - 186.721, - 174.967, - 167.839, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.316, - 77.33, - 131.057, - 197.778, - 203.491, - 218.098, - 229.175, - 232.449, - 234.291, - 234.818, - 233.318, - 230.655, - 175.949, - 166.179, - 157.499, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 48.061, - 59.568, - 95.461, - 148.955, - 198.319, - 209.308, - 223.211, - 230.211, - 231.552, - 232.613, - 231.967, - 230.65, - 155.016, - 108.288, - 117.925, - 79.99, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.341, - 11.562, - 60.133, - 60.637, - 114.152, - 114.434, - 155.186, - 168.866, - 174.21, - 177.08, - 177.174, - 132.734, - 85.498, - 11.431, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.32, - 77.319, - 131.006, - 197.463, - 197.854, - 204.933, - 216.132, - 224.547, - 229.295, - 232.796, - 230.848, - 228.366, - 174.759, - 166.084, - 159.964, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.314, - 77.322, - 131.04, - 197.512, - 205.636, - 218.2, - 224.222, - 229.066, - 232.689, - 235.638, - 236.28, - 234.712, - 178.969, - 169.655, - 165.776, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.312, - 77.321, - 131.047, - 197.526, - 197.929, - 198.213, - 204.052, - 211.414, - 212.788, - 213.665, - 214.652, - 213.933, - 164.869, - 165.399, - 156.431, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 29.681, - 49.31, - 77.316, - 131.035, - 197.51, - 197.912, - 202.304, - 212.438, - 223.216, - 231.407, - 234.601, - 234.122, - 232.274, - 180.029, - 175.51, - 167.43, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.31, - 77.312, - 131.041, - 200.388, - 227.034, - 245.521, - 252.088, - 256.252, - 258.014, - 259.582, - 254.455, - 247.8, - 188.506, - 179.355, - 170.69, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 48.081, - 59.603, - 95.594, - 149.277, - 208.379, - 229.878, - 240.184, - 242.173, - 240.897, - 243.822, - 243.89, - 238.849, - 158.523, - 115.638, - 122.218, - 80.188, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.359, - 11.553, - 60.132, - 60.644, - 114.556, - 119.885, - 169.824, - 174.947, - 175.295, - 176.404, - 176.961, - 137.095, - 90.097, - 14.768, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.275, - 77.082, - 130.387, - 198.237, - 214.666, - 234.875, - 244.331, - 255.175, - 256.27, - 262.43, - 255.386, - 245.785, - 187.105, - 180.486, - 171.613, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.314, - 77.309, - 130.97, - 217.049, - 238.644, - 250.839, - 255.026, - 257.302, - 259.442, - 265.608, - 257.123, - 245.41, - 184.83, - 179.315, - 171.492, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.308, - 77.296, - 130.995, - 197.462, - 203.014, - 217.763, - 226.52, - 234.183, - 239.323, - 240.605, - 240.509, - 239.639, - 186.009, - 179.443, - 172.16, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.307, - 77.296, - 130.995, - 199.288, - 216.773, - 236.923, - 242.839, - 247.794, - 249.957, - 248.685, - 248.005, - 243.733, - 185.783, - 179.764, - 171.138, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.309, - 77.297, - 130.979, - 197.434, - 201.751, - 220.837, - 232.025, - 236.5, - 238.235, - 238.541, - 237.495, - 234.908, - 178.49, - 172.816, - 166.763, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 48.079, - 59.588, - 95.559, - 149.228, - 201.346, - 208.822, - 213.227, - 217.649, - 221.298, - 223.976, - 225.358, - 224.812, - 153.484, - 115.708, - 130.113, - 85.304, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.348, - 11.539, - 60.132, - 63.697, - 142.138, - 154.255, - 193.43, - 194.114, - 195.01, - 195.37, - 195.976, - 151.677, - 102.841, - 14.822, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.305, - 77.298, - 130.985, - 197.902, - 214.961, - 234.064, - 244.264, - 250.344, - 252.465, - 254.501, - 251.019, - 244.354, - 185.215, - 178.817, - 170.841, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.303, - 77.298, - 130.972, - 199.383, - 209.334, - 225.161, - 236.979, - 245.021, - 250.269, - 252.866, - 250.82, - 245.486, - 186.793, - 178.637, - 169.942, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.275, - 77.219, - 130.258, - 219.943, - 234.175, - 244.326, - 246.702, - 247.393, - 250.057, - 250.342, - 247.18, - 239.91, - 180.714, - 175.344, - 166.738, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 49.302, - 77.3, - 130.969, - 207.739, - 231.432, - 241.814, - 245.269, - 249.522, - 248.494, - 245.543, - 242.456, - 238.754, - 182.421, - 175.99, - 167.161, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.723, - 77.287, - 130.987, - 201.74, - 215.865, - 226.234, - 233.049, - 238.364, - 242.077, - 243.684, - 239.716, - 231.176, - 171.64, - 168.251, - 153.667, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 51.493, - 59.586, - 95.547, - 149.266, - 207.149, - 220.453, - 229.347, - 234.389, - 235.513, - 235.686, - 235.415, - 232.748, - 152.553, - 110.199, - 116.308, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.766, - 11.569, - 60.125, - 60.657, - 114.21, - 114.511, - 150.115, - 150.16, - 150.058, - 149.843, - 149.469, - 113.536, - 77.521, - 18.22, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.961, - 77.382, - 131.033, - 197.552, - 197.984, - 198.301, - 199.766, - 207.4, - 209.526, - 209.833, - 209.498, - 208.408, - 158.306, - 156.337, - 150.988, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.716, - 77.285, - 131.022, - 214.523, - 232.283, - 244.806, - 253.997, - 264.754, - 268.69, - 263.111, - 257.516, - 252.494, - 195.05, - 192.178, - 181.044, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.716, - 77.286, - 143.585, - 245.552, - 265.924, - 275.913, - 281.055, - 287.524, - 286.29, - 286.604, - 282.944, - 277.399, - 207.562, - 193.572, - 178.575, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.715, - 77.282, - 149.295, - 249.005, - 255.924, - 264.376, - 273.826, - 278.807, - 277.033, - 274.24, - 268.317, - 257.994, - 193.38, - 184.759, - 169.919, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.713, - 77.279, - 131.011, - 197.5, - 202.32, - 214.447, - 220.713, - 225.272, - 228.127, - 230.443, - 228.694, - 225.957, - 169.147, - 165.733, - 153.521, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 51.484, - 59.566, - 95.576, - 153.699, - 229.432, - 246.055, - 254.553, - 255.886, - 257.187, - 259.043, - 259.144, - 251.182, - 166.073, - 124.489, - 130.631, - 83.16, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.757, - 11.516, - 61.486, - 78.433, - 149.651, - 155.419, - 196.645, - 202.392, - 204.54, - 205.204, - 205.776, - 156.105, - 104.859, - 18.196, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.713, - 77.271, - 135.828, - 232.09, - 246.585, - 256.102, - 262.828, - 268.499, - 269.489, - 268.927, - 268.12, - 259.909, - 196.557, - 192.584, - 176.892, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.712, - 77.268, - 133.382, - 230.762, - 244.222, - 257.087, - 266.113, - 270.308, - 272.671, - 268.765, - 259.014, - 247.782, - 182.821, - 180.37, - 165.451, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.71, - 77.284, - 132.409, - 228.136, - 240.934, - 250.334, - 260.798, - 266.984, - 265.591, - 266.083, - 265.641, - 259.132, - 198.495, - 196.651, - 180.49, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 52.709, - 77.281, - 134.702, - 228.899, - 248.385, - 262.438, - 269.03, - 271.686, - 270.958, - 270.18, - 268.348, - 261.618, - 203.389, - 202.534, - 185.334, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.138, - 77.276, - 134.113, - 229.228, - 244.962, - 257.275, - 263.022, - 266.233, - 267.37, - 270.227, - 262.776, - 256.111, - 195.972, - 192.713, - 176.597, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 54.907, - 59.553, - 95.532, - 149.221, - 198.461, - 206.635, - 215.582, - 221.069, - 223.257, - 225.508, - 225.569, - 222.83, - 145.443, - 108.082, - 116.021, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 18.183, - 11.519, - 60.13, - 60.699, - 114.094, - 114.563, - 153.565, - 165.884, - 173.038, - 174.365, - 173.327, - 127.011, - 78.612, - 21.597, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.136, - 77.269, - 131.001, - 197.498, - 197.907, - 201.197, - 218.98, - 230.587, - 231.911, - 230.99, - 229.668, - 224.654, - 164.211, - 164.213, - 152.035, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.134, - 77.265, - 130.979, - 197.471, - 200.18, - 208.431, - 214.227, - 222.54, - 232.746, - 239.881, - 237.406, - 232.055, - 173.09, - 174.004, - 158.175, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.133, - 77.261, - 130.974, - 197.47, - 199.547, - 211.49, - 222.097, - 230.138, - 237.196, - 243.504, - 240.95, - 235.841, - 178.571, - 184.129, - 165.084, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.133, - 77.271, - 130.998, - 199.076, - 213.606, - 227.262, - 239.159, - 247.51, - 246.787, - 245.234, - 242.83, - 238.494, - 180.223, - 184.525, - 168.283, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.131, - 77.265, - 130.996, - 218.05, - 232.757, - 247.24, - 255.313, - 260.798, - 264.952, - 261.375, - 251.496, - 242.066, - 184.224, - 188.559, - 171.178, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 54.899, - 59.547, - 95.503, - 158.131, - 231.897, - 249.023, - 254.035, - 256.622, - 255.942, - 254.796, - 253.924, - 245.943, - 162.185, - 127.835, - 128.395, - 82.915, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 18.171, - 11.515, - 60.065, - 60.512, - 125.654, - 136.951, - 178.549, - 181.362, - 182.124, - 180.457, - 179.805, - 138.121, - 93.448, - 25.024, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.128, - 77.258, - 130.968, - 220.966, - 238.093, - 249.2, - 256.329, - 262.289, - 260.687, - 258.54, - 252.884, - 245.391, - 186.195, - 188.321, - 169.413, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.128, - 77.25, - 130.939, - 200.518, - 216.297, - 229.745, - 236.632, - 241.426, - 242.376, - 241.672, - 239.229, - 236.251, - 180.758, - 184.477, - 165.494, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.128, - 77.25, - 130.932, - 197.368, - 202.803, - 215.629, - 222.1, - 226.606, - 232.659, - 236.983, - 236.407, - 234.548, - 178.449, - 181.391, - 163.898, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.128, - 77.191, - 130.921, - 197.613, - 207.661, - 228.24, - 242.072, - 247.84, - 247.253, - 245.421, - 244.505, - 238.76, - 183.273, - 190.751, - 169.256, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.128, - 77.258, - 130.897, - 205.114, - 221.54, - 233.027, - 239.47, - 244.499, - 245.412, - 243.846, - 241.358, - 238.057, - 180.32, - 182.821, - 156.014, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 58.323, - 59.545, - 95.535, - 149.211, - 197.84, - 207.325, - 223.086, - 233.399, - 244.14, - 246.909, - 244.843, - 238.973, - 153.185, - 120.233, - 117.733, - 80.535, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 11.5, - 60.112, - 60.633, - 114.136, - 115.699, - 170.564, - 181.378, - 183.243, - 183.002, - 183.427, - 139.301, - 91.083, - 28.45, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 11.496, - 60.089, - 60.629, - 114.185, - 114.467, - 154.806, - 160.92, - 161.624, - 161.557, - 161.431, - 124.339, - 78.866, - 28.45, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 77.262, - 130.944, - 197.407, - 197.816, - 199.573, - 207.856, - 221.824, - 228.15, - 227.212, - 225.798, - 223.927, - 169.977, - 177.752, - 153.747, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 77.254, - 130.926, - 197.391, - 201.709, - 218.706, - 226.606, - 235.56, - 241.286, - 243.194, - 241.061, - 238.121, - 179.805, - 188.146, - 167.827, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 77.254, - 130.923, - 201.605, - 217.962, - 238.561, - 248.078, - 251.822, - 257.483, - 255.759, - 251.085, - 245.174, - 188.127, - 197.271, - 177.629, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 77.258, - 132.063, - 225.23, - 242.825, - 252.484, - 256.965, - 262.727, - 266.225, - 265.385, - 259.518, - 253.725, - 196.994, - 206.927, - 182.184, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 58.323, - 59.551, - 95.623, - 172.759, - 246.739, - 259.151, - 264.686, - 268.197, - 268.369, - 264.689, - 259.582, - 253.684, - 171.204, - 144.942, - 140.346, - 98.048, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 11.513, - 60.381, - 71.164, - 147.046, - 163.426, - 208.863, - 211.688, - 214.132, - 211.13, - 203.28, - 155.112, - 102.718, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 77.266, - 131.011, - 208.514, - 235.69, - 252.392, - 254.968, - 255.411, - 255.769, - 255.818, - 253.281, - 245.641, - 183.595, - 195.399, - 173.321, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 77.257, - 130.966, - 197.978, - 210.32, - 226.933, - 239.627, - 246.849, - 247.426, - 246.7, - 245.408, - 241.274, - 183.1, - 194.855, - 170.567, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 77.256, - 130.947, - 197.754, - 209.194, - 222.537, - 229.391, - 237.771, - 243.308, - 244.867, - 241.307, - 235.956, - 178.976, - 190.137, - 165.915, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 77.258, - 130.93, - 197.407, - 197.839, - 216.099, - 238.694, - 244.314, - 243.713, - 242.351, - 238.744, - 231.692, - 172.157, - 184.899, - 163.563, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.554, - 77.266, - 130.905, - 197.37, - 202.269, - 212.093, - 214.152, - 214.678, - 218.948, - 224.05, - 224.132, - 222.694, - 174.798, - 185.488, - 163.359, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 61.75, - 59.562, - 95.578, - 149.342, - 198.039, - 203.209, - 207.169, - 210.153, - 212.271, - 213.334, - 213.433, - 212.25, - 147.556, - 121.546, - 116.464, - 80.045, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.517, - 60.18, - 60.81, - 114.614, - 122.017, - 173.897, - 183.904, - 187.133, - 186.078, - 184.157, - 135.012, - 88.123, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 77.274, - 131.02, - 197.57, - 198.764, - 205.055, - 208.922, - 210.997, - 212.054, - 212.204, - 211.488, - 210.193, - 163.835, - 176.411, - 152.162, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 77.268, - 130.991, - 197.502, - 197.927, - 198.199, - 200.501, - 210.895, - 215.167, - 215.509, - 215.156, - 213.617, - 166.941, - 180.033, - 153.998, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 77.264, - 130.949, - 197.467, - 197.927, - 198.247, - 198.407, - 198.42, - 198.273, - 199.139, - 202.674, - 204.068, - 158.111, - 169.819, - 151.179, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.026, - 77.269, - 130.998, - 197.533, - 197.972, - 200.039, - 208.024, - 215.802, - 218.948, - 218.512, - 217.644, - 216.359, - 167.249, - 176.769, - 152.636, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.025, - 77.265, - 130.966, - 197.471, - 197.916, - 205.56, - 219.511, - 224.643, - 226.306, - 227.186, - 226.646, - 224.426, - 177.087, - 184.169, - 160.818, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 61.75, - 59.549, - 95.49, - 151.786, - 216.507, - 229.683, - 241.795, - 250.425, - 253.789, - 254.249, - 253.972, - 249.847, - 171.84, - 138.143, - 133.964, - 88.935, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.512, - 60.152, - 67.992, - 144.878, - 163.804, - 209.975, - 213.058, - 220.949, - 220.802, - 215.338, - 175.318, - 121.368, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 77.269, - 144.642, - 243.003, - 267.773, - 294.534, - 297.698, - 293.43, - 290.917, - 287.653, - 278.505, - 264.855, - 205.654, - 208.069, - 185.641, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 77.266, - 140.653, - 238.004, - 251.169, - 263.21, - 277.911, - 285.471, - 282.358, - 283.258, - 278.228, - 264.81, - 205.987, - 209.182, - 186.043, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 77.256, - 130.937, - 197.428, - 199.875, - 216.534, - 222.937, - 228.996, - 232.282, - 231.653, - 230.965, - 226.831, - 175.805, - 181.45, - 155.446, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 77.265, - 130.965, - 197.468, - 200.706, - 217.831, - 224.184, - 226.714, - 227.543, - 226.791, - 224.636, - 221.274, - 173.238, - 178.093, - 154.003, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 62.98, - 77.227, - 130.874, - 197.223, - 197.903, - 204.956, - 219.578, - 225.196, - 224.557, - 222.925, - 222.342, - 219.284, - 174.325, - 179.378, - 154.294, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 61.75, - 59.538, - 95.494, - 149.183, - 197.815, - 197.947, - 198.956, - 208.215, - 214.611, - 215.345, - 214.986, - 213.707, - 150.55, - 116.098, - 115.358, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.494, - 60.071, - 60.637, - 114.024, - 114.325, - 149.681, - 149.009, - 149.284, - 148.725, - 148.77, - 112.64, - 87.355, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.636, - 77.393, - 130.914, - 197.381, - 198.217, - 213.25, - 228.913, - 240.052, - 242.976, - 239.456, - 232.966, - 224.425, - 175.316, - 176.551, - 154.233, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 77.181, - 130.847, - 197.392, - 197.821, - 198.108, - 199.283, - 201.637, - 201.45, - 201.113, - 200.591, - 199.811, - 159.809, - 169.604, - 151.465, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.577, - 77.298, - 130.917, - 197.424, - 198.565, - 205.713, - 212.636, - 215.34, - 215.09, - 214.418, - 213.368, - 211.852, - 171.202, - 173.369, - 153.622, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.452, - 77.245, - 130.933, - 197.603, - 201.922, - 209.47, - 219.041, - 228.384, - 230.437, - 230.279, - 229.424, - 226.65, - 180.121, - 185.293, - 162.607, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 77.228, - 130.371, - 196.868, - 211.213, - 237.714, - 251.316, - 257.656, - 257.594, - 258.046, - 251.211, - 240.727, - 192.361, - 192.849, - 166.779, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 65.176, - 59.548, - 95.562, - 149.329, - 198.168, - 208.12, - 221.606, - 224.14, - 226.055, - 225.85, - 224.922, - 222.812, - 157.365, - 118.957, - 117.713, - 80.604, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.502, - 60.122, - 60.741, - 114.55, - 117.715, - 161.361, - 170.55, - 174.017, - 173.439, - 171.15, - 118.461, - 92.591, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.495, - 60.097, - 60.699, - 114.95, - 130.391, - 176.531, - 173.724, - 172.769, - 169.392, - 163.858, - 114.992, - 90.858, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 77.251, - 130.949, - 197.467, - 201.804, - 212.97, - 213.457, - 214.171, - 214.628, - 214.443, - 213.432, - 211.637, - 172.194, - 172.33, - 153.998, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 77.243, - 130.926, - 197.429, - 197.878, - 206.914, - 222.268, - 223.129, - 222.561, - 221.286, - 220.003, - 216.218, - 173.245, - 171.656, - 152.64, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 77.239, - 130.92, - 197.442, - 198.12, - 202.908, - 210.846, - 215.324, - 216.736, - 216.514, - 215.192, - 213.121, - 175.4, - 173.341, - 154.116, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.407, - 77.242, - 130.926, - 197.443, - 197.935, - 198.831, - 200.302, - 201.543, - 202.674, - 202.823, - 202.11, - 201.304, - 164.875, - 171.12, - 152.377, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 68.602, - 59.527, - 95.496, - 149.213, - 197.863, - 198.114, - 198.206, - 200.793, - 209.132, - 209.736, - 208.814, - 207.41, - 148.697, - 115.496, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.477, - 60.045, - 60.592, - 113.909, - 114.208, - 149.94, - 149.692, - 149.414, - 149.498, - 148.879, - 112.921, - 94.208, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.951, - 77.279, - 130.84, - 197.328, - 197.773, - 198.044, - 199.414, - 201.297, - 204.194, - 205.265, - 204.556, - 203.493, - 168.085, - 170.085, - 151.897, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.124, - 77.272, - 130.885, - 197.381, - 198.048, - 202.087, - 208.612, - 213.188, - 216.071, - 217.008, - 215.954, - 213.778, - 175.664, - 172.564, - 154.01, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.833, - 77.224, - 130.906, - 197.421, - 199.947, - 203.293, - 203.524, - 212.696, - 222.524, - 222.039, - 218.496, - 212.574, - 170.933, - 171.946, - 153.328, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.833, - 77.224, - 130.914, - 201.98, - 217.966, - 217.785, - 218.349, - 218.421, - 218.545, - 218.3, - 216.721, - 215.543, - 178.777, - 173.309, - 154.675, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.833, - 77.211, - 131.202, - 213.225, - 231.365, - 254.341, - 254.743, - 251.835, - 251.233, - 251.691, - 240.483, - 223.651, - 180.041, - 173.903, - 155.364, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 68.602, - 59.485, - 95.464, - 149.185, - 197.851, - 198.122, - 198.237, - 198.24, - 210.463, - 218.048, - 216.316, - 212.897, - 149.481, - 115.382, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.43, - 60.059, - 60.606, - 114.187, - 114.44, - 149.967, - 149.922, - 149.755, - 149.447, - 148.965, - 112.84, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.963, - 77.349, - 130.924, - 197.401, - 197.854, - 198.142, - 198.27, - 199.271, - 213.44, - 218.518, - 216.94, - 212.928, - 172.891, - 168.588, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.01, - 77.269, - 130.879, - 197.398, - 197.841, - 198.117, - 199.224, - 202.204, - 208.241, - 210.887, - 209.78, - 208.262, - 172.22, - 170.275, - 152.008, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.007, - 77.231, - 130.825, - 197.321, - 197.769, - 199.393, - 205.312, - 210.237, - 209.451, - 208.319, - 207.884, - 206.682, - 171.518, - 169.838, - 151.854, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.971, - 80.624, - 130.822, - 197.321, - 197.789, - 198.084, - 198.259, - 199.103, - 199.589, - 199.18, - 198.595, - 197.891, - 169.914, - 169.806, - 151.616, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.385, - 80.892, - 130.836, - 197.374, - 197.868, - 200.506, - 205.182, - 205.881, - 205.62, - 205.271, - 204.501, - 202.959, - 171.497, - 170.531, - 151.882, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 69.127, - 63.281, - 95.491, - 149.242, - 197.937, - 198.234, - 199.502, - 201.323, - 201.764, - 201.297, - 200.599, - 199.634, - 152.707, - 115.704, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.819, - 60.113, - 60.659, - 114.276, - 115.288, - 157.933, - 163.571, - 163.857, - 159.382, - 155.135, - 115.0, - 97.638, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.311, - 80.872, - 130.876, - 197.405, - 199.083, - 213.75, - 230.915, - 239.962, - 245.691, - 249.337, - 241.23, - 228.821, - 187.854, - 181.884, - 158.514, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.889, - 80.576, - 130.865, - 197.473, - 204.332, - 223.253, - 236.665, - 246.378, - 244.135, - 235.745, - 224.943, - 216.265, - 181.486, - 173.903, - 153.024, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.899, - 80.582, - 130.851, - 197.616, - 210.429, - 222.862, - 222.538, - 222.203, - 222.154, - 221.738, - 220.961, - 219.61, - 176.705, - 171.378, - 152.881, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 69.929, - 80.598, - 130.837, - 197.364, - 197.86, - 197.945, - 199.367, - 200.791, - 201.61, - 200.769, - 200.397, - 202.835, - 170.482, - 169.389, - 150.876, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.588, - 81.034, - 130.845, - 197.344, - 197.819, - 198.24, - 199.848, - 201.431, - 201.729, - 201.365, - 200.659, - 203.167, - 171.222, - 169.922, - 151.357, - 60.908, - 33.107, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 69.102, - 63.221, - 95.48, - 149.204, - 197.917, - 198.234, - 198.366, - 198.322, - 198.12, - 197.745, - 197.188, - 199.821, - 150.775, - 115.348, - 115.348, - 79.944, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.778, - 60.517, - 60.686, - 114.214, - 114.52, - 150.074, - 150.035, - 149.837, - 149.482, - 148.915, - 116.143, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 57.123, - 77.793, - 131.398, - 197.8, - 198.104, - 198.3, - 199.77, - 201.016, - 200.791, - 200.154, - 202.582, - 219.223, - 169.857, - 169.179, - 150.796, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.887, - 77.898, - 131.381, - 197.769, - 198.055, - 204.042, - 213.843, - 214.449, - 213.868, - 211.936, - 205.636, - 219.514, - 169.83, - 169.361, - 151.025, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.545, - 77.727, - 131.363, - 197.734, - 198.746, - 206.332, - 212.402, - 212.439, - 211.684, - 210.481, - 211.053, - 220.906, - 170.663, - 169.767, - 151.694, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.68, - 77.672, - 131.388, - 204.12, - 220.224, - 229.849, - 237.244, - 235.648, - 229.469, - 222.486, - 220.988, - 232.774, - 174.978, - 171.446, - 152.94, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.263, - 77.631, - 131.332, - 198.982, - 213.181, - 227.352, - 232.354, - 233.889, - 231.418, - 227.846, - 223.348, - 230.926, - 173.203, - 172.218, - 153.733, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 54.955, - 59.928, - 95.937, - 150.573, - 215.369, - 225.289, - 226.06, - 227.189, - 231.245, - 230.575, - 223.85, - 232.247, - 154.424, - 118.032, - 117.506, - 80.336, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 18.171, - 11.79, - 60.403, - 60.894, - 114.377, - 114.51, - 149.908, - 149.185, - 149.796, - 149.32, - 155.334, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.589, - 77.655, - 130.911, - 197.68, - 198.012, - 198.153, - 198.132, - 197.956, - 197.612, - 197.063, - 203.153, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.765, - 77.372, - 130.922, - 197.688, - 198.04, - 200.43, - 207.798, - 211.896, - 211.359, - 210.445, - 208.936, - 219.624, - 170.533, - 169.439, - 150.941, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 56.956, - 77.3, - 131.288, - 197.162, - 198.03, - 198.18, - 198.166, - 198.152, - 197.926, - 197.344, - 203.309, - 216.952, - 168.553, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 58.108, - 79.175, - 132.69, - 198.564, - 198.401, - 198.625, - 198.414, - 197.956, - 197.787, - 197.19, - 203.376, - 217.18, - 168.997, - 168.978, - 151.285, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 61.214, - 78.387, - 131.423, - 197.856, - 198.186, - 198.321, - 198.279, - 198.084, - 197.715, - 197.118, - 203.145, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 59.146, - 60.089, - 95.92, - 149.549, - 198.093, - 198.253, - 198.805, - 198.863, - 198.489, - 197.726, - 203.797, - 217.405, - 151.021, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 11.551, - 60.224, - 60.959, - 113.983, - 114.199, - 148.955, - 148.681, - 148.252, - 148.671, - 154.805, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.25, - 78.048, - 130.992, - 197.657, - 197.457, - 197.552, - 196.676, - 198.252, - 198.253, - 197.644, - 203.669, - 217.258, - 168.778, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.08, - 77.593, - 131.277, - 200.309, - 219.064, - 233.036, - 241.627, - 244.074, - 238.942, - 231.655, - 227.37, - 233.055, - 175.466, - 172.643, - 154.018, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 59.575, - 77.545, - 131.278, - 199.714, - 203.693, - 212.801, - 217.463, - 218.882, - 218.853, - 218.094, - 221.156, - 223.676, - 172.458, - 171.222, - 152.156, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 11.513, - 60.079, - 60.415, - 114.311, - 114.468, - 149.875, - 149.698, - 149.344, - 148.506, - 154.805, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.472, - 78.194, - 131.578, - 197.749, - 198.093, - 198.26, - 198.868, - 199.308, - 198.855, - 198.105, - 203.858, - 216.75, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 58.961, - 59.967, - 96.117, - 149.501, - 198.03, - 198.186, - 198.17, - 197.993, - 197.639, - 197.069, - 203.107, - 216.707, - 150.775, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 21.597, - 11.51, - 60.429, - 60.888, - 114.32, - 114.48, - 149.896, - 149.717, - 149.355, - 148.813, - 154.883, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 60.177, - 77.339, - 131.261, - 197.711, - 200.295, - 208.475, - 218.525, - 222.481, - 223.58, - 222.308, - 222.91, - 229.509, - 173.341, - 171.073, - 151.715, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.859, - 77.608, - 130.845, - 197.197, - 197.634, - 198.168, - 198.957, - 199.249, - 198.872, - 198.388, - 204.354, - 217.569, - 168.598, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.403, - 77.647, - 130.87, - 197.602, - 197.946, - 199.456, - 202.352, - 202.917, - 202.394, - 201.629, - 207.024, - 219.182, - 169.432, - 168.57, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.31, - 77.996, - 131.214, - 197.629, - 198.097, - 200.602, - 201.463, - 201.195, - 200.765, - 199.667, - 205.814, - 217.926, - 168.863, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.044, - 77.566, - 130.611, - 196.76, - 196.183, - 196.346, - 196.222, - 196.241, - 196.41, - 196.319, - 203.086, - 216.707, - 168.489, - 168.489, - 150.799, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 63.269, - 60.801, - 96.51, - 149.351, - 197.587, - 197.542, - 197.661, - 197.218, - 196.573, - 196.207, - 203.002, - 216.707, - 150.787, - 115.523, - 115.624, - 80.35, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 25.024, - 11.425, - 61.463, - 61.032, - 114.113, - 114.809, - 150.102, - 150.316, - 149.996, - 149.806, - 155.921, - 133.933, - 98.635, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 65.086, - 78.799, - 131.08, - 197.712, - 197.114, - 197.357, - 197.491, - 196.775, - 196.164, - 197.023, - 203.015, - 216.707, - 168.489, - 168.489, - 150.798, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.307, - 77.984, - 131.235, - 197.686, - 198.572, - 205.002, - 209.113, - 203.747, - 202.237, - 200.461, - 207.976, - 217.122, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.609, - 77.512, - 131.19, - 197.609, - 197.941, - 198.392, - 198.393, - 198.604, - 197.773, - 197.397, - 207.05, - 217.225, - 168.988, - 168.64, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 63.636, - 77.637, - 131.191, - 197.629, - 197.967, - 198.138, - 198.123, - 197.388, - 197.581, - 197.022, - 206.507, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 64.106, - 77.888, - 131.223, - 197.654, - 198.036, - 199.106, - 199.704, - 199.513, - 199.127, - 198.563, - 207.975, - 217.903, - 169.328, - 168.531, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 66.204, - 60.355, - 95.898, - 149.449, - 197.865, - 197.925, - 198.153, - 197.631, - 197.612, - 197.06, - 206.518, - 216.707, - 150.775, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.615, - 60.507, - 60.82, - 114.317, - 114.511, - 149.957, - 148.597, - 148.382, - 148.819, - 158.288, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.347, - 33.392, - 33.37, - 68.291, - 78.65, - 131.679, - 197.302, - 197.172, - 198.13, - 196.227, - 196.746, - 196.368, - 196.572, - 203.057, - 216.707, - 168.501, - 168.921, - 151.62, - 60.908, - 33.107, - 33.107, - 33.107, - 33.25, - 33.265, - 33.803, - 34.096, - 34.422, - 68.957, - 78.938, - 131.615, - 197.645, - 198.011, - 198.204, - 198.198, - 198.01, - 197.639, - 197.074, - 203.096, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.314, - 33.582, - 34.004, - 34.072, - 34.376, - 68.876, - 78.617, - 131.335, - 197.643, - 198.01, - 198.189, - 198.177, - 198.001, - 197.634, - 197.072, - 203.104, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.402, - 33.526, - 33.539, - 33.8, - 34.142, - 68.678, - 78.238, - 130.73, - 197.58, - 197.91, - 198.052, - 198.063, - 197.912, - 197.577, - 197.037, - 203.095, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.216, - 33.336, - 68.178, - 77.987, - 130.753, - 197.589, - 197.462, - 197.54, - 197.647, - 196.568, - 197.399, - 197.244, - 203.172, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 66.533, - 60.323, - 95.77, - 149.418, - 198.019, - 198.72, - 199.832, - 199.585, - 199.146, - 198.565, - 204.514, - 217.299, - 150.775, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 28.45, - 11.58, - 60.314, - 60.825, - 115.615, - 119.63, - 161.444, - 158.399, - 158.925, - 160.905, - 160.103, - 134.408, - 98.117, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.493, - 77.562, - 130.423, - 197.557, - 203.204, - 221.818, - 232.741, - 235.071, - 224.913, - 217.481, - 216.388, - 220.746, - 171.488, - 170.531, - 152.061, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 67.138, - 77.398, - 131.158, - 198.648, - 212.192, - 231.565, - 234.973, - 232.187, - 226.78, - 222.678, - 222.627, - 229.639, - 175.028, - 173.267, - 154.606, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.557, - 77.307, - 131.128, - 198.91, - 213.007, - 230.283, - 242.293, - 242.117, - 234.115, - 228.21, - 220.548, - 221.588, - 171.722, - 170.467, - 151.877, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.762, - 77.176, - 130.686, - 198.575, - 211.442, - 228.851, - 227.142, - 223.328, - 222.471, - 218.449, - 214.226, - 220.959, - 171.645, - 170.803, - 152.122, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 66.962, - 77.375, - 131.077, - 198.039, - 203.216, - 208.137, - 208.382, - 208.203, - 207.835, - 207.531, - 209.955, - 219.978, - 170.186, - 169.241, - 150.879, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 66.192, - 60.096, - 95.695, - 149.324, - 198.238, - 199.4, - 199.575, - 199.224, - 199.436, - 198.422, - 204.64, - 217.67, - 150.775, - 115.348, - 115.348, - 79.921, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.519, - 60.64, - 60.753, - 114.256, - 115.979, - 152.429, - 150.657, - 149.401, - 148.853, - 154.822, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.776, - 78.444, - 131.391, - 197.623, - 198.671, - 211.872, - 227.876, - 219.066, - 210.202, - 205.282, - 205.37, - 217.83, - 169.216, - 168.544, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.534, - 60.62, - 60.819, - 115.553, - 119.794, - 168.346, - 174.477, - 170.564, - 162.056, - 158.753, - 133.08, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.91, - 78.039, - 131.42, - 197.534, - 197.506, - 197.648, - 197.559, - 197.333, - 197.048, - 196.578, - 203.021, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.064, - 77.977, - 130.603, - 196.588, - 197.026, - 197.505, - 197.731, - 197.253, - 196.75, - 197.09, - 203.054, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 71.135, - 77.828, - 130.871, - 197.166, - 197.033, - 196.589, - 196.558, - 196.268, - 196.429, - 196.397, - 203.012, - 216.707, - 168.489, - 168.489, - 150.775, - 60.908, - 33.107, - 33.107, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 69.848, - 60.18, - 95.111, - 148.371, - 196.38, - 196.494, - 196.284, - 196.956, - 199.485, - 196.874, - 203.157, - 216.707, - 150.775, - 115.348, - 115.415, - 80.182, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.478, - 60.392, - 60.204, - 112.649, - 112.928, - 148.363, - 148.299, - 148.192, - 148.179, - 154.798, - 133.062, - 97.634, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 33.107, - 70.664, - 77.744, - 131.267, - 197.486, - 197.891, - 198.097, - 197.622, - 197.438, - 197.666, - 196.851, - 203.256, - 216.707, - 168.489, - 168.489, - 150.791, - 60.908, - 33.107, - 33.107 - ], - "lifecycle_emissions_tonnes_SO2_bau": 0.69, - "distance_to_emissions_region_meters": 0.0, - "annual_emissions_tonnes_NOx_bau": 0.14, - "annual_emissions_tonnes_CO2": 452.67, - "lifecycle_emissions_tonnes_CO2": 9741.48 - }, - "ElectricTariff": { - "lifecycle_demand_cost_after_tax_bau": 0.0, - "year_one_energy_cost_before_tax": 232771.01, - "lifecycle_fixed_cost_after_tax_bau": 0.0, - "year_one_min_charge_adder_before_tax": 0.0, - "lifecycle_export_benefit_after_tax_bau": -0.0, - "year_one_export_benefit_before_tax_bau": -0.0, - "lifecycle_demand_cost_after_tax": 0.0, - "lifecycle_export_benefit_after_tax": -0.0, - "year_one_demand_cost_before_tax_bau": 0.0, - "year_one_bill_before_tax_bau": 263196.09, - "lifecycle_energy_cost_after_tax_bau": 2.521988e6, - "lifecycle_min_charge_adder_after_tax_bau": 0.0, - "year_one_export_benefit_before_tax": -0.0, - "year_one_bill_before_tax": 232771.01, - "year_one_energy_cost_before_tax_bau": 263196.09, - "lifecycle_min_charge_adder_after_tax": 0.0, - "year_one_fixed_cost_before_tax": 0.0, - "lifecycle_coincident_peak_cost_after_tax": 0.0, - "year_one_demand_cost_before_tax": 0.0, - "lifecycle_fixed_cost_after_tax": 0.0, - "year_one_min_charge_adder_before_tax_bau": 0.0, - "year_one_coincident_peak_cost_before_tax_bau": 0.0, - "lifecycle_coincident_peak_cost_after_tax_bau": 0.0, - "lifecycle_energy_cost_after_tax": 2.23044995e6, - "year_one_coincident_peak_cost_before_tax": 0.0, - "year_one_fixed_cost_before_tax_bau": 0.0 - }, - "ElectricLoad": { - "load_series_kw": [ - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 32.1651558934, - 32.3881481528, - 32.7585418392, - 32.7247305327, - 13.187118239999998, - 81.151758507, - 92.248455282, - 153.443729561, - 157.963779561, - 193.83406871600002, - 190.506058716, - 183.106588716, - 171.551398716, - 157.05634656499998, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.8692608705, - 79.82287324699999, - 151.039085081, - 228.93602942799998, - 237.60373942799998, - 242.19172942799997, - 242.68439942799998, - 239.100019428, - 231.74531942799996, - 220.18502942799998, - 200.12341727700002, - 216.706946524, - 168.489065812, - 168.491911227, - 150.85171541, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.5474906692, - 79.79461025209999, - 141.36722718500002, - 229.54102411399998, - 238.40158277999998, - 243.459429428, - 244.03129942799998, - 240.75477942799998, - 233.17080942799998, - 221.338889428, - 205.78216727699999, - 216.706946524, - 168.517535318, - 168.721294419, - 151.09283434, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.6578533614, - 82.6777677224, - 151.60253116099997, - 229.264201979, - 238.112529428, - 242.646679428, - 243.10337942799998, - 239.78250942799997, - 232.35680942799996, - 220.85979942799997, - 205.688857277, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.4065050174, - 79.7758119707, - 151.40434154800002, - 229.270262643, - 237.79167311700002, - 242.19677833699998, - 242.63919742299998, - 231.63693430900003, - 220.750282684, - 220.89401858699998, - 203.088540453, - 217.360114968, - 169.264710745, - 169.393233922, - 151.75045889499998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 32.1323934869, - 32.880291975, - 32.8406835913, - 33.0638860086, - 71.1972270942, - 63.3542473172, - 115.80719452760002, - 179.372813475, - 224.45584942799996, - 224.581299428, - 231.36673942799996, - 238.07133942799996, - 231.18284942799997, - 220.26121942799998, - 205.939507277, - 216.706946524, - 150.775396235, - 115.34805707999999, - 115.36839556599999, - 80.2129371411, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 32.0314953702, - 32.061228484, - 32.1144179076, - 15.426403582, - 79.2113773219, - 90.07297082819998, - 151.815039561, - 156.560749561, - 192.771618716, - 189.934658716, - 182.898048716, - 171.780908716, - 157.86883656499998, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.586747502, - 82.5594247341, - 151.247963297, - 229.15358036799998, - 238.489599428, - 243.68198942799998, - 244.33314942799998, - 241.04647942799997, - 233.835759428, - 222.03845942799998, - 207.128467277, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.6172383343, - 79.4995193924, - 140.94779766099998, - 228.51640942799997, - 237.183269428, - 241.96628942799998, - 242.573489428, - 239.56897942799998, - 232.539419428, - 221.43295942799998, - 207.462187277, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.2988329368, - 79.86647197070002, - 150.05594307, - 227.92643942799995, - 230.785116099, - 229.992247968, - 236.747132685, - 225.34751629000002, - 223.952084999, - 212.87249816599999, - 203.04225295499998, - 216.75762088200003, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.1700965213, - 78.33514593059999, - 132.625735884, - 206.947999428, - 233.958299428, - 239.38561942799998, - 231.21488942799996, - 228.838809428, - 231.29383942799998, - 218.24718942799996, - 207.449887277, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.1449318269, - 81.71146280149999, - 149.41344020499997, - 227.56080942799997, - 236.51507942799998, - 241.46187942799997, - 242.14780942799996, - 238.959949428, - 232.08402942799995, - 221.236379428, - 208.140777277, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 69.8722327627, - 64.0991499322, - 114.12216757780001, - 179.12612871599998, - 235.71580942799997, - 241.344593234, - 245.077261312, - 246.300942938, - 242.186443021, - 227.497139228, - 208.05982809500003, - 217.960109224, - 150.775396235, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 15.7231487988, - 79.39233082819999, - 91.7047708282, - 153.814204269, - 154.642399957, - 186.62131664700001, - 183.470797012, - 183.57551991099996, - 172.534841767, - 159.52798352, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 13.5048587988, - 78.8007896061, - 89.47430930510001, - 141.658129561, - 147.864089561, - 170.10885871600001, - 189.769588716, - 162.73169871599998, - 149.86232871599998, - 149.232128716, - 133.061726657, - 97.6558853336, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 72.0552251792, - 82.37925082000001, - 148.878730501, - 226.84919942799996, - 236.016029428, - 241.20935942799997, - 242.20373942799998, - 239.473929428, - 232.780339428, - 221.66914942799997, - 205.54711942799997, - 216.706946524, - 168.489065812, - 168.489065812, - 150.784832476, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 72.1128977055, - 82.84117310530002, - 149.898008795, - 227.26379923, - 235.86537147800001, - 240.45149146, - 232.084659753, - 238.904744239, - 232.657448727, - 221.97313850600003, - 206.47035506499998, - 217.647917183, - 169.580816349, - 169.609419563, - 151.81423075200001, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.1484538693, - 33.1579791685, - 33.2161229216, - 72.404215929, - 81.89106904100001, - 144.968198032, - 214.93911942799997, - 227.99220942799997, - 232.14282942799997, - 231.76812942799998, - 220.294669428, - 218.53370942799998, - 206.66354942799998, - 197.51118942799997, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.3500988695, - 81.4242603793, - 133.21505361899997, - 207.84839942799996, - 215.425669428, - 214.406059428, - 241.425229428, - 238.94396942799997, - 217.65826942799998, - 213.458539428, - 197.499259428, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.9421555958, - 32.2035600905, - 32.2652049286, - 32.304003877599996, - 70.6306158834, - 64.87676612749999, - 114.03062435300001, - 179.501768716, - 236.64990942799997, - 241.90437942799997, - 215.79464942799999, - 200.180069428, - 201.95299942799997, - 196.726449428, - 196.99228942799996, - 216.706946524, - 150.775396235, - 115.34805707999999, - 115.34805707999999, - 79.9691018546, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 32.1861644729, - 32.411915279999995, - 32.5718722321, - 32.830846147500004, - 13.754587628, - 69.7588359042, - 83.6192306699, - 145.124929561, - 147.864319561, - 184.970898716, - 176.772428716, - 170.21452871600002, - 169.223618716, - 158.922938716, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.244252711899996, - 33.107087900699995, - 71.7314978994, - 83.1691202537, - 150.1085794, - 227.62277942799997, - 236.28825942799998, - 241.57398942799998, - 242.735829428, - 239.95657942799997, - 233.50968942799997, - 223.06277942799997, - 207.18229942799996, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.2520486233, - 33.273657609000004, - 71.6231581158, - 82.7872733037, - 149.248053491, - 227.05994942799998, - 224.30588942799997, - 231.995510973, - 228.831475361, - 226.802187514, - 224.59631162699998, - 214.36362933, - 199.82497822599998, - 216.721073515, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.5362609355, - 78.915522855, - 139.14246913800002, - 207.34600942799997, - 215.213991826, - 218.39926344399998, - 219.18910861499998, - 225.540647516, - 223.11099023, - 217.433802111, - 206.050193761, - 216.413796675, - 170.606738842, - 170.494808514, - 152.783232233, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.0071306369, - 77.276646023, - 133.93780913800003, - 206.24377942799998, - 205.03769146699997, - 223.703108794, - 224.59824541900002, - 276.871649931, - 274.607642999, - 264.336763137, - 240.779303793, - 235.345027798, - 180.246863585, - 171.697026845, - 152.828674428, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.5248898027, - 81.6845756164, - 142.593269138, - 220.89192578799998, - 205.68775353300003, - 253.08898435600003, - 266.204581622, - 269.723578975, - 241.22410524, - 254.099784196, - 222.27934595999997, - 224.624227846, - 179.8832421, - 173.852535803, - 153.12654982, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 65.3926614137, - 64.9881444643, - 116.0537999831, - 183.077928716, - 241.44372942799998, - 255.20724061500002, - 274.81598691199997, - 274.975416228, - 263.23591507, - 242.967350689, - 215.448399118, - 215.368693224, - 151.00139183000002, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 17.673008798799998, - 81.18176410790001, - 94.16852082819999, - 156.805279498, - 164.133291661, - 201.64446886299996, - 199.02981642599997, - 192.153644078, - 180.21125928899997, - 162.765761205, - 129.635408808, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.5450257743, - 84.07233372830001, - 151.603715737, - 229.98281942799997, - 238.70235942799997, - 243.247109428, - 243.96460942799996, - 231.10899942799998, - 229.383629428, - 212.96359942799998, - 200.892399428, - 213.280628675, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 68.0150536493, - 80.53778989349999, - 150.96233383799998, - 228.96000942799998, - 230.760729428, - 234.667959428, - 234.876149428, - 231.311319428, - 226.234219428, - 217.501159428, - 202.94353942799998, - 213.280628675, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 68.1338724794, - 78.1798964587, - 132.53842153300002, - 212.16973378800003, - 222.33268942799998, - 245.23601942799996, - 246.463559428, - 243.96038942799998, - 237.194099428, - 226.241759428, - 207.82571942799999, - 213.280628675, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.5896753091, - 83.0463000934, - 149.68708138600002, - 227.847821735, - 236.52967942799998, - 241.405269428, - 243.00549942799998, - 240.95606942799998, - 235.22054942799997, - 224.86821942799997, - 208.82103942799998, - 213.280628675, - 168.489065812, - 168.489065812, - 150.82903128, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.7296707432, - 84.83498913039999, - 152.64156998500002, - 231.286721442, - 233.080839125, - 236.17564942799999, - 234.604379428, - 243.07203942799998, - 236.44632942799996, - 226.253879428, - 211.12674942799998, - 213.280628675, - 168.603925621, - 168.804078193, - 151.24034772800002, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 32.006453887300005, - 67.6467927111, - 68.1944595417, - 117.1023633386, - 182.52555871599998, - 239.68242942799998, - 244.549899428, - 245.44226942799997, - 242.63131942799998, - 236.40314942799998, - 226.281789428, - 211.346439428, - 209.854310826, - 150.775396235, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.949074679299997, - 28.6677997673, - 18.6003929116, - 81.2893867719, - 93.0342763918, - 155.299429561, - 160.137389561, - 196.58083871600002, - 193.77073871599998, - 187.51920871599998, - 177.482368716, - 162.685608716, - 126.20909095800002, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 68.12779095740001, - 80.2620992761, - 142.42567853699998, - 217.372769428, - 229.90069942799997, - 233.89217942799996, - 231.617369428, - 226.43803942799997, - 225.46987942799998, - 214.123639428, - 202.017309428, - 209.854310826, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.7074061905, - 85.2441270473, - 151.448460253, - 228.643529428, - 237.69240942799996, - 242.87271942799995, - 244.368709428, - 234.92801942799997, - 228.62384942799997, - 220.361359428, - 205.992329428, - 209.854310826, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.92357773559999, - 82.4167213288, - 146.308654491, - 221.363259428, - 228.521559428, - 236.25549942799998, - 229.02654942799998, - 227.27037942799998, - 220.75058942799998, - 218.38013942799998, - 204.98196942799999, - 209.854310826, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.0195564568, - 81.7867835364, - 141.438701432, - 217.760704597, - 219.434899428, - 215.88586942799998, - 229.248449428, - 231.44786942799996, - 217.578059428, - 214.65946942799997, - 201.787599428, - 209.854310826, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.81245927900001, - 85.18322551339999, - 145.76062677499996, - 221.008839428, - 224.135639428, - 231.971729428, - 206.930759428, - 209.04693623400004, - 206.72525418, - 206.355254654, - 199.78652478299998, - 211.430508402, - 168.631881565, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 62.81905509520001, - 61.2624877597, - 105.23604998310002, - 153.788437728, - 217.200462163, - 247.528529284, - 245.00976819699997, - 248.05588464800002, - 242.97130553999997, - 236.803931562, - 215.81005935299996, - 218.694119197, - 153.011108362, - 116.124006159, - 115.542145234, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 11.3183987988, - 80.36962499970001, - 93.37841082819999, - 156.14596652999998, - 162.56821625700002, - 200.95179534300001, - 200.35616200200002, - 196.826629814, - 187.25696932499997, - 169.847331775, - 128.387966216, - 97.68391383459999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 63.4402921551, - 84.4116833563, - 151.01584913800002, - 225.353145893, - 260.224575856, - 277.410574156, - 288.867655975, - 295.160866498, - 282.912908403, - 266.265610333, - 226.729710159, - 224.907089411, - 172.00815785700001, - 170.841763735, - 152.421036138, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 63.3886767617, - 85.0703577293, - 152.25808913800003, - 232.06728081199998, - 229.857522727, - 277.21953144500003, - 276.286114656, - 269.88296576, - 263.584016227, - 244.95642575899998, - 232.53468593600002, - 215.65498269600002, - 171.59169243, - 170.476878971, - 151.899687987, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 63.5366435952, - 85.73380296379999, - 153.07314913800002, - 232.12146942799995, - 241.77749942799997, - 246.669359428, - 248.284772627, - 246.97845569400002, - 240.373997368, - 229.901889403, - 214.46608340199998, - 207.114032444, - 168.634719254, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 63.5575164019, - 81.1626185894, - 153.53443538700003, - 231.73240942799998, - 240.39310942799997, - 245.209889428, - 246.26693942799997, - 243.45749942799998, - 237.14703942799997, - 227.141839428, - 212.78095942799996, - 206.427992976, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.1606403238, - 86.4908288498, - 152.967567646, - 231.05687607200002, - 239.930439428, - 244.980257117, - 246.419868271, - 243.98226077799998, - 237.582760288, - 227.56581174000002, - 212.905455917, - 206.81844063999998, - 168.94659268, - 169.072930275, - 151.420703055, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 64.0594869676, - 69.3942565508, - 118.1059711435, - 183.152754178, - 240.42615942799998, - 245.295669428, - 246.26443942799997, - 243.638539428, - 237.150879428, - 221.75488942799998, - 199.67484942799996, - 206.427992976, - 150.775396235, - 115.34805707999999, - 115.35719230699999, - 80.1212197812, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 14.6882387988, - 75.2076569492, - 80.3885928609, - 140.72768956099998, - 137.094649561, - 163.171518716, - 178.463918716, - 178.584258716, - 171.374188716, - 159.047138716, - 122.78277310899999, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 21.5973523472, - 11.3183987988, - 62.591066903400005, - 61.620917251799995, - 114.90788791000001, - 119.98777784800001, - 186.656184398, - 180.309956645, - 189.524268716, - 179.607148716, - 164.88631871599998, - 123.36221345799999, - 97.9005165071, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.194454134, - 33.7228417669, - 33.9055215817, - 62.0983558869, - 87.6459498613, - 153.78395711800002, - 231.52333942799996, - 240.197609428, - 245.169769428, - 246.493829428, - 244.26313942799996, - 238.49607942799997, - 228.27404942799998, - 213.88450942799997, - 207.242362976, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.4071003996, - 33.4662546745, - 61.6644347284, - 86.90495086979999, - 152.869496897, - 230.402639428, - 238.78407942799996, - 244.19103942799998, - 245.99332942799998, - 244.16747942799998, - 238.45839942799998, - 228.64937942799997, - 214.17428942799998, - 207.431212976, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 61.0692464553, - 86.8347729769, - 139.412798432, - 205.30404942799998, - 202.58419942799998, - 227.99749942799997, - 234.859959428, - 232.059719428, - 224.30294942799998, - 218.22037942799997, - 206.966599428, - 206.571482976, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 61.0984343479, - 88.000816009, - 156.278473491, - 235.486549428, - 245.010189428, - 248.338949428, - 249.613829428, - 249.357719428, - 243.15498942799996, - 232.31458942799998, - 216.43569942799996, - 206.984372976, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 59.8517699823, - 70.327085302, - 120.12863838559998, - 186.049638716, - 242.992039428, - 246.97988942799998, - 247.208189428, - 244.030239428, - 238.46450942799999, - 229.54659942799998, - 215.455039428, - 203.58315512700003, - 150.775396235, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 21.5973523472, - 21.1638687988, - 84.09625960599999, - 96.7225708282, - 159.22080956099998, - 163.982639561, - 200.56164871599998, - 186.407898716, - 155.64161738599998, - 150.37223055600003, - 151.90098231599998, - 120.646965259, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 61.0298549706, - 87.6052969132, - 154.690187712, - 232.975649428, - 241.990679428, - 247.204869428, - 248.555129428, - 246.16845942799998, - 240.08791942799996, - 230.06842942799997, - 215.17755942799997, - 204.824035127, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.1785797869, - 33.3424234438, - 58.028736127200006, - 78.279393735, - 156.04157423400002, - 235.41783942799998, - 235.19183942799998, - 237.24539942799998, - 249.750959428, - 249.24291942799996, - 242.58904942799998, - 199.256069428, - 199.90617942799997, - 203.17426512699998, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.2521630321, - 58.042177290299996, - 89.2394074905, - 157.23230609300003, - 236.16980942799995, - 245.375899428, - 248.726819428, - 249.927869428, - 249.639959428, - 243.172539428, - 232.534549428, - 196.648649428, - 204.248705127, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 58.0257150158, - 80.00503823580001, - 147.16584901, - 211.579489428, - 217.73848942799998, - 228.064989428, - 201.30117942799995, - 227.902999428, - 216.22808942799998, - 202.17289942799997, - 204.97020942799998, - 203.001675127, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.9500601412, - 81.9974211548, - 146.446743534, - 217.925129428, - 224.370149428, - 232.56778942799997, - 227.56961942799998, - 225.911099428, - 217.218459428, - 210.58561942799997, - 202.519429428, - 203.001675127, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 56.1084519094, - 65.8739707272, - 111.11838645670001, - 174.902008716, - 234.88961942799997, - 237.291524009, - 239.002000044, - 258.96709615000003, - 252.74224895999998, - 232.01219021400001, - 215.43402158300003, - 206.29326045000002, - 151.285513646, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 18.549994497799997, - 22.0016387988, - 84.6490736895, - 86.4860908282, - 150.435675399, - 162.42258789000002, - 212.658438476, - 201.81653651300002, - 197.63704522, - 200.99674064100003, - 178.37681601100002, - 122.16730727800001, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 57.001491930300006, - 88.5084083999, - 155.846528587, - 232.86794681900003, - 240.72061945, - 229.485399428, - 246.695659428, - 244.559639428, - 231.083249428, - 228.73672942799996, - 205.33188942799998, - 205.461917194, - 168.77940147799998, - 168.94912337600002, - 151.31211313999998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 57.980951193799996, - 84.8457472648, - 147.221242539, - 218.629001152, - 241.01615942799998, - 245.60335942799998, - 236.79227942799997, - 245.05292942799997, - 238.86301942799997, - 228.705949428, - 214.874979428, - 205.57117512699998, - 168.489065812, - 168.51333617699999, - 150.902469304, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 54.64026585330001, - 89.5268164732, - 157.42452108799998, - 235.48992110799998, - 235.47182942799998, - 238.61090942799999, - 234.976159428, - 235.00010942799997, - 233.496579428, - 223.07695942799998, - 216.28564942799997, - 203.558505127, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 54.6522651167, - 89.996609359, - 158.19072913800002, - 236.91099942799997, - 245.270239428, - 248.870009428, - 249.748199428, - 247.31971942799998, - 241.05410942799998, - 230.970649428, - 212.193919428, - 201.718477277, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 53.7969248226, - 87.1419456858, - 157.15159927999997, - 235.14390942799997, - 243.11769942799998, - 246.88391942799998, - 246.48458942799996, - 242.88057942799998, - 237.73339942799998, - 221.574679428, - 211.211469428, - 202.653707277, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 53.5120818321, - 72.1357822177, - 116.13906359960001, - 186.830724791, - 243.27457942799998, - 247.760899428, - 248.50555942799997, - 246.061589428, - 239.62857942799997, - 229.747049428, - 215.76237942799997, - 203.022937277, - 150.775396235, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 15.871006648300002, - 68.67744104580001, - 79.2660339376, - 153.128079561, - 152.781699561, - 188.086408716, - 192.490818716, - 185.398918716, - 181.54126871600002, - 170.108008716, - 126.941929561, - 82.8349182551, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 70.5802090928, - 82.39150418280002, - 143.350764585, - 224.13923718099997, - 236.63988942799998, - 245.060589428, - 249.10148942799998, - 250.021199428, - 247.16810942799998, - 240.656269428, - 230.58179942799998, - 216.29783942799997, - 155.24320656499998, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.1137200688, - 82.8802911812, - 143.627160406, - 223.996831309, - 236.05573942799998, - 244.292709428, - 248.87162942799998, - 249.982829428, - 247.27223942799998, - 240.754279428, - 230.82607942799999, - 216.67142942799998, - 155.63881656499998, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.0562858942, - 83.0717459457, - 143.949229154, - 224.304881176, - 235.818949428, - 243.08051942799997, - 247.22165942799998, - 248.05650942799997, - 245.81473942799997, - 240.02306942799996, - 230.38495942799997, - 216.53637942799998, - 155.72582656499998, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.76560936519999, - 80.2912219564, - 144.43459250299998, - 224.84923269700002, - 236.86214942799998, - 245.18427942799997, - 249.272939428, - 249.97569942799998, - 247.24107942799998, - 240.45920942799998, - 230.39088942799998, - 216.47952942799998, - 155.63011656499998, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.74980254120001, - 80.31586904580001, - 143.99779658100002, - 223.514970005, - 234.16304942799997, - 241.62573942799997, - 245.084499428, - 246.92168942799998, - 245.123759428, - 239.621479428, - 230.40541942799996, - 216.91004942799998, - 156.05446656499998, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 69.9624117576, - 62.5211928384, - 109.4309073523, - 177.422058716, - 237.790659428, - 246.13676942799998, - 249.82544942799998, - 250.813859428, - 248.863369428, - 242.527369428, - 228.38130942799998, - 211.30550942799997, - 137.106406988, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 13.631298798800001, - 74.78951052859999, - 89.8468455384, - 155.150939561, - 163.21331956100002, - 201.782978716, - 202.516118716, - 199.77512871599998, - 193.528598716, - 183.526438716, - 134.279839561, - 85.76476825510001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.43221119629999, - 80.534782419, - 145.55771406, - 226.443439253, - 238.483339428, - 246.501139428, - 249.92033942799998, - 250.633859428, - 247.258959428, - 240.52271942799996, - 230.80742942799998, - 217.373389428, - 156.505336565, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.7159433771, - 79.88475229329998, - 140.444884554, - 214.873072607, - 233.504019428, - 238.90510942799997, - 237.99142942799998, - 238.264939428, - 236.737549428, - 226.907299428, - 230.10521942799997, - 216.77062942799998, - 152.796578716, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.3879845974, - 80.65360106380001, - 145.132872913, - 224.83137593299998, - 236.24298595800002, - 243.959789543, - 248.431849101, - 249.059836979, - 246.29821942799995, - 240.02015942799997, - 230.37158053499996, - 216.75462514199998, - 152.88780665299998, - 169.242880395, - 151.67589048099998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.2322218632, - 33.60771122, - 33.800378684900004, - 34.1789560652, - 34.3747106047, - 69.00169124979999, - 81.99469163559999, - 145.694039917, - 224.550831632, - 234.805219428, - 241.073669428, - 244.763779428, - 246.64778942799995, - 245.253429428, - 239.867489428, - 230.216499428, - 216.574739428, - 152.769188716, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 68.21642204620001, - 81.1389499349, - 145.410741746, - 218.353446071, - 226.37597942799997, - 240.79992942799998, - 238.98285942799998, - 238.63711942799998, - 234.91378942799997, - 232.784019428, - 228.94470942799998, - 210.25080942799997, - 151.093218716, - 168.489065812, - 150.808750933, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 66.8440449977, - 63.3308198436, - 109.7583088657, - 169.78048333900003, - 230.785159428, - 243.409659428, - 247.166079428, - 247.43301942799997, - 244.25738942799998, - 226.53393942799997, - 224.98619942799996, - 211.00977942799997, - 134.68789913800003, - 115.34805707999999, - 115.34805707999999, - 79.9553430496, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 14.143928798800001, - 74.9441756663, - 87.6089555353, - 151.590419561, - 160.271219561, - 200.277028716, - 201.244638716, - 192.261129945, - 192.039327609, - 182.393874509, - 132.726789561, - 81.8796604056, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.6264595813, - 80.9469880292, - 145.91811715300003, - 226.544529428, - 238.676983546, - 251.08992934100002, - 257.75363437, - 216.23348238, - 235.748508696, - 236.368900634, - 224.62777747, - 207.19918728100004, - 154.28626546499999, - 168.632610177, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.5429693398, - 81.0489714861, - 146.364710796, - 226.59867621200002, - 237.93984942799997, - 245.151749428, - 249.03806942799997, - 250.409449428, - 247.66238942799998, - 241.35525942799998, - 231.130879428, - 204.63270942799997, - 153.281008716, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.5439011054, - 81.19218284860001, - 145.92811697, - 225.312829428, - 235.74499942799997, - 244.54163106, - 253.57652506599996, - 256.998030589, - 253.466569394, - 250.307804221, - 237.10312573, - 218.689842455, - 154.16842411599998, - 168.583890605, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.4918707848, - 81.02924655150001, - 140.40666724099998, - 217.66102942799998, - 235.302024256, - 250.356664243, - 260.412406798, - 252.00652439199996, - 255.86542950600003, - 257.57594634599997, - 244.302290299, - 222.15126164499998, - 154.93885130200002, - 170.01510849299999, - 151.615747781, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 63.477519776099996, - 80.9145461287, - 147.555861781, - 228.82634942799996, - 241.096630038, - 260.614335821, - 279.16082357700003, - 287.826100331, - 284.00922907399996, - 270.515885651, - 253.513644919, - 233.918537953, - 159.126566426, - 169.595140774, - 151.139541776, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 62.392231850600005, - 63.182662440099996, - 111.1549164335, - 178.86599786, - 249.923024742, - 273.98893460700003, - 284.238509064, - 284.158388063, - 284.063729067, - 281.771377045, - 268.10783587599997, - 221.49038083800002, - 136.45942186799996, - 116.044688571, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 15.1452087988, - 77.7086408, - 92.8090898248, - 157.60776956100003, - 165.702339561, - 203.66982871599998, - 204.456218716, - 202.799628716, - 195.738308716, - 185.319838716, - 135.305749561, - 83.51086040560001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.4407085945, - 81.871298274, - 148.27741590999997, - 228.457548597, - 239.580599428, - 246.861649428, - 250.43224942799998, - 250.36052942799998, - 238.577619428, - 241.18252942799998, - 231.42957942799998, - 217.99456942799998, - 154.315118716, - 165.062747963, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.43753969810001, - 81.9872973375, - 147.292101857, - 221.60717879100002, - 228.823609428, - 241.43119942799999, - 245.73048942799997, - 247.33904942799998, - 245.406619428, - 239.94854942799998, - 230.33758942799997, - 217.25788942799997, - 153.970188716, - 165.062747963, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.3562861956, - 82.2327160203, - 147.80691131, - 217.72270942799997, - 231.38435942799998, - 245.14066942799997, - 249.621059428, - 250.69608942799996, - 248.107169428, - 241.815459428, - 232.02507942799997, - 218.13131942799998, - 154.312508716, - 165.062747963, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.3032653825, - 82.3991644458, - 148.845515157, - 229.346572344, - 240.90316942799998, - 248.39872942799997, - 251.68682942799998, - 252.604919428, - 250.486009428, - 243.61318942799997, - 218.04003942799997, - 218.10284942799998, - 154.302588716, - 165.062747963, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 60.6103889724, - 82.5015645176, - 149.078074339, - 229.60014942799998, - 241.05125942799998, - 249.081589428, - 251.829629428, - 252.531869428, - 249.74654942799998, - 242.94308942799998, - 232.50921942799997, - 218.20993942799998, - 154.512668716, - 165.062747963, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 59.1811872471, - 64.625653984, - 113.53913771340001, - 181.026528716, - 240.08097942799998, - 246.99327942799997, - 250.24188942799998, - 250.02873942799997, - 246.91414942799997, - 241.006118911, - 232.032122408, - 218.54835970599999, - 137.19492904600003, - 111.993546315, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 21.5973523472, - 15.227888798799999, - 77.25841308209999, - 90.6218608282, - 156.52121751399997, - 176.134968332, - 223.95833933100002, - 223.117649116, - 220.157772618, - 214.05023976200002, - 202.651482937, - 142.973074411, - 85.0009487808, - 28.4499880461, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 60.012407788800004, - 82.0939927326, - 148.18850697499997, - 227.70151942799998, - 239.288077421, - 250.57088633, - 254.735318938, - 255.589043628, - 252.99883681699998, - 246.304659448, - 235.825235372, - 220.14958850099998, - 155.79986062900002, - 165.73295948799998, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 60.308516406, - 82.19827423989999, - 148.98296448099998, - 228.92246942799997, - 239.530259428, - 248.605908976, - 257.24138475099994, - 255.778577224, - 252.73571673100002, - 246.178919767, - 235.974109584, - 221.990823456, - 157.094293242, - 165.94027216900002, - 150.895940876, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 60.1719545604, - 77.49707563470001, - 148.821245398, - 216.15367942799998, - 240.27224942799998, - 205.89491942799998, - 224.99708942799998, - 254.91293345699998, - 270.25958563399996, - 265.781811182, - 268.69971213400004, - 257.47850198599997, - 195.78843733500003, - 198.018011367, - 171.932761304, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.6326017304, - 82.4102079016, - 149.133899138, - 219.374135715, - 259.065627319, - 277.270925685, - 288.512637788, - 285.366961877, - 288.356529171, - 259.09280485200003, - 244.340633355, - 236.98229650400003, - 170.652035353, - 174.865144519, - 152.22057897000002, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.9689370248, - 77.3046024499, - 148.81294913800002, - 229.72853657500002, - 221.115816104, - 226.735914213, - 241.846956752, - 240.56869875700002, - 241.07255317000002, - 235.231093607, - 237.062341124, - 222.283754256, - 160.436578452, - 167.277039323, - 151.573968991, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 55.532393595900004, - 64.3425693677, - 114.9314041716, - 182.941008716, - 242.197029428, - 249.49334041900002, - 253.06922359600003, - 253.70665119500003, - 250.557965217, - 243.75172859600002, - 233.808807159, - 219.84868778400002, - 138.294368951, - 111.972841031, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 18.2799044978, - 16.6157587988, - 78.7597656058, - 92.07931528200001, - 154.83496956099998, - 160.442839561, - 198.48591871600001, - 199.713520529, - 198.128968925, - 192.56541616700002, - 183.46298169, - 134.477792386, - 84.28829040560001, - 28.4499880461, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.8943350041, - 82.56898047170002, - 149.07030765099998, - 228.341489428, - 238.06853942799998, - 246.394493072, - 256.08738273299997, - 257.98204976600005, - 255.98967464400002, - 251.964732593, - 243.24679662100002, - 230.640312184, - 163.840180262, - 163.13113847999998, - 151.564485868, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.895779064699994, - 82.4187820215, - 149.03207712799997, - 227.84770942799997, - 236.834959428, - 242.527479428, - 245.80689942799998, - 247.228789428, - 245.514839428, - 239.83893942799997, - 230.663309428, - 217.880259428, - 155.245378716, - 161.63643011300002, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 57.193419216900004, - 82.5468656264, - 149.150550346, - 228.12952942799998, - 231.12895942799997, - 236.672746224, - 247.738024547, - 247.97565903499998, - 245.506759775, - 239.58520899099997, - 230.460960828, - 212.763452928, - 155.18740057000002, - 161.638727569, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 57.1698047047, - 82.7123238136, - 149.38544211299998, - 228.55744942799998, - 237.86875942799998, - 243.809736812, - 247.96174837900003, - 248.988059393, - 245.40021551200002, - 239.852812702, - 231.482164219, - 219.14732540200004, - 156.12937729, - 162.36046872499998, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.8746537333, - 82.84970444759999, - 148.530300963, - 227.26139942799998, - 236.89713942799997, - 244.204229428, - 246.91921942799996, - 246.047019428, - 242.168669428, - 235.76285942799998, - 228.13601942799997, - 216.74233942799998, - 155.092518716, - 161.63643011300002, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 56.0247416906, - 65.2334866996, - 114.0898186309, - 179.58671366200002, - 236.77317942799996, - 242.52001942799998, - 245.11258942799998, - 245.25065942799998, - 242.87391942799997, - 237.63444942799998, - 229.14403942799999, - 217.22612942799998, - 137.58108913800004, - 108.495421381, - 115.392130624, - 80.1688104385, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 15.0190266483, - 16.6984587988, - 79.34105784229999, - 90.9274450543, - 153.163901069, - 160.50316801, - 199.27278834700002, - 199.821917123, - 197.237936357, - 191.115098716, - 181.649808716, - 134.055519561, - 84.6451365757, - 25.0236701967, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 55.214467464200006, - 84.5646780826, - 150.889083229, - 229.83606793899997, - 239.168723265, - 245.849989922, - 249.47624409499997, - 249.34805594199997, - 247.17919942799998, - 240.94981942799998, - 231.61770942799998, - 218.81979942799995, - 156.077091449, - 161.993373463, - 151.23928744699998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 55.3832138979, - 83.3214001006, - 150.64764744599998, - 227.951258324, - 238.51418942799998, - 238.01666942799997, - 221.54275942799995, - 226.323689428, - 228.70579942799998, - 207.781049428, - 206.853929428, - 202.97652942799996, - 149.688048716, - 161.63643011300002, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 53.9600285541, - 83.1683246683, - 145.688792424, - 216.81711942799998, - 220.99963942799997, - 208.411789428, - 228.020689428, - 237.49355942799997, - 233.27982942799997, - 218.02239942799997, - 221.27764942799996, - 211.620709428, - 155.79826871600002, - 161.63643011300002, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 54.033320430299995, - 83.5038280893, - 150.530390609, - 229.576756545, - 239.617039428, - 246.56247942799996, - 250.361629428, - 250.84612942799998, - 221.68032942799996, - 229.109339428, - 209.883809428, - 204.07293942799998, - 149.257958716, - 161.63643011300002, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 54.193731748, - 83.92582535239998, - 151.165737726, - 230.237109428, - 239.92581942799998, - 246.58658942799997, - 249.72547942799997, - 249.181049428, - 245.873119428, - 239.39239942799998, - 230.42611942799996, - 217.648289428, - 155.79815871600002, - 161.63643011300002, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 52.83817409070001, - 66.3773447168, - 115.24050882629999, - 181.343705912, - 239.35351942799997, - 246.31200942799998, - 248.85802942799998, - 247.72640942799995, - 243.93245942799996, - 237.46670942799997, - 229.007339428, - 217.435920059, - 138.45739623600002, - 108.91066667199999, - 115.77113264900001, - 80.47840571260001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 15.485966648300002, - 17.9675987988, - 80.693277599, - 92.8861223978, - 154.882916544, - 160.642534854, - 198.208858716, - 197.25665871599998, - 194.491158716, - 189.035668716, - 180.718798716, - 133.062679561, - 84.55450040560001, - 21.5973523472, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 54.38703122850001, - 84.4325531253, - 150.504016623, - 227.881664546, - 236.801525945, - 243.62584054900003, - 247.25970078499998, - 247.72744942799997, - 245.263329428, - 239.05568942799997, - 229.652169428, - 218.32006942799998, - 156.200712767, - 158.33658941899998, - 150.978757199, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 51.286952625199994, - 84.21860700730001, - 151.082888641, - 229.65766518, - 238.86308942799997, - 244.96928942799997, - 247.22560346199998, - 248.243791801, - 247.97800699900003, - 248.987922639, - 242.619279787, - 229.927102689, - 161.66842733, - 158.601014037, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 50.9111780358, - 83.9685014326, - 150.37999333399998, - 228.73693942799997, - 237.54177942799998, - 243.36666942799997, - 245.577709428, - 244.55885942799998, - 244.07546121000001, - 242.37407030000003, - 233.819980385, - 221.3126759, - 156.328864414, - 158.244194051, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 50.70563842749999, - 83.73663492719999, - 149.895545117, - 228.12896942799998, - 236.91792942799998, - 242.94207942799997, - 245.33705942799998, - 244.97661942799996, - 241.637779428, - 236.483509428, - 228.11059942799997, - 216.454589428, - 155.676708716, - 158.210112264, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 50.720432230700006, - 83.92756348759998, - 149.485038958, - 226.58125942799998, - 234.93327942799996, - 241.54949942799996, - 245.08574942799999, - 245.797429428, - 243.37032942799996, - 237.917199428, - 229.09534942799996, - 217.04313942799996, - 155.911958716, - 158.32811226400003, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 49.6489191292, - 66.5767684835, - 115.1725080478, - 179.26081871600002, - 233.068999428, - 240.36564942799998, - 241.079319428, - 248.914729428, - 246.03112942799999, - 231.55072942799998, - 226.60359942799997, - 215.250099428, - 137.699699138, - 105.28864353099999, - 115.34805707999999, - 79.9415925372, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 12.6229387988, - 18.9734187988, - 77.8120178607, - 89.90397647089999, - 154.98941956099998, - 161.217229561, - 200.48966871599998, - 167.131678716, - 171.097928716, - 193.051798716, - 183.64663871599998, - 128.095159561, - 85.8296904056, - 21.7243623472, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 51.9819339479, - 85.8689844836, - 151.884334377, - 213.95134157700002, - 240.32683942799997, - 247.20157942799997, - 250.88147942799998, - 245.00076942799998, - 220.47282942799998, - 201.447499428, - 225.98202942799998, - 212.163969428, - 157.008998716, - 158.60622226400002, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 51.3553022095, - 84.8613099748, - 152.00492079499998, - 230.823159428, - 227.86054942799998, - 246.60361942799997, - 249.44561942799996, - 249.140119428, - 231.184339428, - 231.35465942799996, - 229.86210942799997, - 217.382889428, - 156.120398716, - 158.369152264, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 51.3785006977, - 84.8168968403, - 150.23952731800003, - 227.915409428, - 236.88504942799997, - 243.28486942799998, - 247.00094942799998, - 247.49624649900002, - 245.59103723899997, - 241.34372945900003, - 232.147716673, - 219.528456315, - 158.54789535, - 158.38799226400002, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 51.7383614866, - 85.58977825669999, - 150.893864684, - 228.851689428, - 238.229419428, - 245.19514942799998, - 253.014935314, - 259.425135013, - 257.623906251, - 252.017860404, - 242.706834469, - 229.506140294, - 162.784496598, - 159.45415752699998, - 150.791728013, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 51.3603945988, - 85.087841344, - 150.967459996, - 229.10864942799998, - 238.45899942799997, - 246.792641042, - 260.653868079, - 265.723752306, - 263.222474652, - 259.020540605, - 249.70897854300003, - 236.27890085699997, - 171.013820476, - 161.85811682, - 151.38688413900002, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 49.7350698924, - 67.2095292564, - 116.0059778982, - 181.728988716, - 239.207459428, - 246.42265942799997, - 249.989443196, - 261.935373041, - 268.803021338, - 264.43520248, - 255.12019477399997, - 241.721754924, - 153.82558281099998, - 104.52097948299999, - 115.584317649, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 12.551588798800001, - 19.2269687988, - 82.62531907729999, - 95.81293168570001, - 158.234009561, - 164.214369561, - 202.721018716, - 202.478418716, - 199.119171639, - 193.41828128699999, - 184.309467863, - 135.991802394, - 86.61701040560001, - 18.9456644978, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 51.3264179058, - 85.34562734289999, - 152.329076286, - 230.938309428, - 240.18135942799998, - 246.57391942799998, - 249.99392942799997, - 251.89603599499998, - 252.92846674799998, - 247.42595661399997, - 238.366259617, - 225.671842219, - 164.420576222, - 156.291785927, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 51.5851861325, - 85.71609799390001, - 152.059140338, - 230.849909428, - 240.61871942799996, - 247.321879428, - 250.760909428, - 244.82294431900002, - 209.35486912000002, - 233.49251359599998, - 235.377717366, - 220.613144344, - 157.466413783, - 155.476114809, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 51.3634975468, - 85.2555748883, - 151.49869913800003, - 229.89148942799997, - 239.13252942799997, - 245.50172942799998, - 249.044589428, - 249.50559661999998, - 248.900460062, - 243.584534967, - 227.282967975, - 217.106808135, - 156.38711254000003, - 155.30223583, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 51.314760714900004, - 85.24631853359999, - 151.46851315900003, - 230.30860942799995, - 240.179689428, - 247.13971942799998, - 250.81204942799997, - 251.29268942799996, - 248.02825942799998, - 243.581185062, - 234.727267129, - 221.708859175, - 157.76520456400002, - 155.778694414, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 51.10426650189999, - 85.04575109559998, - 151.984898147, - 230.33436942799997, - 238.89147942799997, - 244.08066942799996, - 246.52412942799998, - 246.350729428, - 244.061769428, - 238.512799042, - 230.11845013900003, - 218.273864729, - 157.345298716, - 155.94016441399998, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 50.168172168800005, - 67.5621999894, - 116.8967132402, - 182.197426134, - 239.34731496400002, - 245.085961202, - 247.57622942799998, - 247.03709942799998, - 243.62619942799998, - 237.28892942799996, - 229.30115942799998, - 218.19413942799997, - 139.663389138, - 102.77306568200001, - 115.355332177, - 80.138469693, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 12.6168387988, - 18.8145287988, - 81.26824500400001, - 92.7641441966, - 154.39419058000001, - 159.74135956100002, - 197.283218716, - 196.260518716, - 192.677228716, - 188.334968716, - 181.198508716, - 134.271479561, - 86.3370404056, - 19.2480344978, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 51.73659306999999, - 85.09247036309999, - 150.792560261, - 227.842739428, - 236.72138942799998, - 243.13469942799998, - 246.68063942799995, - 247.287899428, - 244.76813942799998, - 239.05865942799997, - 230.396919428, - 218.35528942799996, - 157.297798716, - 155.987094414, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 51.4342724193, - 84.99568259050001, - 151.205520935, - 228.35131942799998, - 236.49957942799998, - 242.13891666299997, - 247.505963367, - 253.11963726800002, - 253.486369444, - 248.930336094, - 241.14763384, - 229.229933562, - 167.88159073699998, - 158.166777689, - 150.810815219, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 51.1063584972, - 84.6251929628, - 150.31777913800002, - 227.670599428, - 236.27315942799999, - 244.316513797, - 255.82519675799998, - 260.585966677, - 258.258651047, - 252.84911879700005, - 244.329654017, - 232.30401398200001, - 169.24599829, - 157.953283835, - 150.931600333, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.9250044176, - 84.78435273209999, - 146.90896285, - 229.488169428, - 238.75706942799997, - 235.132149428, - 248.51457942799996, - 248.57191942799997, - 245.812899428, - 243.109343089, - 237.05551296699997, - 224.79582627399998, - 160.87063543800002, - 156.42800753300003, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 51.322902290900004, - 85.2247853116, - 152.005012637, - 230.465839428, - 239.836689428, - 246.36419942799998, - 249.77324942799999, - 250.05750942799997, - 247.41593942799997, - 241.427449428, - 232.32396942799997, - 219.84046942799998, - 158.234618716, - 156.534154414, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 50.7368776258, - 68.2126644974, - 116.7913163564, - 182.195418716, - 239.82835942799997, - 246.631869428, - 249.86323942799999, - 250.11448942799998, - 247.15286942799997, - 241.081779428, - 232.11022942799997, - 219.560209428, - 140.422509138, - 99.84662783259999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 13.1689587988, - 19.505928798800003, - 80.90470275140001, - 92.2083552715, - 153.766539561, - 160.001009561, - 198.71006412799997, - 216.020419622, - 211.703477984, - 198.266171809, - 189.981276198, - 136.628501973, - 87.15307426679999, - 16.5335166483, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 12.8471887988, - 19.0737187988, - 80.1571320129, - 91.8204317235, - 171.044559237, - 180.083710793, - 214.10140183899998, - 215.337881353, - 214.93586040199997, - 210.01558254600002, - 201.633762271, - 151.45336695799998, - 96.6015416743, - 16.3873966483, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 50.994599547199996, - 84.92648040560002, - 150.54976913800002, - 228.484720458, - 250.315452636, - 279.612662497, - 300.540939723, - 309.416831334, - 297.520508286, - 295.291239114, - 279.128060381, - 259.521947569, - 192.584620922, - 180.52399473000003, - 168.73154143, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.284314034400005, - 84.54119040560002, - 151.392185961, - 257.26236188499996, - 274.46780305000004, - 286.58546152900004, - 292.821741354, - 294.83837470899994, - 293.057162398, - 286.65736393699996, - 276.155171133, - 260.056120541, - 191.77082921800002, - 178.75186625799998, - 166.82110053099998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.2603340344, - 84.44906040560001, - 146.25207913800003, - 213.855769428, - 234.533786553, - 250.167692345, - 251.789472184, - 247.689467819, - 232.704065165, - 253.81654187499998, - 237.34456570499998, - 244.40840928599997, - 177.53547945399998, - 162.369625581, - 151.862205698, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.3107813978, - 84.6430098394, - 150.06357913800002, - 228.25339942799997, - 236.36730942799997, - 242.08180942799996, - 245.96464942799997, - 242.238559428, - 230.65026942799997, - 232.469402943, - 226.95711880200002, - 213.63667401899997, - 155.692779671, - 152.720966565, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 50.505972087100005, - 66.85784952040001, - 111.1152415667, - 163.122408716, - 228.09496942799996, - 233.922249428, - 239.49399942799997, - 239.24323942799998, - 236.95336942799997, - 216.69271942799998, - 214.467649428, - 209.33763942799996, - 135.65319913800002, - 99.89477783259998, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 13.037758798799999, - 19.0782287988, - 79.5651489945, - 90.57901441450001, - 152.334829561, - 157.835569561, - 195.010998716, - 193.81232871600002, - 191.025708716, - 186.645488716, - 179.533698716, - 133.222129561, - 86.75341040560001, - 16.924256648300002, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.3268850392, - 84.7349293869, - 150.13433100400002, - 227.241109428, - 235.75164942799995, - 241.90315942799998, - 245.33372942799997, - 246.043599428, - 243.751089428, - 238.33008942799998, - 229.98526942799998, - 218.73078942799998, - 158.226718716, - 153.890896565, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.192820823, - 82.01971703680002, - 142.28364159699998, - 205.51043942799998, - 207.626519428, - 235.01978942799997, - 230.043319428, - 246.782849428, - 244.94341942799997, - 230.34752942799997, - 230.95344942799997, - 218.85157942799998, - 158.270068716, - 153.13109656499998, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.7869636396, - 85.21617398160001, - 151.263929733, - 229.39921942799998, - 238.74177942799997, - 245.266579428, - 248.87673942799998, - 249.386983041, - 246.997307833, - 241.742700913, - 232.91418580699997, - 220.716252987, - 158.88878889, - 154.056536565, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.3129415735, - 85.4275186922, - 152.731627983, - 231.50940942799997, - 241.38975942799996, - 248.11596942799997, - 252.56341731600003, - 256.886079953, - 256.73690862899997, - 252.14068987800002, - 242.95008794799998, - 230.47414875700002, - 168.031758145, - 155.658685133, - 150.817551839, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.239189130899994, - 85.51939915759999, - 153.24930903799998, - 232.183573499, - 241.81878942799997, - 248.303619428, - 250.95572942799998, - 248.36479942799997, - 247.916629428, - 241.87163942799998, - 232.93446942799997, - 220.72907942799998, - 159.33926871600002, - 154.585486565, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 49.8832650121, - 67.3768809365, - 116.3566855645, - 181.819318716, - 238.53248942799996, - 244.07188942799996, - 246.74879942799998, - 246.320629428, - 244.792259566, - 239.918135699, - 232.123084831, - 221.610350009, - 140.924289138, - 101.22005783259999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 12.847648798800002, - 18.904488798800003, - 80.5411693085, - 92.1847617411, - 153.804369561, - 159.20362956099999, - 197.01904871600001, - 196.79258871599998, - 194.511238716, - 189.78765871599998, - 182.070238716, - 135.646059561, - 87.9122904056, - 17.7120366483, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.0935190678, - 84.59672483029999, - 150.45200698399998, - 228.16540942799998, - 237.14551942799997, - 243.65010942799998, - 247.272105801, - 248.00860707500001, - 247.27979656700003, - 243.14354168300002, - 234.576760938, - 222.923447001, - 159.424096048, - 154.509329169, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.038741396, - 85.0919053452, - 151.153809138, - 230.02718942799999, - 237.827559428, - 244.179239428, - 249.343676268, - 249.79757852400002, - 248.54834537300002, - 246.00788609699998, - 237.797258508, - 225.78004080099998, - 161.548127287, - 154.646982167, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.22468810589999, - 84.8175505661, - 151.52355913800002, - 229.68683942799998, - 238.786019428, - 245.235019428, - 248.807748156, - 252.254772283, - 251.050253445, - 247.36601893300002, - 240.76015944999997, - 228.719512435, - 164.308238738, - 151.73502709899998, - 150.85270266700002, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.1412789993, - 84.81849796370001, - 151.166789138, - 228.867269428, - 236.893519428, - 241.81918942799996, - 243.49483942799998, - 243.32366014800002, - 242.01094195199997, - 237.93723894299998, - 230.310221207, - 219.37089139799997, - 158.80072871599998, - 150.90495871599998, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.197482889199996, - 84.5731988873, - 150.36792913800002, - 227.41162942799997, - 236.16453942799998, - 242.42383942799995, - 246.472876009, - 250.46376483, - 250.824523153, - 248.02679070899998, - 239.683533708, - 228.56798494100002, - 167.338040882, - 155.287074506, - 151.034739169, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 49.680412423199996, - 66.6375713891, - 115.1840599831, - 180.440808716, - 237.82918167399998, - 250.188816973, - 262.356437493, - 270.81970280400003, - 269.989894761, - 264.208346594, - 255.57053490599998, - 243.12368244699996, - 156.520055754, - 101.1102057223, - 115.63158102499999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 13.0586087988, - 18.829438798800002, - 79.87778082819999, - 91.7208308282, - 153.38697956099998, - 158.80642956100002, - 198.36248284700002, - 201.98276343700002, - 203.36052989600003, - 201.854743199, - 193.894452379, - 137.838957652, - 88.20620874379999, - 14.3978787988, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.1982548603, - 84.54187937619999, - 150.69920913800004, - 228.45991942799998, - 236.68973942799997, - 241.63757942799998, - 246.028518184, - 248.23225882499997, - 246.42222789, - 241.90199614, - 234.02211880599998, - 222.989661683, - 159.563813992, - 151.431093908, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.6532804576, - 84.8968763048, - 150.16137913800003, - 227.379739428, - 236.34076035299998, - 246.00248493099997, - 250.542575904, - 258.760029098, - 259.89206374500003, - 254.383033817, - 246.191638775, - 234.72703962399999, - 173.20763270100002, - 156.58510492899998, - 151.363440978, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.229886543, - 84.53580156200002, - 150.02436913800003, - 227.47835942799998, - 235.76978942799997, - 241.98361165000003, - 250.957626618, - 256.83792846999995, - 256.61639562799996, - 251.402803121, - 243.05662208, - 231.583909067, - 170.76826737500002, - 154.82560881400002, - 151.080756455, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.16254367770001, - 84.35288869950001, - 150.31046913800003, - 227.91673942799997, - 236.64821942799998, - 246.17700520700004, - 258.462866469, - 259.844836376, - 260.290357487, - 256.676310845, - 248.08275134500002, - 235.94770841099998, - 172.02117235, - 153.890317549, - 151.183617123, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 50.7188740344, - 83.97938040560001, - 150.000589138, - 227.483029428, - 235.95243260799998, - 245.867442831, - 258.528775085, - 267.160202062, - 269.180432531, - 265.836599875, - 256.585242769, - 244.57292488699997, - 179.474430533, - 161.735248754, - 151.965881156, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 49.4301520293, - 66.2139008282, - 114.39815998310002, - 178.96817871599998, - 236.445617879, - 264.414706984, - 276.26427393, - 275.342793528, - 274.639471783, - 271.503996023, - 263.845061673, - 251.531476951, - 159.979163595, - 101.1970957412, - 115.770391238, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 12.8722487988, - 18.0369587988, - 76.7395108282, - 87.4238808282, - 151.721319561, - 157.67455956100002, - 195.837088716, - 196.970464382, - 192.778745514, - 191.38780682200002, - 184.14004794700003, - 134.121450001, - 87.72246952789999, - 14.2346387988, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 50.9615878153, - 84.0062218258, - 148.158159138, - 224.96878942799998, - 233.475309428, - 242.76067587499995, - 251.86981812599998, - 258.3336711, - 264.758246916, - 263.96253094400004, - 255.060615257, - 242.390298814, - 173.67154505599999, - 154.32071852899998, - 151.327943899, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 50.9452524508, - 83.78242665049999, - 148.83401913800003, - 225.32866942799996, - 233.59791942799998, - 239.903323764, - 253.60909575199997, - 260.636303255, - 258.363539414, - 238.78659178700002, - 228.46930013699998, - 234.181650619, - 170.68425926999998, - 152.17494640400002, - 151.00708229, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 50.9203231366, - 83.8559575219, - 148.99669913800003, - 226.33719942799996, - 234.729749428, - 242.20355993, - 251.42890706900002, - 259.019632651, - 260.37471013799995, - 255.28297311900002, - 246.84015644700003, - 235.06804806500003, - 170.476935237, - 153.01327689299998, - 151.256145403, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 51.13007211909999, - 84.14773330290001, - 150.24382913800002, - 239.663161727, - 264.924661448, - 281.249465074, - 291.550264607, - 298.683142666, - 297.867616257, - 290.37895820800003, - 278.064961456, - 262.435795183, - 193.292218702, - 177.157011821, - 168.608823255, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 26.2544522017, - 50.9479840344, - 84.23040040560001, - 150.80891926100003, - 240.48091778, - 258.182128207, - 269.671409203, - 278.17609128299995, - 284.89719936200004, - 290.15054272200007, - 289.613595248, - 279.716899259, - 262.947237772, - 194.464244761, - 174.872158963, - 165.668991833, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 49.4597975705, - 65.9841208282, - 114.4417248046, - 190.161646816, - 262.192895169, - 280.34071803, - 290.336274328, - 296.039042589, - 295.671282488, - 292.00512390899996, - 283.37453958200007, - 267.250633349, - 173.24876887999997, - 115.965794462, - 120.306294849, - 80.0698222023, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 12.3779387988, - 17.7880587988, - 79.5950208282, - 91.7363208282, - 153.360099561, - 158.661659561, - 197.400438716, - 198.127318716, - 196.054438716, - 191.248848716, - 183.40532871599999, - 136.954219561, - 88.9498104056, - 14.906028798800001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.5193406074, - 83.6135326716, - 150.54260913800002, - 228.84500942799997, - 237.71158942799997, - 243.73786942799998, - 247.24895942799998, - 249.628716011, - 249.850928518, - 249.78151201900002, - 244.062343909, - 232.43957513600003, - 170.848667081, - 161.80090664600002, - 154.363492149, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.4291275843, - 83.61708914339998, - 150.38867913800001, - 228.24296942799998, - 242.545917101, - 260.24178134600004, - 266.991932488, - 272.209243563, - 273.912571777, - 272.906354514, - 265.201409747, - 252.64017375, - 186.40602452599998, - 169.180249641, - 160.18981846, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 12.3344487988, - 17.7057887988, - 78.76206082819999, - 89.8557308282, - 150.057579561, - 155.710299561, - 186.104008716, - 195.44098871600002, - 191.922528716, - 187.317318716, - 179.846038716, - 134.967079561, - 87.8757504056, - 14.198038798799999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.7033840344, - 83.51644040560001, - 148.208519138, - 225.168229428, - 233.32700942799997, - 239.179329428, - 244.72127987599998, - 251.121113624, - 247.65648156700001, - 251.01603749699999, - 243.328763367, - 232.101014263, - 171.378893468, - 159.29917992599997, - 151.86065946, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 51.1541440344, - 84.3618804056, - 147.93403913800003, - 224.88243942799997, - 233.15776942799997, - 239.18783942799996, - 242.786469428, - 238.299329791, - 240.924100637, - 244.294814126, - 237.083505777, - 226.345829809, - 166.060823892, - 157.661011202, - 152.202488214, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 49.4144220293, - 65.6946608282, - 113.3750099831, - 178.41721871599998, - 235.47621942799998, - 241.95426942799998, - 252.61053682399998, - 271.49427770799997, - 281.85377422600004, - 278.535897406, - 269.318127036, - 256.478695698, - 164.411957237, - 107.989512838, - 116.39220425100001, - 79.9769903236, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 12.4003387988, - 17.3585687988, - 78.3781708282, - 90.7191808282, - 152.974659561, - 159.437349561, - 201.591318908, - 206.502873062, - 214.468739951, - 219.50816826300002, - 212.92692912500002, - 164.19775739099998, - 104.5304022606, - 14.7159187988, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.5272240344, - 83.28125040560002, - 151.183401079, - 258.316085275, - 272.1553947, - 283.466189734, - 293.22072942600005, - 299.375452587, - 301.686197453, - 298.769424085, - 286.59564381999996, - 269.77130502399996, - 199.32809372999998, - 179.62073431, - 171.210388531, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.6772340344, - 82.22552040560001, - 150.73955345500002, - 238.728375321, - 273.341995726, - 286.366201945, - 286.59320299399997, - 292.89047754999996, - 293.83468345200004, - 284.372294618, - 291.52311339900007, - 279.10919038000003, - 208.981164198, - 190.481060774, - 179.807210874, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.8294240344, - 83.80015040560001, - 153.168134017, - 262.977483237, - 283.95774618300004, - 300.043202867, - 306.034038065, - 308.06135966700003, - 306.591874646, - 301.069954521, - 288.28326569899997, - 270.341943528, - 200.783490457, - 181.765171176, - 171.283026297, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.29334403440001, - 83.08513040560001, - 149.43386913800003, - 242.75308958700003, - 272.802222413, - 292.818105652, - 302.28443197400003, - 306.85985431800003, - 307.01626110800004, - 299.41730524699994, - 286.03085472500004, - 267.54065319, - 197.886285564, - 178.09520998099998, - 167.839345221, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.2050840344, - 82.81207040560001, - 149.229429138, - 227.529122764, - 241.349032252, - 261.587288494, - 276.106463029, - 279.94520756900005, - 279.85121021500004, - 275.618244591, - 266.536542445, - 253.358941891, - 186.695965057, - 169.084052262, - 157.498943054, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 48.413852029299996, - 64.0094008282, - 109.9660499831, - 171.10222871599998, - 226.602413909, - 229.32311476, - 249.35486039100002, - 256.707277418, - 262.379780359, - 269.809877282, - 262.469186876, - 252.32862363200002, - 165.22503594699998, - 110.75941278, - 117.925389548, - 79.98958878010001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 11.8310787988, - 16.8402087988, - 76.78892082819999, - 88.19315082819999, - 149.812959561, - 156.195939561, - 200.29313000999997, - 214.695225888, - 217.912290123, - 216.3165948, - 208.92204242100001, - 154.109787012, - 95.613218999, - 13.874688798800001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.285054034400005, - 82.56840040560002, - 148.06195913800002, - 225.898789428, - 234.744879428, - 247.936587723, - 262.616509682, - 271.716021174, - 274.599016104, - 273.326771776, - 263.898581881, - 251.00364359800002, - 185.416712579, - 168.824375189, - 159.963594889, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.152644034400005, - 82.6305804056, - 148.839569138, - 227.00474942799997, - 243.539125157, - 262.05300099, - 271.53441019699994, - 277.023998215, - 278.519507103, - 276.635984272, - 269.697297519, - 257.551967384, - 189.715949243, - 172.36643837300002, - 165.776130203, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.11388403440001, - 82.6045004056, - 148.98353913800003, - 227.325859428, - 236.42632942799997, - 242.871039428, - 252.304870607, - 260.28015307100003, - 259.532812256, - 255.33726901499998, - 248.444854515, - 237.036839803, - 175.719463464, - 168.195043545, - 156.431284627, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 29.6807700512, - 50.0692840344, - 82.48658040560001, - 148.71410913800003, - 226.964429428, - 236.05617942799998, - 246.92564387000002, - 260.759464251, - 272.30714696200005, - 278.50146840300005, - 276.799263614, - 268.544796982, - 255.971262613, - 191.207550579, - 178.41732656399998, - 167.429539322, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 50.0675440344, - 82.40904040560001, - 148.85090913800002, - 229.907909631, - 265.270362197, - 290.14844208, - 300.29048602700004, - 305.15336401900004, - 305.000191893, - 301.43071935200004, - 288.432855512, - 271.18962167, - 199.48245734, - 182.145861244, - 170.68963433899998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 48.8807420293, - 64.79859082819999, - 112.98088998310001, - 178.400928716, - 246.08004676999997, - 273.7659737, - 287.512579863, - 289.964267122, - 286.85998867599994, - 284.74854792699995, - 277.027666184, - 261.348038622, - 168.939371816, - 118.04228909999999, - 122.21843333400001, - 80.18843100389999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 12.243148798800002, - 16.6262387988, - 76.7762308282, - 88.3605008282, - 150.552695892, - 161.881086704, - 215.286235204, - 220.91253774, - 219.255015339, - 215.56495779200003, - 208.358008576, - 158.358366243, - 99.5831423071, - 15.2810466483, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 49.2751940344, - 77.19351040560001, - 134.060659138, - 202.320559566, - 218.43815672, - 270.95986432499996, - 281.150942801, - 298.787676724, - 259.79973828900006, - 273.63708189, - 264.97190629700003, - 247.007535837, - 195.397879177, - 182.02214550300002, - 171.613422552, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 50.1471240344, - 82.3362704056, - 147.24497913800002, - 244.335182234, - 274.243430966, - 292.71871727, - 300.47738574, - 303.5542984, - 303.7764528910001, - 305.294799763, - 289.358943527, - 267.310273231, - 194.859218806, - 181.42476757800003, - 171.492411004, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 50.008594034400005, - 82.05566040560001, - 147.81406913800004, - 225.875979428, - 239.944152358, - 260.938930115, - 273.27771765, - 281.642570614, - 285.03465154099996, - 281.347418475, - 273.549606328, - 261.728333855, - 196.09204008600003, - 181.49938752600002, - 172.159764422, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 50.0021940344, - 82.0534804056, - 147.82657913800003, - 227.733732358, - 253.69487228100002, - 279.755296634, - 289.180741645, - 295.040319044, - 295.290977455, - 289.259128485, - 281.07113815699995, - 266.024888546, - 195.96749715099998, - 181.79894900599996, - 171.138305608, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 50.040114034400005, - 82.0732904056, - 147.44476913800003, - 225.23592942799996, - 237.989530795, - 263.309328407, - 277.995902698, - 283.132361344, - 283.14221569700004, - 278.561307495, - 269.855249847, - 256.658451946, - 188.30900735799997, - 174.61426594600002, - 166.76309449099998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 48.816672029299994, - 64.47073082819999, - 112.1987099831, - 177.286928716, - 237.91208351100002, - 251.41876947699998, - 259.214486239, - 264.356771452, - 266.18867848799994, - 264.06887175500003, - 257.835124758, - 246.584232016, - 163.278190699, - 117.454688927, - 130.113434233, - 85.30424118020001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 11.9996187988, - 16.3029187988, - 76.7722308282, - 91.9284985046, - 178.780023589, - 196.739780684, - 239.378861134, - 240.67957350599997, - 239.292335627, - 234.980408698, - 228.177539716, - 173.512824709, - 112.64446102800001, - 16.4859766483, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 49.9500940344, - 82.08870040560001, - 147.58013913800002, - 225.92339019699997, - 251.35738066599998, - 276.504149146, - 290.19204679800004, - 296.986700519, - 297.43536526099996, - 294.547263578, - 283.41231358, - 266.115587829, - 194.908257108, - 180.33492737100002, - 170.841428332, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 49.9018440344, - 82.08648040560001, - 147.29554913800004, - 227.07301167900002, - 245.25250021600002, - 267.10127993799995, - 282.295911092, - 290.92954976199997, - 294.04029911099997, - 291.62529852500006, - 281.86571332799997, - 266.486378904, - 196.11970009600003, - 179.84412982199999, - 169.94208084, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 49.2751940344, - 80.29559040560001, - 130.755575081, - 243.28168196800002, - 270.54253596399997, - 282.065452834, - 286.91889618700003, - 288.716211025, - 294.32795909500004, - 289.947591904, - 278.977532191, - 261.344279907, - 190.19330752400003, - 176.564714672, - 166.737806111, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 49.880484034400006, - 82.14172040560001, - 147.23343913800002, - 235.34243003900002, - 267.39275041, - 283.974814321, - 291.21256908699996, - 296.326788679, - 293.255375953, - 285.68374957099996, - 274.834503208, - 260.71034066299995, - 192.08589455400002, - 177.29742440200002, - 167.16109362, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 53.198691883799995, - 81.83455040560001, - 147.63632913800004, - 229.927802385, - 252.28612867, - 268.647692172, - 278.65675863100006, - 284.736453856, - 286.68879407199995, - 283.543137187, - 271.932215365, - 252.750611485, - 181.02375052399998, - 169.387670459, - 153.666559551, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 51.9647898788, - 64.41943082819999, - 111.92791998310001, - 177.126154179, - 243.493085747, - 262.74413389, - 275.170682138, - 280.75409873800004, - 270.175500304, - 275.01646648, - 266.90134775600006, - 253.774536417, - 161.65472328799996, - 111.07855970499999, - 116.30817116600001, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 15.2357666483, - 16.9990087988, - 76.6145208282, - 88.66123082819999, - 151.129409561, - 157.939649561, - 197.35840871599999, - 198.38883871599998, - 196.010175604, - 190.880361747, - 182.417958317, - 135.855359561, - 87.1403604056, - 19.274344497799998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 53.4280022408, - 82.20974509189999, - 148.670099138, - 227.90603942799999, - 237.68014942799996, - 244.85086942799998, - 250.025011672, - 258.151692122, - 258.066430793, - 252.90339783000002, - 244.08399324500002, - 231.550776329, - 168.250394732, - 157.475970286, - 150.987757527, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 53.03971188379999, - 81.80481040560001, - 148.42326913800002, - 244.338697139, - 271.156301577, - 290.012727107, - 302.96857434599997, - 314.45581211200005, - 316.07886636700005, - 305.209096704, - 291.406994801, - 275.233358452, - 204.75732271599998, - 193.192094567, - 181.044227236, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 53.038071883799994, - 81.82481040560002, - 161.093827473, - 275.296414971, - 304.46641491800005, - 320.42244180899996, - 329.384258856, - 336.81509598400004, - 333.52823101399997, - 328.72007144199995, - 316.96663743600004, - 300.36038317900005, - 217.368174832, - 194.63592762000002, - 178.574507339, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 53.000711883799994, - 81.71993040560001, - 166.615418956, - 278.570314917, - 294.481514443, - 309.319143132, - 322.58260380900003, - 328.508570425, - 324.47757135300003, - 316.54497150199995, - 302.355849143, - 280.885870163, - 203.11696617599998, - 185.75680431, - 169.919176283, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 52.96412188379999, - 81.66007040560001, - 148.17150913800003, - 226.72744942799997, - 240.530873253, - 259.055642613, - 269.114226246, - 274.610269118, - 275.27916050100004, - 272.48047127, - 262.588832792, - 248.644164956, - 178.66009216700002, - 166.53420908299998, - 153.520969881, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 51.7754598788, - 63.965150828199995, - 112.5807899831, - 183.120878204, - 268.226724347, - 291.374195827, - 303.584094965, - 305.462760907, - 304.659823482, - 301.12452394599995, - 292.90897910599995, - 273.69237358800007, - 175.414602614, - 125.23547935399999, - 130.630793055, - 83.15965708750001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 15.011726648300002, - 15.7806387988, - 77.87867262, - 106.6640520441, - 186.67224696499997, - 198.58489229000003, - 243.173482621, - 249.487844356, - 249.55365372699998, - 244.909488853, - 237.555506944, - 177.311706366, - 113.533086541, - 18.746964497799997, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 52.9648918838, - 81.46843040560002, - 152.00647524299998, - 260.048803964, - 283.005572472, - 298.639274852, - 308.927033975, - 315.32174602900005, - 314.41236626100005, - 308.83333894400005, - 300.15256736599997, - 281.013973299, - 205.077543618, - 193.05575761199998, - 176.892321334, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 52.93093188379999, - 81.4053904056, - 149.360073001, - 258.254651001, - 278.99396611000003, - 291.462723518, - 312.0079605, - 316.73853220300003, - 310.08254039300004, - 298.018727887, - 286.54866167299997, - 266.587353242, - 189.889431244, - 180.57998332300002, - 165.45110018, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 52.8868718838, - 81.76310040560001, - 148.293929071, - 255.561082347, - 276.94829176900004, - 292.235848868, - 306.160963779, - 313.03140931, - 309.529688548, - 305.13177381, - 296.531401421, - 278.52868086, - 205.94097253400003, - 196.695191297, - 180.490409793, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 52.8611318838, - 81.70167040560001, - 150.48640356099997, - 256.056220395, - 283.92702449399997, - 303.537614837, - 313.5220834670001, - 316.81838790200004, - 313.93489683300004, - 308.18242131700003, - 298.20660368399996, - 280.424281006, - 210.52900934899998, - 202.533875104, - 185.334149497, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.348209733299996, - 81.59950040560001, - 149.763316649, - 256.34849709499997, - 280.641399963, - 299.325280133, - 308.570432594, - 312.564853333, - 311.684202444, - 309.52902979099997, - 293.883587605, - 276.069344063, - 203.624861468, - 192.71297422900003, - 176.597344488, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 55.11725772829999, - 63.67597082819999, - 111.5700499831, - 177.130468716, - 235.28582075600002, - 249.901333338, - 262.48939370299996, - 268.769268165, - 268.704188657, - 265.684616367, - 257.714263656, - 243.744028532, - 153.42519090700003, - 108.081982935, - 116.02065319, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 18.4312844978, - 15.861458798800001, - 76.7264808282, - 89.6098208282, - 148.50671956099998, - 159.11732956100002, - 197.542428926, - 214.634128716, - 219.502248065, - 215.339507462, - 205.939705696, - 148.216045026, - 86.64620756180001, - 21.5973523472, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.318059733300004, - 81.4357104056, - 147.95856913800003, - 226.67496942799997, - 235.950039428, - 245.31746406, - 266.732376434, - 279.140510864, - 277.959245497, - 271.714006722, - 262.020346577, - 245.532395029, - 171.97274114300004, - 164.212841262, - 152.03541145999998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.2759097333, - 81.33791040560001, - 147.45404913800002, - 226.071209428, - 237.635105091, - 251.861430689, - 260.909178081, - 269.758875169, - 277.69583829600003, - 279.481294757, - 268.863232531, - 252.093829288, - 180.31320548500003, - 174.003767083, - 158.175024337, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.2408297333, - 81.24357040560001, - 147.335189138, - 226.03810942799998, - 237.087780776, - 255.288318181, - 269.279250316, - 277.598994075, - 282.519843186, - 283.275226517, - 272.279561122, - 255.899078398, - 185.776778117, - 184.128682493, - 165.083756051, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.2469997333, - 81.48150040560002, - 147.880069138, - 228.551986102, - 252.46831223199996, - 272.493854807, - 288.07476383500006, - 296.887616285, - 293.6239113969999, - 286.46986766, - 275.547842777, - 259.502177481, - 187.754692302, - 184.52540086800002, - 168.28272071, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.209019733299996, - 81.35362040560001, - 147.44840689200004, - 246.483287709, - 270.185779318, - 290.98173979300003, - 302.55128093, - 308.54487276, - 310.57692340599993, - 301.480548577, - 283.19341638599997, - 262.285748721, - 191.32624115399997, - 188.558970118, - 171.177949662, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 54.93569772829999, - 63.54040082819999, - 110.92608998310001, - 185.36627506600001, - 268.23668144500004, - 291.7188517, - 300.308991782, - 303.604251851, - 294.29829516300003, - 288.32512513200004, - 279.768188508, - 264.520004447, - 168.518186963, - 127.83454626300001, - 128.394833444, - 82.9148814461, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 18.171034497799997, - 15.7662187988, - 75.2580808282, - 85.3682208282, - 157.89312011799998, - 178.72203142200001, - 217.801634316, - 218.70666405400002, - 219.62999274499998, - 190.60735867300002, - 186.018558943, - 154.15488344, - 99.3314902847, - 25.0236701967, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.1278297333, - 81.1840804056, - 146.26087652299998, - 247.83267592200002, - 273.802876906, - 291.37051782, - 302.06380189799995, - 308.59095942700003, - 304.806066424, - 297.42287606800005, - 283.232924608, - 264.43064509299995, - 192.45645884100003, - 188.321433914, - 169.412838815, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.1278297333, - 81.00302040560001, - 146.55834913800004, - 227.442562435, - 251.53472717800003, - 271.150718104, - 281.606020475, - 287.07810784000003, - 285.881979458, - 279.906688969, - 269.37807675700003, - 255.050795359, - 186.862780908, - 184.47743760199998, - 165.493670571, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.1278297333, - 81.00297040560001, - 146.385689138, - 223.74298942799996, - 237.24258875200002, - 255.641270234, - 264.99715682199997, - 269.98419281099996, - 274.161999396, - 262.608634388, - 253.010870485, - 250.707041066, - 184.045523882, - 181.390814536, - 163.897701876, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.1278297333, - 79.66235040560001, - 146.14677913800003, - 224.23427884499998, - 243.008765665, - 270.11282360399997, - 287.530701895, - 293.832723094, - 267.850566858, - 247.47705588800002, - 273.86805987800005, - 242.52799231, - 183.273337075, - 190.751060059, - 169.255548413, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.1278297333, - 81.18780040560002, - 145.605779138, - 230.612346119, - 255.330294852, - 273.252749951, - 282.805105714, - 288.361962636, - 287.23406740099995, - 275.921695236, - 265.942285676, - 256.846897127, - 186.040322502, - 182.821379241, - 156.013817929, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 58.3233655777, - 63.480840828199995, - 111.64464998310001, - 176.89794871599997, - 234.42821942799998, - 250.093227238, - 269.44806679199996, - 280.48206651799995, - 288.854547419, - 286.087592869, - 275.374470499, - 257.654943157, - 158.766212541, - 120.233295468, - 117.733098145, - 80.5349815685, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 21.5973523472, - 15.439348798800001, - 76.3193108282, - 88.11391082819999, - 149.457639561, - 157.25430673, - 215.545189634, - 193.20656877, - 184.51312827200002, - 183.98957487600003, - 213.327386717, - 157.512963436, - 96.40477551080001, - 28.4499880461, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 21.5973523472, - 15.338698798800001, - 75.7959908282, - 88.0230508282, - 150.558019561, - 156.949549561, - 200.558325275, - 206.9843085, - 177.30006150300002, - 174.419127386, - 164.44758651700005, - 136.195312963, - 83.8781690571, - 28.4499880461, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.5541475828, - 81.28274040560001, - 146.650399138, - 224.62684942799999, - 233.86876942799998, - 241.626463863, - 252.94928488600002, - 267.116851221, - 270.828635749, - 264.26605428299996, - 254.40990933, - 240.79366914899998, - 174.47473733500001, - 177.75167588300002, - 153.747475318, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.5541475828, - 81.09045040560001, - 146.26206913800002, - 224.25384942799997, - 237.13610080100003, - 260.004547204, - 270.82443507, - 279.924151575, - 283.014625559, - 279.54130426700004, - 251.42322760200003, - 254.745412962, - 181.011585606, - 188.146301537, - 167.826734614, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.5541475828, - 81.0997004056, - 146.17647913800002, - 228.63125208900004, - 253.70150914799999, - 280.605137675, - 293.483688564, - 297.753787881, - 300.95156523699995, - 293.575875048, - 280.04411726399996, - 262.23818604099995, - 192.39503086899998, - 197.27075608, - 177.628941442, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.5541475828, - 81.18680040560001, - 147.503058056, - 252.36526050799998, - 278.89651230000004, - 294.888853293, - 302.762327573, - 309.06472737, - 310.135684992, - 303.18066776599994, - 288.004465386, - 270.22409427400004, - 200.894358054, - 206.927175369, - 182.18364681300002, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 58.3233655777, - 63.616630828199995, - 112.25568129299998, - 202.11999440800003, - 285.581023659, - 304.44294937, - 313.290684885, - 317.049119485, - 314.759719501, - 304.92493256200004, - 290.60726518099995, - 271.638594398, - 175.580022448, - 144.94240462800002, - 140.345969834, - 98.0484376025, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 21.5973523472, - 15.722018798800002, - 77.27909136379999, - 100.98003054079999, - 186.494989444, - 209.366269553, - 258.279006918, - 261.102184557, - 260.627239615, - 251.42334058999998, - 234.24513189700002, - 173.19745609199998, - 107.02703113, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.5541475828, - 81.36922040560002, - 147.28166536699996, - 236.829875516, - 273.22484769199997, - 296.624971497, - 302.780436241, - 303.61264993099996, - 301.19990261199996, - 295.374519009, - 283.83758058300003, - 263.445555686, - 187.75889587299997, - 195.39861634800002, - 173.321469885, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.5541475828, - 81.1687004056, - 147.16208913800003, - 226.265170285, - 247.55894467299998, - 270.21041801900003, - 285.639482015, - 292.35877669499996, - 289.499295917, - 282.83258002, - 273.396533953, - 257.710584999, - 186.820089236, - 194.854800394, - 170.56654966, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.5541475828, - 81.13259040560001, - 146.72335913800003, - 225.310609599, - 245.41447747, - 264.591045659, - 274.126463864, - 282.110832164, - 284.11860321600005, - 280.212825869, - 268.544417541, - 251.673825436, - 182.262663821, - 190.13673303, - 165.914838508, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.5541475828, - 81.18649040560001, - 146.339959138, - 224.63224942799997, - 233.99697369299997, - 258.291978837, - 284.214940073, - 290.37723519499997, - 286.807781879, - 279.160854192, - 266.163018906, - 245.640609514, - 174.36648534000003, - 184.899454182, - 163.562893133, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.5541475828, - 81.36691040560001, - 145.773049138, - 223.78805942799997, - 238.019366163, - 255.209142247, - 260.539704349, - 261.223320599, - 262.750832206, - 260.99858815, - 250.817348747, - 238.092745325, - 177.441910568, - 185.488473929, - 163.35897374799998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 61.7496834272, - 63.8738808282, - 112.6117299831, - 179.875138716, - 238.93520942799998, - 251.42983295099998, - 258.921396461, - 261.942313371, - 260.835594951, - 254.91425164199998, - 244.88710583800002, - 229.967868105, - 150.881121281, - 121.546033664, - 116.464006474, - 80.0448304186, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 15.811628798800001, - 77.8602608282, - 92.11660082819999, - 156.431965521, - 170.665476093, - 225.716797094, - 235.949964336, - 235.543860979, - 227.677741081, - 215.878026149, - 152.772157297, - 91.23227194260001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 62.98046543219999, - 81.5367304056, - 148.38288913800002, - 228.31372942799996, - 239.45168353300002, - 252.393298502, - 259.453426716, - 261.139001115, - 258.748830463, - 252.280392084, - 241.89069720700002, - 227.343175399, - 166.601554051, - 176.410700254, - 152.162410293, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 62.98046543219999, - 81.40646040560001, - 147.72745913800003, - 226.776479428, - 236.40164942799998, - 242.54916942799997, - 247.639693482, - 257.734218732, - 258.612008693, - 253.16777552500002, - 243.99496062699998, - 229.683712935, - 169.12192947399998, - 180.033177695, - 153.99827208, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 62.98046543219999, - 81.3267804056, - 146.78538913800003, - 225.98365942799998, - 236.398829428, - 243.63854942799998, - 247.260629428, - 247.55210942799997, - 244.22570942799996, - 238.77678216499996, - 232.26178036600004, - 220.069913577, - 159.93025595600002, - 169.819311538, - 151.178592192, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 63.0261606101, - 81.4411204056, - 147.88253913800003, - 227.47532942799998, - 237.414019428, - 245.50385605900001, - 256.225034687, - 263.471003145, - 263.045429672, - 256.329695351, - 246.14726838599998, - 232.113213492, - 168.99899284399999, - 176.769279425, - 152.636231673, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 63.0249747072, - 81.29513863719998, - 147.165349138, - 226.072359428, - 236.143429428, - 250.141593021, - 267.435233196, - 272.60087272799996, - 270.750709393, - 265.092686387, - 254.70982791, - 239.198456501, - 178.469981525, - 184.169007475, - 160.817776863, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 61.7496834272, - 63.581330828199995, - 110.6404399831, - 178.97181757500002, - 253.71811961299997, - 274.989361661, - 290.862912787, - 299.72940590999997, - 299.79149369699996, - 293.725085171, - 283.65958714000004, - 265.65999551000004, - 173.355824748, - 138.143275244, - 133.964176464, - 88.9348344682, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 15.691278798799999, - 77.2192408282, - 98.5726699331, - 185.687468061, - 211.24072609200002, - 260.666532641, - 263.44980926899996, - 267.72677796199997, - 260.652129493, - 244.994750334, - 190.860081787, - 122.708148953, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 62.98046543219999, - 81.42587040560001, - 161.42138834099998, - 272.951286129, - 307.58244162500006, - 340.56173800600004, - 346.66623379600003, - 341.82264941999995, - 335.664403249, - 325.635604823, - 306.829148539, - 279.71374178499997, - 206.81215851900004, - 208.068703894, - 185.64117534599998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 62.98046543219999, - 81.36069040560001, - 157.244879403, - 267.483457977, - 290.269404819, - 308.59718660000004, - 326.155641094, - 333.114904788, - 326.29909796500004, - 320.733624753, - 306.18117929899995, - 279.340892324, - 206.89995129, - 209.18248175099998, - 186.043015931, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 62.98046543219999, - 81.1381204056, - 146.49982913800002, - 225.098149428, - 236.90629398, - 260.098107366, - 269.806575301, - 275.962173731, - 276.376215141, - 269.36501154, - 258.991714975, - 241.120007233, - 176.550486361, - 181.450163835, - 155.446193389, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 62.98046543219999, - 81.35191040560001, - 147.129979138, - 226.009199428, - 238.58762623500002, - 261.72559492100004, - 270.998995147, - 273.227453191, - 270.915034564, - 263.915092583, - 252.234869678, - 235.298346972, - 173.88730621699997, - 178.093387537, - 154.00316302299998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 62.98046543219999, - 80.49138040560001, - 145.07422913800002, - 220.44802942799998, - 235.85892942799998, - 243.551405593, - 256.588321582, - 264.12748778099996, - 252.18001504499998, - 236.01651707, - 250.06072597799997, - 233.20387216900002, - 174.77627242799997, - 179.37785151, - 154.294190983, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 61.7496834272, - 63.3296608282, - 110.73195998310001, - 176.258408716, - 233.86175942799997, - 236.77596805400003, - 240.38896953500003, - 248.788326646, - 250.144781511, - 241.96176022600002, - 233.183499571, - 219.594735738, - 150.549732583, - 116.097590294, - 115.357945526, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 15.287938798800003, - 75.3898508282, - 88.1925608282, - 146.907549561, - 153.718519561, - 187.54322871600002, - 172.320308716, - 178.54719871600003, - 165.888998716, - 166.907818716, - 115.590419561, - 87.355433954, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.63566990509999, - 81.1395168443, - 145.97393913800002, - 224.024509428, - 234.242366041, - 255.51574516800002, - 274.438032685, - 285.814965056, - 285.498428355, - 275.425315145, - 259.195672945, - 237.06244682300002, - 175.315634249, - 176.551206329, - 154.233420694, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.4067832817, - 79.44369040560001, - 144.471749138, - 224.28872942799998, - 233.98993942799996, - 240.493189428, - 244.864076976, - 247.37026448199998, - 243.966498804, - 237.011084283, - 226.74555670900003, - 212.328905811, - 159.809412931, - 169.60365638, - 151.46535073799998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.5768522433, - 80.98775588890001, - 146.04726913800002, - 225.01235942799997, - 235.783434059, - 249.531234249, - 259.598886729, - 262.446153296, - 258.594363844, - 251.013990201, - 239.560258157, - 224.002833229, - 171.201570561, - 173.36903368199998, - 153.622255355, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.4519072739, - 80.88082040560002, - 146.42082913800002, - 226.176500863, - 240.802910026, - 254.915012402, - 267.705787347, - 276.871685338, - 275.329456015, - 257.813422908, - 247.629662013, - 227.37863106599997, - 180.120587065, - 185.292640872, - 162.606942899, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.4067832817, - 80.5165604056, - 133.699289138, - 210.367562846, - 250.68866627200003, - 260.004520681, - 300.62026091099995, - 306.68391323, - 266.770092014, - 271.66762663099996, - 278.95343119, - 240.902244584, - 192.361402078, - 192.84873672, - 166.778553579, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 65.1760012766, - 63.5526708282, - 112.2508199831, - 179.57274871599998, - 238.736034999, - 255.062891074, - 271.699955362, - 230.379029447, - 240.80123720699999, - 226.657443938, - 226.178482475, - 229.26097056700002, - 157.365395581, - 118.957347285, - 117.713483262, - 80.60374977929999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 15.4780187988, - 76.5423308282, - 90.5460808282, - 154.44432758000002, - 163.756501147, - 210.19025866799998, - 218.67607222300003, - 218.09866792699998, - 210.57994536, - 197.507299945, - 130.183029197, - 92.5905557596, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 15.3146987988, - 75.9724508282, - 89.59576082819999, - 153.63258136099998, - 175.262752078, - 224.014840746, - 220.65296517400003, - 215.98026357300003, - 205.832733484, - 190.216218615, - 126.653975049, - 90.857940986, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.4067832817, - 81.01626040560001, - 146.77795913800003, - 225.978939428, - 239.823472117, - 256.218723534, - 258.708131814, - 258.82570807999997, - 255.905543691, - 249.37442506099998, - 238.83772821899998, - 222.94245535399997, - 172.193883197, - 172.330119026, - 153.998246767, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.4067832817, - 80.8474604056, - 146.24678913800003, - 225.116109428, - 235.279919428, - 243.59589715100003, - 260.84482487, - 268.946565554, - 264.46863388500003, - 255.978275684, - 244.22832658599998, - 226.5051922, - 173.244800605, - 171.65634912000002, - 152.640104396, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.4067832817, - 80.7437604056, - 146.12183913800004, - 225.41359942799997, - 235.805307799, - 246.359744315, - 256.814036707, - 260.726562968, - 258.36265607300004, - 251.370900532, - 239.88068657699998, - 223.40455369199998, - 175.40044015200002, - 173.340638219, - 154.115625559, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.4067832817, - 80.82856040560002, - 146.256679138, - 225.43112942799996, - 235.761914175, - 242.61850562100003, - 246.883017974, - 247.6776906, - 244.994509621, - 238.02819825900002, - 226.98128961100002, - 211.823127429, - 164.874722101, - 171.120106711, - 152.376694652, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 68.6023191261, - 63.07407082819999, - 110.77345998310001, - 176.936828716, - 234.953799428, - 240.63231942799996, - 242.71593942799998, - 244.10453206, - 248.70719783299998, - 243.298665222, - 232.892351069, - 217.53581047400002, - 148.697301145, - 115.49634512899999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 14.905928798800002, - 74.7933708282, - 87.1919308282, - 144.31362956100003, - 151.086239561, - 193.403878716, - 187.796818716, - 181.486008716, - 183.390288716, - 169.381268716, - 121.94348956099999, - 94.20806965290001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 69.9512472562, - 80.3579729879, - 144.300299138, - 222.83975942799998, - 232.91153942799997, - 239.03763942799998, - 243.20675618, - 244.73506790700003, - 244.975949753, - 239.196644209, - 227.865442587, - 211.923362867, - 168.084887712, - 170.08494646600002, - 151.897466353, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 70.123584253, - 80.4316244031, - 145.33667913800002, - 224.026859428, - 234.29618345000003, - 244.676948095, - 254.330342103, - 258.60650358500004, - 257.86353694300004, - 251.85546536800004, - 240.02744358700002, - 222.89375177999997, - 175.663577768, - 172.564299219, - 154.00964487500002, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 69.83310113120001, - 80.4043204056, - 145.80049913800002, - 224.93922942799998, - 237.374663625, - 246.877744213, - 249.698805258, - 257.94766907, - 263.60814513, - 256.156569281, - 241.975523483, - 221.449402476, - 170.932583777, - 171.946066195, - 153.328241727, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 69.83310113120001, - 80.41638040560001, - 145.97229913800004, - 229.92739579699997, - 255.792806601, - 261.667749462, - 264.718923414, - 263.826422772, - 259.625755156, - 252.495078577, - 240.39126657900002, - 224.32092337900002, - 178.77743081699998, - 173.309140689, - 154.67514706600002, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 69.83310113120001, - 80.1210604056, - 146.011605407, - 240.38778867, - 267.712946663, - 296.99120268699994, - 300.53767669, - 297.514790936, - 293.030951717, - 286.431267452, - 264.24438003299997, - 231.573132208, - 180.041193143, - 173.90315999499998, - 155.36426346800002, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 68.6023191261, - 62.12186082819999, - 110.04471998310001, - 176.305458716, - 234.67748942799997, - 240.80750942799997, - 243.40653942799997, - 242.52745676, - 251.074412183, - 251.99456073399998, - 239.56756251599998, - 220.262551336, - 149.481020513, - 115.381513985, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 13.852028798800001, - 74.420819475, - 87.5067808282, - 150.610349561, - 156.332179561, - 194.018718716, - 193.001728716, - 189.22310871599998, - 182.217694899, - 171.33137871600002, - 120.102049561, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 69.96274588520001, - 79.60715760859999, - 145.292033664, - 224.482229428, - 234.73400942799998, - 241.260279428, - 244.16377942799997, - 244.511483821, - 254.75843052000002, - 252.655268181, - 239.96869794499997, - 220.946271355, - 172.890876477, - 168.587904659, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 70.009829063, - 79.3891726258, - 145.197999138, - 224.42911942799998, - 234.43475942799998, - 240.70062942799998, - 244.343518374, - 246.413805305, - 248.564995084, - 244.18999339600003, - 232.26552130800002, - 215.631634359, - 172.219932514, - 170.274739591, - 152.007691751, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 70.0072888922, - 78.893180937, - 143.977189138, - 222.668589428, - 232.81528942799997, - 240.851424927, - 249.448152094, - 253.605730387, - 244.866180745, - 226.099619312, - 220.674056326, - 210.11656267799998, - 171.51776048099998, - 169.837872588, - 151.853574438, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 69.97085777000001, - 82.1537240625, - 143.89585913800002, - 222.68342942799998, - 233.26024942799998, - 239.93898942799999, - 242.930365287, - 242.886459445, - 239.269916025, - 230.515700627, - 218.19960601099996, - 203.12190576999998, - 169.91404649799998, - 169.805917913, - 151.615885253, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 70.3854923508, - 82.3852345438, - 144.21819913800005, - 223.86669942799998, - 235.05399942799997, - 244.60429893499997, - 252.837200069, - 253.454093435, - 249.283593444, - 241.50869526, - 228.58001110300003, - 210.597377414, - 171.497147801, - 170.53060463900002, - 151.881904481, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 69.12727279849999, - 65.00021368889999, - 110.34091957679999, - 177.59009871599997, - 236.62221942799997, - 243.33523942799997, - 247.12877117800002, - 247.967265956, - 244.423164885, - 236.49566875099998, - 224.377994387, - 207.23965160199998, - 152.70658983599998, - 115.70391593999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 16.417906648299997, - 74.8590311192, - 88.6953808282, - 152.614839561, - 159.921419339, - 205.01622759400001, - 209.61764706199997, - 205.400196697, - 193.444049274, - 177.76187105500003, - 121.929949612, - 97.63831956339999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 70.3106119435, - 82.29735805969999, - 145.116369138, - 224.586579428, - 236.083265174, - 257.096630201, - 276.769638151, - 285.035819592, - 286.61360079599996, - 282.881305876, - 263.29139649499996, - 235.240294828, - 187.85440626899998, - 181.883823438, - 158.51372840899998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 69.88910110249999, - 81.8717877291, - 144.86749913800003, - 224.290422347, - 240.843598184, - 265.530437928, - 281.22443976, - 289.96230793000007, - 271.396758112, - 265.23383827, - 241.980995243, - 222.259331967, - 181.486020301, - 173.903343234, - 153.02433753100001, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 69.8990998023, - 81.7905712654, - 144.546829138, - 223.922804718, - 237.28378514899998, - 263.557358823, - 266.022292688, - 265.381816501, - 261.81492059000004, - 254.60232916300004, - 242.47766039500002, - 221.628305037, - 176.704516295, - 171.37767475500002, - 152.88116227999998, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 69.92872631430001, - 81.63309447640002, - 144.242719138, - 223.64410942799998, - 234.87033942799997, - 236.03984525799999, - 227.09538725199997, - 221.35800616699998, - 242.711384664, - 224.97756105800002, - 220.027033739, - 207.096798588, - 170.482011034, - 169.389215938, - 150.876189156, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 70.5881472472, - 81.7422872772, - 143.77161281500003, - 223.199419428, - 233.94635942799997, - 240.912009328, - 244.98727214200002, - 245.81960524599998, - 242.58394821899998, - 234.92583803600002, - 222.671195793, - 208.75587662499998, - 171.221833205, - 169.922150884, - 151.357198363, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 69.1023640495, - 64.0594847072, - 109.6721183483, - 176.745628716, - 236.15565942799998, - 243.33309942799997, - 246.332009428, - 245.33931942799998, - 240.76399942799998, - 232.26699942799996, - 219.661159428, - 205.14345727699998, - 150.775396235, - 115.34805707999999, - 115.34805707999999, - 79.9435045609, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 15.4952566483, - 74.2109630281, - 87.3062485857, - 151.216259561, - 158.130129561, - 196.440748716, - 195.54105871599998, - 191.05987871600001, - 183.02263871600002, - 170.208718716, - 120.73778741, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 57.638458800500004, - 90.6887237903, - 156.94009913800002, - 233.50810942799998, - 240.400689428, - 243.47051394699997, - 244.11235427999998, - 241.27074241799997, - 233.29513716099999, - 221.079429554, - 206.90601551599997, - 219.22265568, - 169.857476625, - 169.178864766, - 150.79597698, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 57.319019758399996, - 90.53448180279999, - 156.56143913800003, - 232.81106942799997, - 239.28110942799998, - 247.60071735299996, - 256.522499613, - 253.18638127199998, - 245.545203692, - 232.642381542, - 209.818447325, - 219.513533787, - 169.83029883999998, - 169.360577727, - 151.024874843, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.914439650199995, - 90.3057138714, - 156.156129138, - 232.032429428, - 238.92205304, - 249.28053844899998, - 254.84721184100002, - 251.174517797, - 243.21158332299999, - 230.78884741500002, - 215.037145148, - 220.905786517, - 170.662971471, - 169.766650712, - 151.694152392, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.915379544800004, - 90.0016434316, - 156.02404879800002, - 238.51162738399998, - 260.78113288000003, - 272.828684286, - 279.222189102, - 273.666900748, - 260.187995061, - 241.823894611, - 224.36802495400002, - 232.774019853, - 174.977792222, - 171.446330074, - 152.939777506, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.4725205711, - 89.6293004056, - 155.43373913800002, - 231.83654415299998, - 251.874474823, - 269.35871387, - 263.97264451, - 272.257308108, - 262.616449192, - 247.43017782799998, - 226.802480116, - 230.926469628, - 173.202919624, - 172.218047644, - 153.73290166, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 54.9551974171, - 72.1503908282, - 120.73889998310001, - 185.465787412, - 257.181130118, - 269.95059255999996, - 270.13158366100004, - 267.040899859, - 263.437356569, - 250.569534175, - 227.09371022000002, - 232.24722252299998, - 154.424121275, - 118.031625811, - 117.506107634, - 80.3364116499, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 18.171034497799997, - 21.9822987988, - 82.91105082819999, - 94.0111608282, - 154.90185956099998, - 157.908029561, - 192.682478716, - 176.303948716, - 179.545564517, - 166.928666357, - 155.51692409099996, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.58880349539999, - 87.8749789592, - 145.907919138, - 230.80613942799997, - 238.32057942799997, - 241.50255942799996, - 241.02682942799996, - 237.05270942799996, - 229.25958942799997, - 216.843839428, - 206.430735127, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.7652937465, - 82.6254606922, - 146.15565913800003, - 230.98150942799998, - 237.97828232900002, - 235.92193593000002, - 238.87020141, - 237.379610034, - 233.784812173, - 222.90007537000002, - 209.114662959, - 219.62400217500002, - 170.53271117399999, - 169.43891061, - 150.940749445, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 56.956353165900005, - 78.7802429325, - 154.443809138, - 219.078239428, - 238.72542942799998, - 242.122969428, - 241.79693942799997, - 237.899509863, - 230.016270922, - 217.080949888, - 204.232447279, - 216.952387416, - 168.55294360000002, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 58.1075231296, - 89.844647573, - 155.955868448, - 232.32634086500002, - 239.04317956100002, - 242.352217576, - 241.61354301600002, - 237.04268942799996, - 229.03550899700002, - 216.358310599, - 205.962988026, - 217.179633282, - 168.99707058200002, - 168.97779117, - 151.284839882, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 61.214324398500004, - 90.66837092669999, - 157.148049497, - 234.77392942799997, - 242.246179428, - 245.31764942799998, - 244.36975942799998, - 239.94522942799998, - 231.59395942799998, - 218.083079428, - 206.23948512700002, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 59.145902437000004, - 71.6673894429, - 120.36410998310001, - 184.551698716, - 240.15073942799998, - 243.208064376, - 243.07084470200002, - 238.75376262199998, - 230.667366956, - 214.066404648, - 204.334295453, - 217.404627504, - 151.02089641900002, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 21.5973523472, - 16.5857787988, - 76.34462456210001, - 95.49581082819999, - 145.98442956099998, - 150.864879561, - 171.10636871600002, - 164.897218716, - 155.18522871599998, - 164.66760871600002, - 155.258734414, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 60.2497903316, - 88.1618175138, - 143.379200254, - 230.285719428, - 225.76219942799997, - 227.89991942799998, - 208.08238942799997, - 237.09244523900003, - 229.337728287, - 216.43990233300002, - 205.565249902, - 217.257503008, - 168.77767391700002, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 60.0799069163, - 88.1630305246, - 154.19899913800003, - 233.38771255, - 259.2038438, - 269.277076988, - 271.73814423, - 270.952284378, - 251.581327268, - 236.288614496, - 227.419720185, - 233.054605605, - 175.465536418, - 172.642907076, - 154.018150095, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 59.575491187900006, - 87.6833304056, - 154.22077913800004, - 233.34775777500002, - 243.910369616, - 255.839628945, - 259.742287523, - 257.036052224, - 249.40984450899998, - 236.660366586, - 223.132134171, - 223.675506074, - 172.458072087, - 171.221855786, - 152.156044874, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 21.5973523472, - 15.7191087988, - 75.5784208282, - 83.1738208282, - 153.41117956099998, - 156.95076956100002, - 191.922038716, - 187.927398716, - 179.912088716, - 160.934308716, - 155.262884414, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 60.471993278700005, - 88.4733811397, - 155.37861190499999, - 232.373879428, - 240.160199428, - 243.65068359500003, - 243.59968813, - 239.779272241, - 231.180215077, - 217.995615203, - 204.36110068899998, - 216.75021975899998, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 58.9608671368, - 64.1294159361, - 119.287348884, - 183.294802798, - 238.725459428, - 242.25976942799997, - 241.88660942799996, - 237.88745942799997, - 229.873369428, - 216.96687942799997, - 205.375425127, - 216.706946524, - 150.775396235, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 21.5973523472, - 15.6477587988, - 83.5062108282, - 93.8920608282, - 153.621369561, - 157.238719561, - 192.414418716, - 188.35181871600003, - 180.16932871600002, - 167.895708716, - 157.03824441400002, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 60.177014169500005, - 81.6999428245, - 153.829819138, - 230.23671328900002, - 239.263940022, - 249.800483386, - 259.167784716, - 259.827194777, - 253.683557933, - 241.26096589000002, - 225.21334202100002, - 229.509496485, - 173.340909712, - 171.072895935, - 151.715346393, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 63.8589395508, - 81.0502046531, - 144.41816913800002, - 219.87260942799998, - 229.76721942799998, - 229.980849823, - 229.199644837, - 234.631164928, - 227.937637018, - 216.33041761500002, - 206.074117173, - 217.569462338, - 168.597588932, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.4028736323, - 81.1083201083, - 144.979899138, - 229.03985942799997, - 236.82214942799996, - 242.088322883, - 244.792079663, - 241.870669346, - 233.593358526, - 221.11882355999998, - 209.308542079, - 219.181938621, - 169.432359631, - 168.56968848900001, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.30970058, - 86.378177952, - 152.76644913800004, - 229.642889428, - 237.208923623, - 243.34913298300003, - 243.87767651500002, - 239.875939433, - 231.54953023599998, - 207.31879951599998, - 205.86058409999998, - 217.9260735, - 168.86329233, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.0436862193, - 78.48784013119999, - 139.08204999599997, - 209.970169428, - 196.91733942799996, - 200.59742942799997, - 197.804159428, - 198.231199428, - 202.05327942799997, - 200.00030942799998, - 204.906765127, - 216.706946524, - 168.489065812, - 168.489065812, - 150.7988953, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 63.2692404363, - 68.2561308687, - 117.0942456372, - 174.51650710899997, - 228.687849428, - 227.684879428, - 230.36734942799998, - 220.33516942799997, - 205.74770942799998, - 197.45098942799999, - 203.001675127, - 216.706946524, - 150.786658811, - 115.522935929, - 115.623962647, - 80.35011228980001, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 25.0236701967, - 13.7287187988, - 66.9453438575, - 66.1266910474, - 122.25883268899999, - 139.07478052200003, - 173.662930174, - 178.999166923, - 172.092847342, - 167.280770406, - 156.65752221900001, - 133.933229452, - 98.6349997115, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 65.08633296139999, - 85.98092097, - 131.367474811, - 229.59369475799997, - 217.98328942799998, - 223.49385942799998, - 226.52636942799998, - 210.31368942799998, - 196.490219428, - 215.924859428, - 203.303095127, - 216.706946524, - 168.489065812, - 168.489065812, - 150.797835451, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.3072508739, - 85.35176909, - 153.07024204199996, - 230.93334942799999, - 239.40852428300002, - 249.66729437499998, - 253.524513594, - 244.31796001, - 234.735932375, - 220.00790218, - 208.308323172, - 217.121738483, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 63.6085891304, - 84.8532592765, - 152.220339138, - 229.184159428, - 236.718559428, - 240.95541495100002, - 232.37957393899998, - 237.475828171, - 218.964168541, - 211.21589777499997, - 208.571065447, - 217.225333288, - 168.98817268000002, - 168.640211285, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 63.6358553966, - 84.53773028760001, - 152.24131913800002, - 229.653589428, - 237.29739942799998, - 241.156849428, - 240.81861942799998, - 224.186579428, - 228.55368942799998, - 215.90261942799998, - 208.207252976, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 64.1057948287, - 84.79294771939999, - 152.688927138, - 230.20373942799998, - 238.411987646, - 243.294369668, - 243.49703127899997, - 239.445389385, - 231.048168973, - 217.834738657, - 209.701295242, - 217.90302774, - 169.32847182600003, - 168.5309635, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 66.2036203635, - 67.1555122799, - 117.5825932734, - 182.29356871599998, - 234.987079428, - 236.354139428, - 241.51629942799997, - 229.68139942799996, - 229.26845942799997, - 216.76623942799998, - 208.476512976, - 216.706946524, - 150.775396235, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 18.0213287988, - 81.1184542746, - 92.3518408282, - 153.552889561, - 157.935769561, - 193.776448716, - 162.995458716, - 158.138588716, - 168.022868716, - 159.96517226400002, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.346509155, - 33.392057242599996, - 33.3695262576, - 68.2914835058, - 84.6647990132, - 152.21813397199998, - 222.027475006, - 219.29289942799997, - 240.99233942799998, - 197.91743942799997, - 209.66937942799998, - 201.098379428, - 205.72842942799997, - 204.26461512699998, - 216.706946524, - 168.500818925, - 168.921224596, - 151.619856366, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.2503839361, - 33.264699195, - 33.8027606411, - 34.095540346300005, - 34.4217098373, - 68.95656775009999, - 85.1516192145, - 152.50161247600002, - 230.01496942799997, - 238.30407942799997, - 242.66149942799998, - 242.52606942799997, - 238.27325942799996, - 229.88104942799998, - 217.079429428, - 205.131425127, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.3144229257, - 33.5815587627, - 34.0041479176, - 34.072259395399996, - 34.376078837, - 68.8762144113, - 84.78307552029999, - 152.385564738, - 229.961559428, - 238.26442942799997, - 242.31742942799997, - 242.04587942799998, - 238.06487942799998, - 229.75389942799998, - 217.03619942799997, - 205.307895127, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.401671038399996, - 33.526202160900006, - 33.539112979, - 33.8001186573, - 34.1416222222, - 68.6781547491, - 83.9574547404, - 141.425494338, - 228.54201942799997, - 235.999979428, - 239.211439428, - 239.47816942799997, - 236.04973942799998, - 228.468559428, - 216.251449428, - 205.114045127, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.2162920253, - 33.3363472554, - 68.1781353352, - 83.07710048460001, - 142.327699138, - 228.735229428, - 225.86676942799997, - 226.83800988599998, - 225.523465589, - 201.342414006, - 220.248373174, - 216.78792234999997, - 203.585265389, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 66.5327447411, - 65.8717886982, - 116.4159568814, - 181.587828716, - 238.48190942799997, - 243.51970369499998, - 244.767878659, - 240.862895967, - 232.484129314, - 219.574874299, - 207.390563184, - 217.299449058, - 150.775396235, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 28.4499880461, - 17.2408987988, - 80.89162082819999, - 92.45071082820002, - 154.863484062, - 162.634265095, - 204.302606358, - 197.78707906100001, - 190.863990706, - 181.20672866200002, - 160.587686679, - 134.407984272, - 98.11667474869999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.4926085616, - 81.6755111783, - 134.866189138, - 227.880370657, - 234.104560081, - 254.182153164, - 275.088475898, - 270.7009831, - 256.720184917, - 237.490693604, - 219.15704451, - 220.74618134899998, - 171.487835572, - 170.530549526, - 152.061209479, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 67.1381684582, - 82.65239857590001, - 151.51001913800002, - 230.08731671100003, - 251.304170916, - 274.426813936, - 277.740893164, - 271.35359450199996, - 258.72821821800005, - 243.019955197, - 225.320620627, - 229.639300792, - 175.027679269, - 173.267111776, - 154.605506693, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.5574719854, - 82.3008204056, - 150.83161913800004, - 229.499564601, - 250.16815366900002, - 270.708005967, - 283.238144001, - 280.005972027, - 264.769634887, - 247.429159928, - 222.69797051299997, - 221.588052683, - 171.721629148, - 170.467264839, - 151.877494568, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.76227187479999, - 79.1553590427, - 140.833159138, - 215.48975879999998, - 243.861175352, - 270.973629929, - 260.152368974, - 263.692335382, - 255.46911128300002, - 239.33370527099999, - 216.379939986, - 220.95895033399998, - 171.645244213, - 170.80300186300002, - 152.122239918, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 66.961547701, - 81.8491374736, - 149.66646913800002, - 228.135892586, - 241.02444092699997, - 239.644128333, - 250.82779232399997, - 247.30910767999998, - 239.57075063700003, - 227.4730421, - 212.685107381, - 219.97761011400002, - 170.185698645, - 169.240674484, - 150.87909960300001, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 66.1918194813, - 64.6359119068, - 114.7560224284, - 179.454708716, - 236.153384341, - 241.41018121899998, - 241.71538248299998, - 221.361083824, - 225.48472035999998, - 205.315621338, - 204.849065516, - 217.670389171, - 150.775396235, - 115.34805707999999, - 115.34805707999999, - 79.9207179249, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 15.8695887988, - 79.2182490599, - 90.83879082819999, - 152.081081033, - 157.974748189, - 194.640869582, - 189.704361234, - 177.654557873, - 168.788508716, - 155.64991441400002, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.77559417169999, - 83.20146038330002, - 151.642940508, - 229.506999428, - 238.853863813, - 256.095800482, - 263.335949991, - 246.096710621, - 232.32599017399997, - 214.43672514800002, - 205.74651895, - 217.829547982, - 169.216481009, - 168.543561939, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 16.1897387988, - 80.62901853559998, - 92.3255508282, - 155.003637362, - 155.94485634, - 207.17649111599997, - 214.84058179000002, - 203.664242159, - 183.881676523, - 162.906132114, - 133.079947242, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 70.9102656636, - 82.2863245655, - 150.298378094, - 227.49638942799996, - 226.86991942799997, - 230.08132942799998, - 228.06394942799997, - 222.937479428, - 216.492919428, - 205.85311942799999, - 203.43005512699997, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.0642269696, - 79.07094481419999, - 137.02852165199997, - 206.07574942799997, - 216.00933942799998, - 226.83547942799999, - 231.95139942799997, - 221.13289942799997, - 209.74521942799998, - 217.45224942799996, - 204.192935127, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 71.13484557039999, - 78.3185619394, - 143.352165699, - 219.168309428, - 216.150489428, - 206.09630942799998, - 205.399059428, - 198.83371942799997, - 202.48385942799996, - 201.77026942799998, - 203.240435127, - 216.706946524, - 168.489065812, - 168.489065812, - 150.775396235, - 60.9083742719, - 33.107087900699995, - 33.107087900699995, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 69.84820696710001, - 61.1576854134, - 95.5366401973, - 157.80266004400002, - 201.36617942799998, - 203.95420942799996, - 199.21152942799998, - 203.55445968499998, - 222.622015705, - 200.47506645800001, - 206.524565127, - 216.706946524, - 150.775396235, - 115.34805707999999, - 115.414618495, - 80.18184590189999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 14.934278798800001, - 62.8740335445, - 72.824982439, - 115.801119561, - 122.110629561, - 157.706428716, - 156.261508716, - 153.825328716, - 153.534988716, - 155.097074414, - 133.061726657, - 97.63438750239999, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 31.876305895599998, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 33.107087900699995, - 70.6639834548, - 81.2630978375, - 148.63070680099997, - 226.36635028499998, - 235.57377942799997, - 240.230719428, - 229.495499428, - 225.33304942799998, - 230.49557942799999, - 212.03564942799997, - 208.766635127, - 216.706946524, - 168.489065812, - 168.489065812, - 150.790891642, - 60.9083742719, - 33.107087900699995, - 33.107087900699995 - ], - "critical_load_series_kw": [ - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.0825779467, - 16.1940740764, - 16.3792709196, - 16.36236526635, - 5.8159841199999995, - 30.4454442535, - 29.948087641, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 75.67873828249999, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.93463043525, - 39.144601623499995, - 65.2503425405, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 108.353473262, - 84.244532906, - 84.2459556135, - 75.425857705, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.7737453346, - 39.133430126049994, - 65.52504359250001, - 98.244702057, - 98.08727139, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 108.353473262, - 84.258767659, - 84.3606472095, - 75.54641717, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.8289266807, - 39.1525388612, - 65.4387355805, - 98.0766909895, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.7032525087, - 39.13324098535, - 65.73176077400001, - 98.6273313215, - 98.5803765585, - 98.5217491685, - 98.5224687115, - 98.5364321545, - 98.536721342, - 98.3879792935, - 100.0259452265, - 108.680057484, - 84.6323553725, - 84.696616961, - 75.87522944749999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 16.06619674345, - 16.4401459875, - 16.42034179565, - 16.5319430043, - 35.5986135471, - 30.8088586586, - 47.996797263800005, - 74.0402767375, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 108.353473262, - 75.3876981175, - 57.674028539999995, - 57.684197782999995, - 40.10646857055, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.0157476851, - 16.030614242, - 16.0572089538, - 5.697231791, - 30.045383660949998, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 75.67873828249999, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.793373751, - 39.14933736705, - 65.4495116485, - 98.08212518399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.80861916715, - 39.017204696200004, - 65.1718288305, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.6494164684, - 38.94465598535, - 65.144496535, - 98.07451971399999, - 98.0822480495, - 98.41418898399999, - 98.7151813425, - 98.676603145, - 98.6810024995, - 98.681689083, - 100.22670647749999, - 108.37881044100001, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.58504826065, - 39.0096579653, - 65.33071794199999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.57246591345, - 38.88007140075, - 65.1237501025, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 34.93611638135, - 30.0042599661, - 47.4168087889, - 73.965579358, - 98.07451971399999, - 98.484086617, - 99.896680656, - 101.850011469, - 103.0826315105, - 101.177759614, - 99.80134404750001, - 108.980054612, - 75.3876981175, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.3249371345, - 58.079079978500005, - 76.41081332350001, - 76.256148506, - 76.25560495549999, - 76.0934708835, - 74.99023676, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 30.08682480305, - 29.69035465255, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 66.5308633285, - 48.8279426668, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 36.0276125896, - 39.200030410000004, - 65.2527652505, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 108.353473262, - 84.244532906, - 84.244532906, - 75.392416238, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 36.05644885275, - 39.342321552650006, - 65.7206993975, - 98.559464615, - 98.559205739, - 98.33126073, - 98.2877148765, - 98.3097371195, - 98.3615093635, - 98.372864253, - 98.4283925325, - 108.8239585915, - 84.7904081745, - 84.8047097815, - 75.90711537600001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.57422693465, - 16.57898958425, - 16.6080614608, - 36.2021079645, - 39.2880445205, - 65.260379016, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.67504943475, - 38.89988518965, - 65.12451180949999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.9710777979, - 16.10178004525, - 16.1326024643, - 16.152001938799998, - 35.3153079417, - 30.28601806375, - 47.5725971765, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 108.353473262, - 75.3876981175, - 57.674028539999995, - 57.674028539999995, - 39.9845509273, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.09308223645, - 16.205957639999998, - 16.28593611605, - 16.415423073750002, - 5.931463814, - 30.1729329521, - 29.68818033495, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.622126355949998, - 16.553543950349997, - 35.8657489497, - 39.13145512685, - 65.2196297, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.62602431165, - 16.636828804500002, - 35.8115790579, - 39.04652165185, - 65.2027517455, - 98.07451971399999, - 98.07451971399999, - 98.1018454865, - 98.2329326805, - 98.225058757, - 98.23074081349999, - 98.227244665, - 98.220534113, - 108.3605367575, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.76813046775, - 38.8518314275, - 65.10874456900001, - 98.07451971399999, - 99.102700913, - 100.49345672199999, - 100.3190243075, - 104.961138758, - 108.712375115, - 107.2212460555, - 102.4426518805, - 108.2068983375, - 85.303369421, - 85.247404257, - 76.3916161165, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.50356531845, - 38.6383230115, - 65.10874456900001, - 98.07451971399999, - 99.03420573349999, - 105.994454397, - 112.12772770950001, - 115.5460249655, - 117.8097664995, - 118.3157915685, - 114.61594689649999, - 117.672513899, - 90.1234317925, - 85.8485134225, - 76.414337214, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.26244490135, - 38.5435328082, - 65.10874456900001, - 98.12839789399999, - 101.9768567665, - 109.30702717800001, - 115.797920811, - 120.55840448750001, - 120.18231262, - 114.024602098, - 106.36261798, - 112.312113923, - 89.94162105, - 86.9262679015, - 76.56327491, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 32.69633070685, - 29.71778223215, - 47.395074991550004, - 73.965579358, - 98.07451971399999, - 102.9431003075, - 112.213818456, - 113.129633114, - 110.564747535, - 106.2688053445, - 100.927779559, - 107.684346612, - 75.50069591500001, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 29.75501205395, - 29.6814054141, - 56.277154749000005, - 57.5316308305, - 75.73599943149999, - 75.72346821299999, - 75.702877039, - 75.23963964449999, - 74.5806606025, - 64.817704404, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.77251288715, - 38.86041186415, - 65.1401928685, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 106.6403143375, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.00752682465, - 39.03969494675, - 65.344951919, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 106.6403143375, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.0669362397, - 39.08994822935, - 65.4178807665, - 98.081606894, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 106.6403143375, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.79483765455, - 38.9582250467, - 65.365875693, - 98.1176908675, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 106.6403143375, - 84.244532906, - 84.244532906, - 75.41451564, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.8648353716, - 38.9932845652, - 65.4124149925, - 98.205875721, - 98.0872745625, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 106.6403143375, - 84.3019628105, - 84.4020390965, - 75.62017386400001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.003226943650002, - 33.82339635555, - 30.40652977085, - 47.5884316693, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 104.927155413, - 75.3876981175, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.974537339649999, - 14.33389988365, - 5.7636614557999994, - 30.09603338595, - 29.6915831959, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 63.10454547900001, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.063895478700005, - 38.99877963805, - 65.25398926849999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 104.927155413, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.85370309525, - 38.99961352365, - 65.3742951265, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 104.927155413, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.961788867799996, - 39.0103906644, - 65.2676472455, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 104.927155413, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.0097782284, - 38.9176217682, - 65.392000716, - 98.1764522985, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 104.927155413, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.406229639500005, - 39.1807677567, - 65.30615338749999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.50511811700001, - 99.93492709, - 100.323427327, - 99.89326239149999, - 105.715254201, - 84.3159407825, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 31.409527547600003, - 29.86456387985, - 47.395074991550004, - 74.009958864, - 102.2614060815, - 107.68623964199999, - 107.38768409849999, - 107.257512324, - 107.21726776999999, - 107.043520781, - 106.15184967649999, - 109.3470595985, - 76.505554181, - 58.0620030795, - 57.771072617, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 29.68157749985, - 29.6814054141, - 56.387758264999995, - 56.8663631285, - 75.3052176715, - 76.337036001, - 77.617099907, - 78.1841646625, - 77.19246588749999, - 64.193983108, - 48.841956917299996, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.72014607755, - 38.56333167815, - 65.10874456900001, - 101.31546794650001, - 108.67704792800001, - 114.570592078, - 119.6953879875, - 123.76539824900001, - 120.8625042015, - 117.8501001665, - 112.8659600795, - 112.4535447055, - 86.00407892850001, - 85.4208818675, - 76.210518069, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.69433838085, - 38.55758386465, - 65.10874456900001, - 98.46200540599999, - 104.7878013635, - 113.8479107225, - 112.661012328, - 110.62469788, - 110.5692181135, - 110.0599928795, - 108.207342968, - 107.82749134800001, - 85.795846215, - 85.2384394855, - 75.9498439935, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.7683217976, - 38.627071481899996, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.3166363135, - 98.704372847, - 98.685733684, - 98.6474697015, - 98.587141701, - 103.557016222, - 84.317359627, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.77875820095, - 38.7520692947, - 65.19417269350001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 103.213996488, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.0803201619, - 38.9238544249, - 65.32241882299999, - 98.10096803600001, - 98.07451971399999, - 98.1099485585, - 98.16790913550001, - 98.183795389, - 98.128775144, - 98.14318587, - 98.2381379585, - 103.40922031999999, - 84.47329634, - 84.5364651375, - 75.7103515275, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 32.0297434838, - 30.439978275399998, - 47.81290057175, - 73.98425708900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 103.213996488, - 75.3876981175, - 57.674028539999995, - 57.678596153499996, - 40.0606098906, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 30.0821584746, - 29.74040143045, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 61.391386554499995, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 10.7986761736, - 5.6591993994, - 30.3433534517, - 30.055558625899998, - 56.452568955000004, - 56.543683924, - 74.273772199, - 74.0816883225, - 73.965579358, - 73.965579358, - 73.965579358, - 61.41064672899999, - 48.95025825355, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.597227067, - 16.86142088345, - 16.95276079085, - 31.04917794345, - 39.32514993065, - 65.361963559, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 103.213996488, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.7035501998, - 16.73312733725, - 30.8322173642, - 39.0472604349, - 65.1741034485, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 103.213996488, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.53462322765, - 38.97310648845, - 65.230709216, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 103.213996488, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.54921717395, - 38.8935430045, - 65.2480167455, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 103.213996488, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 29.92588499115, - 30.031432651, - 47.413589192799996, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 75.3876981175, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 10.7986761736, - 5.6591993994, - 29.851854803, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.96810369299999, - 73.974135278, - 73.969446158, - 59.6782276295, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.5149274853, - 38.9054884566, - 65.152893856, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.58928989345, - 16.6712117219, - 29.014368063600003, - 38.9879468675, - 65.149562117, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.62608151605, - 29.021088645149998, - 39.10303874525, - 65.28393804650001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.0128575079, - 39.026534117900006, - 65.178799505, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.4750300706, - 38.809745577399994, - 65.197016767, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 28.0223609547, - 29.9175153636, - 47.40827822835, - 73.965579358, - 98.07451971399999, - 98.2979970045, - 99.784810022, - 106.800088075, - 109.18490448, - 105.790830107, - 103.4169707915, - 102.992785225, - 75.642756823, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 9.085517248899999, - 5.6591993994, - 29.74549684475, - 29.6814054141, - 56.703132699499996, - 60.994708945, - 85.008084238, - 84.48079325650001, - 84.26080761, - 84.1544003205, - 79.83234800550001, - 59.922803639, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.254090965150002, - 38.741919199950004, - 65.2686842935, - 98.1483184095, - 98.088164725, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.549023597, - 84.38970073899999, - 84.47456168800001, - 75.65605656999999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.8926355969, - 39.1859586324, - 65.5188762695, - 98.143165576, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 84.244532906, - 84.25666808849999, - 75.451234652, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.957832926650003, - 38.9207132366, - 65.317285544, - 98.097520554, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.84150755835, - 38.7268796795, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.6298624113, - 38.7182278429, - 65.17079464, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 26.22626591605, - 29.95655610885, - 47.540186799800004, - 73.9676873955, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 75.3876981175, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 7.37235832415, - 30.0456155229, - 29.7215369688, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 40.25139912755, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.2901045464, - 40.525427091400005, - 65.2632722925, - 98.0769185905, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 75.67873828249999, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.5568600344, - 40.697975590599995, - 65.378890203, - 98.1218256545, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 75.67873828249999, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.5281429471, - 40.67123797285, - 65.316404577, - 98.094495588, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 75.67873828249999, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.882804682599996, - 39.2413309782, - 65.5205912515, - 98.1212663485, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 75.67873828249999, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.874901270600006, - 39.2144245229, - 65.4506732905, - 98.0856400025, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 75.67873828249999, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 34.9812058788, - 30.2052614192, - 47.63853367615, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 66.821903494, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 30.0620452643, - 29.772577769199998, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 40.25139912755, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.716105598149994, - 39.0937862095, - 65.39172703, - 98.0816496265, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 75.67873828249999, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.85797168855, - 39.21343614665, - 65.508932277, - 98.1322463035, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.6939922987, - 39.106060531900006, - 65.5376964565, - 98.2354629665, - 98.28879297900001, - 98.3757997715, - 98.4060945505, - 98.2430134895, - 98.07451971399999, - 98.07451971399999, - 98.2617152675, - 98.359952571, - 74.2162483265, - 84.6214401975, - 75.83794524049999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.6161109316, - 16.80385561, - 16.900189342450002, - 17.0894780326, - 17.18735530235, - 34.500845624899995, - 39.6778908178, - 65.8190149585, - 98.303260816, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.108211023100004, - 39.19945496745, - 65.465470873, - 98.1024730355, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 84.244532906, - 75.4043754665, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 33.42202249885, - 30.3038349218, - 47.78403443285, - 74.00577666950001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 65.10874456900001, - 57.674028539999995, - 57.674028539999995, - 39.9776715248, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 30.26606783315, - 29.743317767649998, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 74.0091549725, - 74.1003288045, - 74.1015272545, - 56.2519097805, - 38.538240202800004, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.81322979065, - 38.9283390146, - 65.2449435765, - 98.07451971399999, - 98.201276773, - 100.2474496705, - 101.652857185, - 101.97067619, - 102.00452934799999, - 101.888690317, - 101.719283735, - 99.64102364050001, - 74.60950773249999, - 84.3163050885, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.7714846699, - 38.93409074305, - 65.346225398, - 98.083388106, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.7719505527, - 38.9428514243, - 65.263488485, - 98.07451971399999, - 98.07451971399999, - 99.08005053000001, - 104.90299253299999, - 106.2951802945, - 106.111169697, - 105.7534371105, - 102.310797865, - 99.6286412275, - 74.528792058, - 84.2919453025, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.7459353924, - 38.89293327575, - 65.18833862049999, - 98.07451971399999, - 98.091547128, - 101.4212421215, - 105.301703399, - 106.438027196, - 106.906674753, - 107.089153173, - 106.55631514950001, - 104.5557858225, - 76.033840651, - 85.00755424649999, - 75.8078738905, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.738759888049998, - 38.695693064349996, - 65.1137508905, - 98.07451971399999, - 98.373480019, - 104.17638291050001, - 112.0000967885, - 115.9307951655, - 115.167594537, - 111.7266678255, - 108.3912424595, - 105.6894239765, - 76.37602321300001, - 84.797570387, - 75.569770888, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 31.196115925300003, - 29.83895122005, - 47.396433216750005, - 73.97834893, - 103.862532371, - 111.8843373035, - 114.848854532, - 114.33741903149999, - 115.4735995335, - 117.5176985225, - 115.899542938, - 110.600640419, - 68.16186093399999, - 58.0223442855, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 29.9703804, - 29.7410299124, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 38.538240202800004, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.22035429725, - 39.058624137, - 65.41002795499999, - 98.1000492985, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 82.5313739815, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.218769849050005, - 39.025893668749994, - 65.3598359285, - 98.0825393955, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 82.5313739815, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.1781430978, - 38.992153010150005, - 65.308225655, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 82.5313739815, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.15163269125, - 38.9766922229, - 65.3506875785, - 98.086511172, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 82.5313739815, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.3051944862, - 38.8963122588, - 65.2511521695, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 82.5313739815, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 29.59059362355, - 29.977751991999998, - 47.4956488567, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.1326844555, - 98.253096204, - 98.24533985299999, - 65.23754952300001, - 55.9967731575, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 10.7986761736, - 5.6591993994, - 29.73717154105, - 29.6814054141, - 57.400733757, - 63.555959166, - 85.3892346655, - 84.66240955800001, - 84.54998130899999, - 84.77077988100001, - 84.0992064685, - 60.752022205500005, - 39.2549343904, - 14.22499402305, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.006203894400002, - 38.6792463663, - 65.11742348749999, - 98.07451971399999, - 98.5719937105, - 100.615668165, - 100.564999469, - 100.515721814, - 100.5242584085, - 100.453209724, - 100.386047686, - 100.3160942505, - 74.82932031450001, - 82.86647974399999, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.154258203, - 38.774642119949995, - 65.1661872405, - 98.07451971399999, - 98.07451971399999, - 98.769939488, - 100.97542737549999, - 99.794988612, - 99.81627336550001, - 99.8481498835, - 99.755589792, - 99.628686728, - 74.98569662099999, - 82.97013608450001, - 75.447970438, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.0859772802, - 38.74259781735, - 65.161837699, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.1829267285, - 108.31570781699999, - 113.132840591, - 122.20611606700001, - 126.77019099299999, - 97.8240336675, - 99.0090056835, - 85.966380652, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.8163008652, - 38.5473539508, - 65.10874456900001, - 99.6699328575, - 107.4967236595, - 112.8577478425, - 116.498263894, - 119.0662659385, - 117.9337545855, - 116.570822426, - 115.7777316775, - 112.69819825200001, - 84.1442926765, - 87.4325722595, - 76.11028948500001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.9844685124, - 38.64628622495, - 65.10874456900001, - 98.2896532875, - 105.214588052, - 112.7052671065, - 118.764563376, - 119.2667743785, - 116.571411585, - 113.6959118035, - 111.050585562, - 108.572857128, - 80.218289226, - 83.6385196615, - 75.7869844955, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 27.766196797950002, - 29.87146968385, - 47.4224870858, - 73.965579358, - 98.07451971399999, - 98.1910002095, - 98.449861798, - 98.44750059750001, - 98.4606926085, - 98.475484298, - 98.4592485795, - 98.44565389200001, - 65.4143694755, - 55.9864205155, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 9.085517248899999, - 5.6591993994, - 29.8536628029, - 29.683557641, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.9881702645, - 74.10245446249999, - 74.09985808350001, - 74.093550845, - 56.291121193, - 38.538240202800004, - 14.22499402305, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.37649750205, - 38.688605235850005, - 65.11368382549999, - 98.07451971399999, - 98.07451971399999, - 99.027266536, - 102.3699263665, - 103.486044883, - 103.670547322, - 104.3982462965, - 104.5091683105, - 104.547451092, - 78.333325131, - 81.56556923999999, - 75.782242934, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.362804532349998, - 38.706166010749996, - 65.12999856399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 80.81821505650001, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.43302460845, - 38.7792078132, - 65.180315173, - 98.07451971399999, - 98.07451971399999, - 98.07541311199999, - 98.0799822735, - 98.0800445175, - 98.0797548875, - 98.0794844955, - 98.085165414, - 98.089021464, - 73.972575285, - 80.8193637845, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.43945235235, - 38.7561919068, - 65.1409910565, - 98.07451971399999, - 98.07451971399999, - 98.147678406, - 98.91951918950001, - 99.83651969649999, - 99.82913775600001, - 99.81934135099999, - 99.7706321095, - 99.687567701, - 74.68196364500001, - 81.18023436249999, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.31848686665, - 38.715952223799995, - 65.1726954815, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 80.81821505650001, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 27.8789508453, - 29.9587233498, - 47.55333931545, - 73.968611831, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 65.10874456900001, - 54.2477106905, - 57.696065312, - 40.08440521925, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 7.37235832415, - 5.6591993994, - 30.291508921149997, - 29.97024752715, - 56.368615534499995, - 56.516424005, - 74.1090291735, - 74.0755285615, - 74.0581831785, - 73.965579358, - 73.965579358, - 56.2519097805, - 38.549083287849996, - 12.51183509835, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 27.4327187321, - 39.289454041300004, - 65.59513661449999, - 98.4908639695, - 98.4325366325, - 98.411894961, - 98.37822704749999, - 98.15379797099999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 74.01529572449999, - 80.9966867315, - 75.61964372349999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 27.44881694895, - 39.253230050300004, - 65.543318723, - 98.22877416200001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 80.81821505650001, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.98001427705, - 38.92502733415, - 65.285341212, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 80.81821505650001, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.780440215149998, - 38.82899404465, - 65.2773053045, - 98.1017682725, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 80.81821505650001, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.806280874, - 38.8043976762, - 65.223398863, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 80.81821505650001, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 26.095837045350002, - 29.915427358400002, - 47.519684413149996, - 73.96741295599999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.0808050295, - 65.263463118, - 54.455333335999995, - 57.885566324500004, - 40.239202856300004, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 7.37235832415, - 5.6591993994, - 30.2745937995, - 29.962516198899998, - 56.344493272, - 56.267772427000004, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 38.538240202800004, - 10.7986761736, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.817335614250002, - 38.94321656265, - 65.4309433115, - 98.229232273, - 98.1532929725, - 98.1667552745, - 98.1322353925, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.9712563835, - 79.16829470949999, - 75.4893785995, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 25.285536312599998, - 38.93723850365, - 65.2867743205, - 98.07628759, - 98.07451971399999, - 98.07451971399999, - 98.07608173099999, - 99.3772359005, - 100.97224349950001, - 103.5654563195, - 104.4670398935, - 104.2443513445, - 76.805748665, - 79.3005070185, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 25.0526140179, - 38.7669257163, - 65.15906666699999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.889705605, - 100.34668015000001, - 100.2601201925, - 100.14560295, - 74.228437207, - 79.1220970255, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.966954213749997, - 38.7251824636, - 65.13824255850001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 79.105056132, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.914231115350002, - 38.718921743799996, - 65.160539479, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 79.105056132, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 24.346634564600002, - 29.88478424175, - 47.443859023899996, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 65.10874456900001, - 52.5345517655, - 57.674028539999995, - 39.9707962686, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 5.6591993994, - 29.94468893035, - 29.75160823545, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 38.538240202800004, - 10.7986761736, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 25.20772197395, - 38.9113722418, - 65.2838871885, - 98.0782257885, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 79.105056132, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 25.10291610475, - 38.7388799874, - 65.1471903975, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 79.105056132, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 25.04683534885, - 38.73972842015, - 65.13433865900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07762824950001, - 98.4125936195, - 99.45013972950001, - 99.4176533365, - 99.3670331575, - 75.178842675, - 79.105056132, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 25.0315557433, - 38.748044128349996, - 65.152582342, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 100.112942657, - 103.1146375065, - 103.8031531255, - 103.977460202, - 104.0422972345, - 103.789045147, - 77.059183299, - 79.53550376349999, - 75.3958640065, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.9284872994, - 38.669260672, - 65.109604998, - 98.07451971399999, - 98.07451971399999, - 98.914075521, - 104.0672690395, - 106.425246153, - 106.543297326, - 107.4108553025, - 107.2972392715, - 106.87976042849999, - 80.991220238, - 80.66153840999999, - 75.69344206950001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 24.2217299462, - 29.8109096282, - 47.4013739491, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.090171598, - 103.9802415205, - 108.915255669, - 109.82659624, - 109.775747387, - 109.492552462, - 72.3325014055, - 51.914299741499995, - 57.7921588245, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 5.6591993994, - 29.75328453865, - 29.68226584285, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 74.0003858195, - 74.1052306435, - 74.10334893150001, - 56.360061197, - 38.538240202800004, - 9.085517248899999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.8947739529, - 38.69713367145, - 65.12364314300001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.8733779975, - 100.879678374, - 101.122568307, - 101.2416498085, - 101.3060311095, - 77.470243111, - 77.7773229635, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.84427306625, - 38.668243996950004, - 65.114800169, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.18095215950001, - 99.24662956, - 99.90963179799999, - 99.823073683, - 99.012067172, - 74.1656818915, - 77.3944474045, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.7906637734, - 38.58950744415, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.14365330999999, - 99.080680031, - 99.4961074835, - 99.4420439875, - 98.8686590675, - 74.13559627000001, - 77.399602915, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.82955535745, - 38.6512692668, - 65.11283657950001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.86233753100001, - 99.1306435645, - 99.0856345875, - 73.977917282, - 77.391897207, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.90641325095, - 38.6996055478, - 65.1374590735, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.080119521, - 98.08777506950001, - 98.0798573645, - 73.965579358, - 77.391897207, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 24.450311084400003, - 29.9549299947, - 47.5421516201, - 73.972313067, - 98.13752248200001, - 98.09615560099999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 65.10874456900001, - 50.821392841, - 57.6776660885, - 40.0692348465, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 5.6591993994, - 30.078942502, - 29.8210970983, - 56.25805029, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 38.538240202800004, - 9.085517248899999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 25.228991535, - 38.86566018155, - 65.2204601305, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 77.391897207, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 25.12755620965, - 38.792096295250005, - 65.1724004675, - 98.07451971399999, - 98.07451971399999, - 98.1167133315, - 99.5227166835, - 102.274793634, - 103.795954722, - 104.020673047, - 104.01104692, - 103.83659178100001, - 79.3118353685, - 78.4945888445, - 75.4054076095, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.851134248599998, - 38.6359764814, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.8409518985, - 102.92317837899999, - 104.9665383385, - 105.0344405235, - 105.09294939850001, - 105.0405470085, - 104.912416991, - 79.763824145, - 78.2358219175, - 75.4658001665, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.852472208800002, - 38.644191366049995, - 65.11371642499999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.53808654449999, - 101.01519648349999, - 100.942488137, - 75.508907719, - 77.47043376650001, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.87518614545, - 38.6542926558, - 65.1111213185, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 77.391897207, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 24.4149338129, - 29.914297248700002, - 47.5028781782, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 65.10874456900001, - 49.108233916299994, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 5.6591993994, - 29.903051375700002, - 29.72227263575, - 56.2519097805, - 56.2519097805, - 74.19253706399999, - 82.845769811, - 81.835713992, - 77.8156359045, - 77.747443099, - 56.9263559865, - 38.5730271334, - 7.37235832415, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 5.6591993994, - 29.683176006449997, - 29.73626586175, - 65.1229896185, - 66.6685203965, - 82.36290091949999, - 83.1155406765, - 84.16493020099999, - 84.30767627300001, - 84.1319761355, - 64.785758479, - 43.45933083715, - 7.37235832415, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.6824197736, - 38.538240202800004, - 65.10874456900001, - 98.397495229, - 104.96030631800001, - 116.49667624850001, - 125.3485198615, - 129.614585667, - 129.953774143, - 126.553789557, - 122.74303519050001, - 119.86900378450001, - 91.640410461, - 89.40377736500001, - 84.365770715, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.6375970172, - 38.538240202800004, - 65.3847079805, - 112.5923159425, - 116.96089152500001, - 119.9564857645, - 121.365255677, - 122.24165235449999, - 122.584946199, - 122.07127696849999, - 121.0927655665, - 118.8165402705, - 90.918069609, - 88.428238129, - 83.41055026549999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 99.5095982765, - 104.3736861725, - 108.076021092, - 111.3853889095, - 112.1137675825, - 112.22484593749999, - 111.9173828525, - 110.99680464299999, - 84.025984727, - 80.38118779050001, - 75.931102849, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.7645456989, - 38.5634999197, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.0820714715, - 98.083569401, - 98.08259700949999, - 73.96714483550001, - 75.67873828249999, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 24.45118104355, - 29.9022597602, - 47.42719078335, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 65.10874456900001, - 49.108233916299994, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 5.6591993994, - 29.80440449725, - 29.68674720725, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 38.538240202800004, - 7.37235832415, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.8659175196, - 38.67046969345, - 65.127930502, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 75.67873828249999, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.8864004115, - 38.686263518400004, - 65.14611579849999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 75.67873828249999, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.9972268198, - 38.7320919908, - 65.1614498665, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.0926665205, - 98.1946939165, - 98.5276904565, - 98.5231179035, - 98.5090164935, - 74.035529445, - 75.67873828249999, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.85323078675, - 38.658859346099995, - 65.1187689915, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.512523658, - 100.5101799765, - 102.0370543145, - 102.77261493900001, - 102.731653974, - 102.6019243785, - 78.15250407250001, - 76.2132925665, - 75.4087759195, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.89647456545, - 38.6915495788, - 65.200374519, - 98.0831517495, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 73.965579358, - 75.67873828249999, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 24.239757506049997, - 29.78970546825, - 47.40652278225, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.89913478300001, - 99.4453678495, - 99.4294224155, - 99.3984300045, - 65.10874456900001, - 49.108233916299994, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 5.6591993994, - 29.820554654250003, - 29.70076587055, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 38.538240202800004, - 7.37235832415, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.8207545339, - 38.63005241515, - 65.11143349199999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.0778579005, - 98.09465853750001, - 98.83328328350001, - 99.52713584150001, - 99.491815469, - 99.4463035005, - 74.10341802399999, - 75.6804045845, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.792715698, - 38.603152672600004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.074818134, - 98.075119262, - 98.8299726865, - 100.42173804849999, - 100.745459254, - 100.6691254005, - 75.0889036435, - 75.71202608349999, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.74819905295, - 38.55819528305, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.134949078, - 99.64461114150001, - 100.3980517225, - 101.4717044665, - 102.531204725, - 102.3231662175, - 76.570849369, - 74.2843985495, - 75.42635133350001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.78069449965, - 38.606508981850006, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.076195074, - 98.08343097599999, - 98.0873794715, - 98.0892656035, - 98.07966069899999, - 73.965579358, - 73.965579358, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.7705314446, - 38.57539444365, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.4018580045, - 100.097002415, - 101.4511615765, - 102.7237103545, - 102.899126854, - 102.8101124705, - 78.489795441, - 76.679797253, - 75.5173695845, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 24.0605712116, - 29.68233069455, - 47.395074991550004, - 73.965579358, - 98.106865837, - 101.0841984865, - 105.4311787465, - 109.37987640200001, - 110.2025223805, - 110.106283297, - 110.044432453, - 109.53034122349999, - 72.624522877, - 48.94768786115, - 57.815790512499994, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 74.85557142350001, - 76.6486767185, - 78.345169948, - 79.9282565995, - 79.80276618949999, - 57.219078826, - 38.5755843719, - 5.6591993994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.75890243015, - 38.5649196881, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.053949092, - 100.0896494125, - 100.100518945, - 100.08420307, - 100.006099403, - 99.9082008415, - 74.258121996, - 74.15843695400001, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.8153002288, - 38.5886831524, - 65.10874456900001, - 98.07451971399999, - 98.41094017649999, - 100.2762974655, - 100.823632952, - 104.59253954900001, - 106.2927868725, - 106.3431369085, - 106.1106743875, - 105.803979812, - 81.09481135050001, - 76.7224674645, - 75.681720489, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.7754382715, - 38.584280781000004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.32927582500001, - 101.412953309, - 104.046529235, - 104.87941281399999, - 104.8025715605, - 104.55395604, - 104.31471953350001, - 79.90974368750001, - 75.854134407, - 75.5403782275, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.776891838850002, - 38.57577934975, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 99.76304260350001, - 104.1914032345, - 104.620663188, - 106.0353637435, - 106.9046354225, - 106.6606356725, - 106.18468420549999, - 80.417686175, - 75.2866987745, - 75.5918085615, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.082401304, - 99.9826064155, - 104.6105425425, - 108.576571031, - 110.6723112655, - 111.6136799375, - 111.00487138449999, - 110.4935074435, - 84.0979102665, - 79.174549377, - 75.982940578, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 24.02220601465, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 98.5383789395, - 110.05741349200001, - 113.999216965, - 112.945096764, - 113.6094108915, - 114.5508630115, - 115.1980758365, - 114.4591934755, - 74.4598567975, - 49.1681128706, - 57.885195619, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 74.222457191, - 75.764132757, - 76.754648411, - 77.13613397350001, - 58.0670750005, - 38.71395976395, - 5.6591993994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.69545890765, - 38.5423859129, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.20278293749999, - 101.795334063, - 105.32650555000001, - 108.58004845800001, - 110.22819047200001, - 109.88940262850001, - 109.107339407, - 81.06871252799999, - 75.45764926449999, - 75.6639719495, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.7137012254, - 38.54808332525, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.261936882, - 103.438012876, - 106.6967666275, - 106.704439707, - 106.6051608935, - 106.4444750685, - 106.1870353095, - 80.029689635, - 74.575228202, - 75.503541145, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.7230965683, - 38.547733760949995, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.720249965, - 101.6266385345, - 105.0192813255, - 106.760430069, - 106.75185155950001, - 106.50619822350001, - 106.00392403250001, - 79.6834926185, - 74.8924384465, - 75.6280727015, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.787441059549998, - 38.55787165145, - 65.10874456900001, - 103.7157358635, - 111.682885724, - 116.451847537, - 119.7736773035, - 123.095066333, - 123.9530531285, - 122.98167910400001, - 121.066390728, - 118.97358759149999, - 90.774184351, - 86.7968559105, - 84.3044116275, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 13.12722610085, - 24.6375970172, - 38.538240202800004, - 65.12533963050001, - 103.92540889, - 108.63106910350001, - 111.78134960150001, - 114.5461656415, - 117.518939681, - 121.02665636100001, - 123.086457624, - 122.09142962950001, - 119.262618886, - 91.39474238049999, - 85.6809844815, - 82.8344959165, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 24.06052878525, - 29.6814054141, - 47.4059474023, - 79.506458408, - 111.4865675845, - 117.504894015, - 120.628722164, - 122.9542612945, - 123.73241124399999, - 124.38306695449998, - 124.08092479100002, - 121.4045366745, - 80.72656943999999, - 56.173797231, - 60.1531474245, - 40.03491110115, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 38.538240202800004, - 5.6591993994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.7316903037, - 38.5572363358, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.95304300549999, - 100.185989259, - 102.7322960095, - 103.9166169545, - 103.75106256800001, - 79.3955935405, - 79.045433323, - 77.1817460745, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.70121379215, - 38.543739571699994, - 65.10874456900001, - 98.07451971399999, - 101.3297835505, - 107.643005673, - 109.557296244, - 111.8548867815, - 113.6831708885, - 115.493852257, - 115.3395148735, - 114.413616875, - 87.420537263, - 82.8293598205, - 80.09490923, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 38.538240202800004, - 5.6591993994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.25556493799999, - 102.186426812, - 103.80815078350001, - 105.1826787485, - 105.1337966835, - 104.87968713149999, - 80.369826734, - 78.255194963, - 75.93032973, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.5178998955, - 100.5654403185, - 101.878097063, - 102.1018928885, - 102.0284399045, - 77.736246946, - 77.517235601, - 76.101244107, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 24.02220601465, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 101.618013412, - 110.721838854, - 116.811012113, - 117.714143703, - 117.158843518, - 116.258792849, - 76.4997686185, - 52.364946419, - 58.196102125500005, - 39.9884951618, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 75.504904454, - 77.589416531, - 82.70792497549999, - 87.89210913149999, - 88.64036956250001, - 69.7666886955, - 46.3452811303, - 5.6591993994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 66.25850553949999, - 113.9664126375, - 116.60045235, - 119.222204867, - 122.27633471300001, - 124.98375129349999, - 127.10502372650001, - 128.2145070425, - 126.33112191000001, - 123.362827512, - 94.19283686499999, - 88.481377155, - 85.6051942655, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 67.5720217275, - 112.88740766049999, - 119.73307786299999, - 125.1605309725, - 126.88683649699999, - 128.465518775, - 129.753566726, - 132.539087309, - 132.7933116995, - 130.21257019, - 101.069942099, - 94.533325387, - 89.903605437, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 67.14189700850001, - 115.8475416185, - 121.5966780915, - 126.05077643349999, - 127.1936540325, - 127.9809748335, - 128.313472323, - 128.1323022605, - 125.89580284949999, - 122.63381176399999, - 94.37587022849999, - 89.176380588, - 85.6415131485, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 105.61954479350001, - 116.2351462065, - 123.132957826, - 126.08916098700001, - 128.04073215900002, - 129.11147055400002, - 127.80120262349999, - 125.12898736250001, - 121.51650659500001, - 93.102217782, - 87.4112549905, - 83.9196726105, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.201426382, - 100.870341126, - 108.043829247, - 113.5026115145, - 115.12666378450001, - 116.0927701075, - 116.4660672955, - 115.8913312225, - 114.8027409455, - 87.7260825285, - 83.022551131, - 78.749471527, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 24.02220601465, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 98.5056369545, - 104.19129238000001, - 111.0012901955, - 114.49317870899999, - 115.0637801795, - 115.446988641, - 115.278668438, - 114.824216816, - 77.27180797349999, - 54.08669639, - 58.962694774, - 39.994794390050004, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 76.55055500499999, - 83.374017944, - 86.0951400615, - 87.6333574, - 87.85322121050001, - 65.872858506, - 42.5150894995, - 5.6591993994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 101.4725988615, - 106.991464841, - 111.183200587, - 113.600433052, - 115.46105588799999, - 114.6603609405, - 113.65976679900001, - 87.13302628950001, - 82.9784575945, - 79.9817974445, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 101.94198757849999, - 108.08649049499999, - 111.01771509849999, - 113.4245191075, - 115.2850335515, - 116.871717136, - 117.3675787595, - 116.828378692, - 89.2361396215, - 84.76491918650001, - 82.8880651015, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 100.9106653035, - 104.5776415355, - 105.313776128, - 105.8696295075, - 106.5448472575, - 106.4326949015, - 82.183966732, - 82.6350867725, - 78.2156423135, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 14.8403850256, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 100.120916935, - 105.1020621255, - 110.47345848100001, - 114.6150542015, - 116.325376807, - 116.265228491, - 115.5894763065, - 89.7562652895, - 87.68802828199999, - 83.714769661, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 99.5115198155, - 112.6334760985, - 121.72919103999999, - 124.9300380135, - 126.9959070095, - 127.92117094650001, - 128.82387967600002, - 126.441997756, - 123.35968583500001, - 93.99950367, - 89.61292562199999, - 85.34481716949999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 24.02220601465, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 103.318218385, - 113.92446185, - 118.9979349315, - 119.981733561, - 119.386244338, - 120.9652789635, - 121.179158092, - 118.904459311, - 79.020840908, - 57.763379549999996, - 61.109216667000005, - 40.094215501949996, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.446257946, - 58.971698352000004, - 83.861142602, - 86.41105387, - 86.6316176695, - 87.297133896, - 87.755024288, - 68.0561881215, - 44.829206153550004, - 7.37235832415, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 99.023954783, - 107.24564836, - 116.6032921625, - 121.3146564005, - 126.579338362, - 128.05321914450002, - 130.955755945, - 127.47155814850001, - 122.86419291850001, - 93.36085458849999, - 90.2077427515, - 85.806711276, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 107.893866117, - 118.49912048300001, - 124.45149363499999, - 126.46268787000001, - 127.58199420000001, - 128.69650144550002, - 131.8867148815, - 127.8163467635, - 122.1986416155, - 92.183294403, - 89.60867378900001, - 85.746205502, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 100.653546179, - 107.8834950575, - 112.179288825, - 115.994705307, - 118.6048207705, - 119.3606442375, - 119.490863164, - 119.3089969275, - 92.77170004300001, - 89.674168763, - 86.079882211, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.986541179, - 107.53341614050001, - 117.471673317, - 120.34857082250001, - 122.805129522, - 123.9309337275, - 123.40454924250001, - 123.23810907849999, - 121.35133927300001, - 92.6561785755, - 89.83503450299999, - 85.569152804, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 100.0380453975, - 109.4366592035, - 114.950201349, - 117.17236067200001, - 118.0798728485, - 118.3455187475, - 117.9996749235, - 116.951060973, - 89.018108679, - 86.366662973, - 83.38154724549999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 24.02220601465, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 99.8276717555, - 103.42660473849999, - 105.55044811949999, - 107.745210726, - 109.61132424399999, - 111.0611508775, - 111.92823737900001, - 111.902971008, - 76.5155853495, - 57.8136844635, - 65.0567171165, - 42.652120590100004, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 5.6591993994, - 29.6814054141, - 31.1959892523, - 70.2222167945, - 76.145575342, - 95.653250567, - 95.980896753, - 96.4818178135, - 96.769719349, - 97.24385985800001, - 75.3338623545, - 51.193795514, - 7.37235832415, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 98.3031800985, - 106.639465333, - 116.051234573, - 121.070413399, - 124.09400025949999, - 125.19334263049998, - 126.324991789, - 124.76082179, - 121.6738489145, - 92.383358554, - 89.3735286855, - 85.420714166, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 99.05172583950001, - 103.836835108, - 111.611364969, - 117.44211554600001, - 121.449534881, - 124.1227695555, - 125.5374492625, - 124.69232166399999, - 122.257759452, - 93.18103004800001, - 89.290489911, - 84.97104042, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.6375970172, - 38.538240202800004, - 65.1176375405, - 109.432100984, - 116.247222982, - 121.290821417, - 122.4213780935, - 122.74149551250001, - 124.00556954750002, - 124.255730952, - 122.85513109549998, - 119.4598299535, - 90.138168762, - 87.64367733600001, - 83.3689030555, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 24.6375970172, - 38.538240202800004, - 65.10874456900001, - 103.2313650195, - 114.884795205, - 119.9328321605, - 121.5725895435, - 123.6795043395, - 123.21239297650001, - 121.8436397855, - 120.479436604, - 118.86940033149999, - 90.98702227700001, - 87.965002201, - 83.58054681, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.350755941899997, - 38.538240202800004, - 65.10874456900001, - 100.2187111925, - 107.090884335, - 112.136661086, - 115.4704543155, - 118.110046928, - 120.007652036, - 120.9207385935, - 119.1136676825, - 115.0892407425, - 85.60316526199999, - 84.0992452295, - 76.8332797755, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 25.7353649394, - 29.6814054141, - 47.395074991550004, - 73.9890170895, - 102.7344778735, - 109.248836945, - 113.614591069, - 116.12307936900001, - 116.955275152, - 116.93424824, - 116.97998387800001, - 115.88804820850001, - 76.06602664399999, - 55.0790248525, - 58.154085583000004, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 7.37235832415, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.96681780200001, - 73.9728508735, - 73.9730341585, - 56.2519097805, - 38.538240202800004, - 9.085517248899999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.4696311204, - 38.57932254595, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.721630836, - 102.526891061, - 103.6413103965, - 103.921278915, - 103.94982162250001, - 103.6691431645, - 78.923162366, - 78.142360143, - 75.4938787635, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.350755941899997, - 38.538240202800004, - 65.10874456900001, - 106.5723235695, - 115.2429457885, - 121.3582935535, - 125.866542173, - 131.22838105600002, - 133.24959318350002, - 130.582288352, - 127.9746124005, - 125.721379226, - 97.300466358, - 96.0656522835, - 90.522113618, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.350755941899997, - 38.538240202800004, - 71.3876887365, - 122.0887274855, - 132.071247459, - 136.92776590449998, - 139.410629428, - 142.622872992, - 142.053435507, - 142.32849072099998, - 140.685513718, - 138.16884658950002, - 103.554567416, - 96.76132381000001, - 89.2872536695, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.350755941899997, - 38.538240202800004, - 74.247374478, - 123.81926745850001, - 127.0710472215, - 131.149196566, - 135.7862619045, - 138.2547452125, - 137.42002567650002, - 136.142020751, - 133.3719645715, - 128.4678150815, - 96.46473808799999, - 92.356682155, - 84.9595881415, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.350755941899997, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 100.2771266265, - 106.1926863065, - 109.237663123, - 111.495734559, - 112.9736252505, - 114.250065635, - 113.563866396, - 112.454392478, - 84.3534760835, - 82.84795954149999, - 76.7604849405, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 25.7353649394, - 29.6814054141, - 47.395074991550004, - 76.169729102, - 113.8194971735, - 121.9799879135, - 126.14345248250001, - 126.79732045349999, - 127.49644674099999, - 128.548936973, - 128.791614553, - 125.07050179400001, - 82.820631307, - 62.227269676999995, - 65.3153965275, - 41.579828543750004, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 7.37235832415, - 5.6591993994, - 30.36398131, - 38.56418102205, - 73.9699234825, - 76.711921145, - 97.2469863105, - 100.10779217800001, - 101.22941686349999, - 101.6841044265, - 102.153468472, - 77.562633183, - 52.2287982705, - 9.085517248899999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.350755941899997, - 38.538240202800004, - 67.54016762149999, - 115.398776982, - 122.450691236, - 127.067907426, - 130.3484219875, - 133.1675330145, - 133.7062781305, - 133.541069472, - 133.31985868299998, - 129.4667516495, - 98.081461809, - 96.281248806, - 88.446160667, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.350755941899997, - 38.538240202800004, - 66.3219265005, - 114.7456955005, - 121.307273055, - 127.749166759, - 131.99589525000002, - 134.0806961015, - 135.47079019650002, - 133.7065439435, - 128.8708658365, - 123.45612662100001, - 91.247185622, - 90.1801516615, - 82.72555009, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.350755941899997, - 38.538240202800004, - 65.8373695355, - 113.4342761735, - 119.6346558845, - 124.198484434, - 129.35077188949998, - 132.427889655, - 131.779884274, - 132.139186905, - 132.1066007105, - 129.11768543, - 99.075366267, - 98.3243006485, - 90.2452048965, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 26.350755941899997, - 38.538240202800004, - 66.98641178049999, - 113.8217701975, - 123.371187247, - 130.26919241849998, - 133.48686673350002, - 134.800083951, - 134.4857784165, - 134.2116456585, - 133.48389684199998, - 130.374245503, - 101.52964967449999, - 101.266937552, - 92.6670747485, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 66.6948833245, - 113.9870235475, - 121.6563049815, - 127.66573506649999, - 130.458446297, - 132.0456916665, - 132.660691222, - 134.20503489549998, - 130.6689188025, - 127.59405203150001, - 97.809020734, - 96.35648711450001, - 88.298672244, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 27.448523864149998, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 98.37961037800001, - 102.317561669, - 106.7069568515, - 109.43224908250001, - 110.5782993285, - 111.8254381835, - 112.041561828, - 110.93159926599999, - 72.53722045350001, - 54.0409914675, - 58.010326595, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 9.085517248899999, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 75.766344463, - 81.815189358, - 85.4450540325, - 86.235628731, - 85.909987848, - 63.015582513, - 39.1202787809, - 10.7986761736, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 99.57856702999999, - 108.386163217, - 114.17124043199999, - 114.8909977485, - 114.553968361, - 114.0865432885, - 111.8444075145, - 81.9259805715, - 82.106420631, - 76.01770572999999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 99.2244075455, - 103.2117403445, - 106.0345290405, - 110.1784575845, - 115.334009148, - 119.0254823785, - 117.9757162655, - 115.564619644, - 86.3782827425, - 87.0018835415, - 79.0875121685, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.906005388, - 104.7329590905, - 109.958110158, - 113.9721320375, - 117.550376593, - 120.8326032585, - 119.751085561, - 117.456939199, - 89.1187140585, - 92.0643412465, - 82.5418780255, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 65.10874456900001, - 98.856603051, - 105.904731116, - 112.5855224035, - 118.44904191750001, - 122.6140481425, - 122.31109569849998, - 121.66412383, - 120.6590813885, - 118.7614537405, - 89.937196151, - 92.26270043400001, - 84.141360355, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 65.11752844600001, - 108.36792885450001, - 115.513324659, - 122.6092998965, - 126.564580465, - 129.29565638, - 131.42179670299998, - 129.7605092885, - 125.015168193, - 120.5658893605, - 91.94805057699999, - 94.279485059, - 85.588974831, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 27.448523864149998, - 29.6814054141, - 47.395074991550004, - 78.436067533, - 115.1087757225, - 123.52458085, - 125.94829589100001, - 127.2252509255, - 127.0845925815, - 126.623012566, - 126.36474425399999, - 122.54231222349999, - 80.9461534815, - 63.917273131500004, - 64.197416722, - 41.45744072305, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 9.085517248899999, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 62.082105059, - 67.51015071100001, - 88.367257158, - 89.818122027, - 90.1951613725, - 89.99398933650001, - 89.7591444715, - 68.68988172, - 46.58827514235, - 12.51183509835, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 65.13061326149999, - 109.862147961, - 118.22139845299999, - 123.62562890999999, - 127.10728094899999, - 130.0743697135, - 129.323873212, - 128.371153034, - 125.740587304, - 122.25569754649999, - 92.9527644205, - 94.160716957, - 84.7064194075, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 65.10874456900001, - 99.6367862175, - 107.333958589, - 113.915549052, - 117.2764752375, - 119.65772892, - 120.182429729, - 119.95241448450001, - 118.9179383785, - 117.6908526795, - 90.238035454, - 92.23871880099999, - 82.7468352855, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 100.605584376, - 106.889535117, - 110.05855841099999, - 112.30064140549999, - 115.370264698, - 117.899387194, - 117.81953024250001, - 116.900405533, - 89.095411941, - 90.695407268, - 81.948850938, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 65.10874456900001, - 98.19100942249999, - 103.0133978325, - 113.152031802, - 119.9852859475, - 122.857026547, - 123.150543429, - 122.66299794400001, - 121.574039939, - 119.29303115500001, - 91.6366685375, - 95.3755300295, - 84.6277742065, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.06391486665, - 38.538240202800004, - 65.10874456900001, - 101.9675730595, - 109.98929742600001, - 115.5836649755, - 118.733202857, - 121.23577631799999, - 121.7396387005, - 121.181777618, - 120.110977838, - 118.5940835635, - 90.027676251, - 91.4106896205, - 78.0069089645, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 29.16168278885, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 98.07451971399999, - 102.673983619, - 110.471298396, - 115.611588259, - 121.0367787095, - 122.54923143449999, - 121.71594524950001, - 119.0544865785, - 76.4636212705, - 60.116647734, - 58.8665490725, - 40.26749078425, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 10.7986761736, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.889338365, - 84.24261981699999, - 90.415524385, - 91.592144136, - 91.478047438, - 91.0225783585, - 69.229476718, - 45.418252755400005, - 14.22499402305, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 10.7986761736, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 76.3456176375, - 79.39554425, - 80.4498357515, - 80.481483693, - 80.64585825850001, - 61.89573148149999, - 39.31701452855, - 14.22499402305, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.7770737914, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.81437693150001, - 102.885747443, - 109.8649656105, - 113.0887828745, - 112.74937714149999, - 112.237909665, - 111.5738845745, - 84.8844686675, - 88.87583794150001, - 76.873737659, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.7770737914, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 100.03575540050001, - 108.39849860199999, - 112.281142535, - 116.75491578750001, - 119.6787577795, - 120.7570521335, - 120.290778801, - 118.676176481, - 89.874692803, - 94.0731507685, - 83.913367307, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.7770737914, - 38.538240202800004, - 65.10874456900001, - 100.17787604450001, - 108.155114574, - 118.30860883749999, - 122.98947928199999, - 124.84939894050001, - 127.7366576185, - 127.00572252399999, - 124.87344863199999, - 122.19279302049999, - 93.96505543449999, - 98.63537804, - 88.814470721, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.7770737914, - 38.538240202800004, - 65.674524028, - 111.987675254, - 120.57868615, - 125.2618316465, - 127.4239487865, - 130.292708685, - 132.097617496, - 131.818983883, - 129.100727693, - 126.481037137, - 98.407044027, - 103.4635876845, - 91.09182340650001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 29.16168278885, - 29.6814054141, - 47.4271306465, - 85.70074720400001, - 122.47165682949999, - 128.528834685, - 131.2197374425, - 132.9692197425, - 133.1125947505, - 131.414336281, - 129.0741575905, - 126.427112199, - 85.501031224, - 72.47120231400001, - 70.172984917, - 49.02421880125, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 10.7986761736, - 5.6591993994, - 29.8000756819, - 34.8927002704, - 72.611094722, - 80.6513947765, - 103.289428459, - 104.70219727850001, - 105.9916498075, - 104.63350029499999, - 100.9241559485, - 77.138163046, - 51.259615565, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.7770737914, - 38.538240202800004, - 65.12949768349999, - 103.602417758, - 116.977713846, - 125.1737457485, - 126.3787931205, - 126.5913899655, - 126.83443130599998, - 126.9948845045, - 125.9342002915, - 122.409262843, - 91.70135293649999, - 97.69930817400001, - 86.6607349425, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.7770737914, - 38.538240202800004, - 65.10874456900001, - 98.3353901425, - 104.29916233649999, - 112.4661890095, - 118.7502110075, - 122.37251334749999, - 122.7405379585, - 122.51466001, - 122.05720197650001, - 120.25705749950001, - 91.464034618, - 97.427400197, - 85.28327483, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.7770737914, - 38.538240202800004, - 65.10874456900001, - 98.2402697995, - 103.760053735, - 110.2963628295, - 113.66177193200001, - 117.860636082, - 120.711001608, - 121.6164029345, - 120.0242237705, - 117.61488771799999, - 89.4122769105, - 95.068366515, - 82.957419254, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.7770737914, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.08368684649999, - 107.07448441849999, - 118.2947400365, - 121.0921825975, - 120.8604309395, - 120.324947096, - 118.73837945300001, - 115.523419757, - 86.02759267, - 92.449727091, - 81.7814465665, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.7770737914, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 100.3085080815, - 105.0498611235, - 106.0040671745, - 106.2633652995, - 108.461701103, - 111.170834075, - 111.4494493735, - 110.99123266250001, - 87.337805284, - 92.7442369645, - 81.67948687399999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 30.8748417136, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 98.07451971399999, - 100.4899264755, - 102.3885382305, - 103.8793966855, - 105.0133224755, - 105.706020821, - 105.98938291900001, - 105.7153490525, - 73.7012156405, - 60.773016832, - 58.232003237, - 40.0224152093, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.3407477605, - 59.8842330465, - 85.750733547, - 90.749212168, - 92.4478954895, - 92.0778205405, - 91.34529307449999, - 67.0956586485, - 43.989680971300004, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.490232716099996, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.4417517665, - 101.433344251, - 103.293053358, - 104.3395855575, - 104.9478102315, - 105.17568604200001, - 105.0411836035, - 104.7001126995, - 81.8535370255, - 88.205350127, - 76.0812051465, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.490232716099996, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.161216741, - 104.364944366, - 106.5795893465, - 106.88416776250001, - 106.91142031349999, - 106.4370014675, - 83.420194737, - 90.0165888475, - 76.99913604, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.490232716099996, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.65333608249999, - 100.65338018300001, - 101.6642717885, - 79.01360297800001, - 84.909655769, - 75.589296096, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.51308030505, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.9688980295, - 102.8978323435, - 106.7992565725, - 108.454879836, - 108.3821776755, - 108.163024193, - 107.815511746, - 83.584206422, - 88.3846397125, - 76.3181158365, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.5124873536, - 38.539349318599996, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 101.7498815105, - 108.648036598, - 111.213286364, - 112.1256796965, - 112.7166581935, - 112.674368955, - 111.8717032505, - 88.5117007625, - 92.0845037375, - 80.4088884315, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 30.8748417136, - 29.6814054141, - 47.395074991550004, - 75.2649137875, - 107.3932898065, - 113.7945858305, - 119.7635813935, - 124.072912955, - 125.83143184849999, - 126.2122625855, - 126.30010857, - 124.55788775500001, - 85.884937374, - 69.071637622, - 66.982088232, - 44.4674172341, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 29.6814054141, - 33.28942496655, - 71.4957440305, - 80.80544304600001, - 103.8157113205, - 105.36430963449999, - 109.39321398099999, - 109.4800497465, - 106.983455167, - 87.2995808935, - 60.6528994765, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.490232716099996, - 38.538240202800004, - 71.9332691705, - 120.8094180645, - 132.9664008125, - 146.203294003, - 147.717146898, - 145.59639971, - 144.4243066245, - 142.9487424115, - 138.5979092695, - 132.0842858925, - 102.80020925950001, - 104.034351947, - 92.82058767299999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.490232716099996, - 38.538240202800004, - 69.9428097015, - 118.32088898849999, - 124.68071240949999, - 130.5558583, - 137.840360547, - 141.634247394, - 140.16330398250003, - 140.7628223765, - 138.4682046495, - 132.068981162, - 102.972615645, - 104.59124087549999, - 93.0215079655, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.490232716099996, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 99.08172198999999, - 107.260388683, - 110.3853176505, - 113.4127918655, - 115.1220025705, - 114.95469577, - 114.83463748749999, - 113.0853786165, - 87.8854181805, - 90.7250819175, - 77.7230966945, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.490232716099996, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 99.4774881175, - 107.90113246050001, - 111.0100125735, - 112.2820615955, - 112.769312282, - 112.5376962915, - 111.680404839, - 110.31270848599999, - 86.6039631085, - 89.0466937685, - 77.00158151149999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.490232716099996, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 101.5858477965, - 108.93356579099999, - 111.69835389049999, - 111.6400775225, - 111.15979853500001, - 110.53012298899999, - 109.32014108450001, - 87.15185121399999, - 89.688925755, - 77.1470954915, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 30.8748417136, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 98.07451971399999, - 98.07627902700001, - 98.5203447675, - 103.169908323, - 106.4844207555, - 107.057415113, - 107.0726347855, - 106.717227869, - 75.2748662915, - 58.048795147, - 57.678972763, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 43.677716977, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.317834952549994, - 38.60986842215, - 65.10874456900001, - 98.07451971399999, - 98.2756480205, - 105.64818258400001, - 113.4045963425, - 118.968107528, - 120.5051291775, - 118.89694757250001, - 115.8769664725, - 111.9204984115, - 87.6578171245, - 88.2756031645, - 77.116710347, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.20339164085, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.587893488, - 99.76155224099999, - 99.742544402, - 99.7269171415, - 99.69121335450001, - 99.6163679055, - 79.9047064655, - 84.80182819, - 75.73267536899999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.28842612165, - 38.563827944450004, - 65.10874456900001, - 98.07451971399999, - 98.4225620295, - 101.84403212449999, - 105.23273336449999, - 106.581141648, - 106.539771922, - 106.3634201005, - 106.0788290785, - 105.6450766145, - 85.6007852805, - 86.68451684099999, - 76.8111276775, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.22595363695, - 38.538240202800004, - 65.10874456900001, - 98.14113543149999, - 100.062445013, - 103.684661201, - 108.3957736735, - 113.071327669, - 114.1809330075, - 114.50312645400001, - 114.2914210065, - 113.308300533, - 90.0602935325, - 92.646320436, - 81.3034714495, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.20339164085, - 38.538240202800004, - 65.10874456900001, - 98.122176423, - 104.693958136, - 118.3415753405, - 124.51861545549998, - 127.69490661500001, - 128.584986007, - 128.7082483155, - 124.96449559499999, - 120.359357292, - 96.180701039, - 96.42436836, - 83.3892767895, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 32.5880006383, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 98.1463024995, - 102.975210537, - 109.645027681, - 111.9256397235, - 112.6867586035, - 112.906296969, - 112.4320562375, - 111.2570252835, - 78.6826977905, - 59.4786736425, - 58.856741631, - 40.301874889649994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.35323879, - 57.7934305735, - 79.551844334, - 84.1628611115, - 85.9898689635, - 85.86117768, - 84.9660849725, - 58.9598195985, - 46.2952778798, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.5811656805, - 64.158386039, - 87.167870373, - 85.77726758700001, - 85.3855967865, - 83.85385174199999, - 81.3200343075, - 57.2264675245, - 45.428970493, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.20339164085, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 100.0232510585, - 105.485516767, - 105.682720907, - 106.05320904, - 106.3602618455, - 106.4139475305, - 106.1287541095, - 105.55732267699999, - 86.0969415985, - 86.165059513, - 76.9991233835, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.20339164085, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 102.60921857550001, - 110.242627435, - 110.505562777, - 110.3120919425, - 109.841197842, - 109.44171329299999, - 107.87133610000001, - 86.6224003025, - 85.82817456000001, - 76.320052198, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.20339164085, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.1890238995, - 100.4497371575, - 104.36036835350001, - 106.612731484, - 107.4061630365, - 107.451435266, - 107.0255132885, - 106.32271184599999, - 87.70022007600001, - 86.6703191095, - 77.0578127795, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.20339164085, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 98.0932070875, - 98.4033228105, - 99.074653987, - 99.7054453, - 100.3591048105, - 100.5977391295, - 100.4801098055, - 100.4086937145, - 82.4373610505, - 85.5600533555, - 76.188347326, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 34.30115956305, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.39575103, - 103.65136891649999, - 104.092327611, - 103.85066553450001, - 103.47076023700001, - 74.3486505725, - 57.748172564499995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 56.2519097805, - 47.104034826450004, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.9756236281, - 38.56845149395, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.69473809, - 99.64447395350001, - 101.1543848765, - 101.8483421045, - 101.7392112935, - 101.5518514335, - 84.042443856, - 85.04247323300001, - 75.9487331765, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.0617921265, - 38.56304220155, - 65.10874456900001, - 98.07451971399999, - 98.18639672500001, - 100.0589990475, - 103.2492710515, - 105.5443317925, - 107.06967347150001, - 107.69842768400001, - 107.4206667935, - 106.67846589, - 87.831788884, - 86.2821496095, - 77.00482243750001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.916550565600005, - 38.538240202800004, - 65.10874456900001, - 98.07451971399999, - 99.1086918125, - 100.6391071065, - 100.694902629, - 105.302254535, - 110.312377565, - 110.2307696405, - 108.7051267415, - 106.082051238, - 85.4662918885, - 85.9730330975, - 76.6641208635, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.916550565600005, - 38.538240202800004, - 65.10874456900001, - 100.3439128985, - 108.1086183005, - 107.878264731, - 108.102706707, - 108.161301386, - 108.322957578, - 108.3596992885, - 107.81365328950001, - 107.5684016895, - 89.38871540849999, - 86.6545703445, - 77.33757353300001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.916550565600005, - 38.538240202800004, - 65.2589327035, - 105.984934335, - 114.8423233315, - 126.1846563435, - 126.313173345, - 124.86178046799999, - 124.6505508585, - 125.042393726, - 119.6924350165, - 111.642536104, - 90.0205965715, - 86.95157999749999, - 77.68213173400001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 34.30115956305, - 29.6814054141, - 47.395074991550004, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.09621838, - 104.2927560915, - 108.23968036699999, - 107.620691258, - 106.27827566799999, - 74.7405102565, - 57.6907569925, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 29.6974197375, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.9658624495, - 73.965579358, - 56.2519097805, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.981372942600004, - 38.622568804299995, - 65.129916832, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.5900819105, - 105.76530526, - 108.4699640905, - 107.9379589725, - 106.2788056775, - 86.4454382385, - 84.2939523295, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.0049145315, - 38.5852813129, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.569224187, - 100.0801526525, - 103.188477542, - 104.673576698, - 104.370525654, - 103.96058217950001, - 86.109966257, - 85.1373697955, - 76.0038458755, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.0036444461, - 38.5769004685, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.7382274635, - 101.63590604699999, - 104.1161901935, - 103.9068103725, - 103.748569656, - 103.646478163, - 103.261396339, - 85.75888024049999, - 84.918936294, - 75.926787219, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.985428885000005, - 40.27654203125, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.0968926435, - 98.53935472250001, - 98.8776630125, - 98.8660103135, - 98.84459800549999, - 98.824432885, - 84.95702324899999, - 84.9029589565, - 75.8079426265, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.1927461754, - 40.411402271899995, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 99.2339844675, - 101.4898350345, - 101.8409417175, - 101.800861722, - 101.79822263, - 101.6942105515, - 101.303098707, - 85.7485739005, - 85.26530231950001, - 75.9409522405, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 34.563636399249994, - 31.60072184445, - 47.4024047884, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.650505589, - 99.583737978, - 99.8960774425, - 99.8351543755, - 99.7499821935, - 99.641475801, - 76.35329491799999, - 57.851957969999994, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 7.37235832415, - 29.7158705596, - 29.6814054141, - 56.2519097805, - 56.6124346695, - 77.878543797, - 80.721183531, - 80.9682383485, - 78.903834637, - 77.04446552750001, - 57.339814806, - 48.819159781699994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.15530597175, - 40.40317402985, - 65.10874456900001, - 98.07451971399999, - 98.686212587, - 105.8731451005, - 114.3976890755, - 118.939394796, - 121.89982539799999, - 123.893227938, - 120.1053182475, - 114.26222241400001, - 93.92720313449999, - 90.941911719, - 79.25686420449999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.944550551249996, - 40.25818886455, - 65.10874456900001, - 98.1166111735, - 101.322179092, - 110.649168964, - 117.30287988, - 122.18161896500001, - 121.437574056, - 117.19097413499999, - 112.0775526215, - 107.9938709835, - 90.7430101505, - 86.951671617, - 76.51216876550001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.94954990115, - 40.263065632700005, - 65.10874456900001, - 98.199792359, - 104.5938775745, - 110.49071441150001, - 110.263791344, - 110.10339325049999, - 110.160190295, - 110.10942458150001, - 109.9833151975, - 109.7584625185, - 88.3522581475, - 85.68883737750001, - 76.44058113999999, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 34.964363157150004, - 40.275257238200005, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.092117629, - 99.04273862599999, - 99.9203230835, - 99.855067332, - 99.82523552900001, - 99.7446918695, - 101.318934294, - 85.241005517, - 84.694607969, - 75.438094578, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.2940736236, - 40.500783638600005, - 65.12388640750001, - 98.07451971399999, - 98.07451971399999, - 98.134024664, - 98.880976071, - 99.689817623, - 99.9205291095, - 99.907009018, - 99.8207228965, - 101.4545233125, - 85.6109166025, - 84.961075442, - 75.6785991815, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 34.55118202475, - 31.5912323536, - 47.41178917415, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 99.7876786385, - 75.3876981175, - 57.674028539999995, - 57.674028539999995, - 39.97175228045, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 7.37235832415, - 29.942171514050003, - 29.72796429285, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 57.965068705, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.54957940025, - 38.59832689515, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.10628197349999, - 98.86036714, - 99.57786620899999, - 99.6444485805, - 99.593504777, - 101.19102275799999, - 109.61132784, - 84.9287383125, - 84.589432383, - 75.39798849, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.4336998792, - 38.656865901399996, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 101.01412367649999, - 105.9349548065, - 106.329070636, - 106.202081846, - 105.489575771, - 102.72143866249999, - 109.7567668935, - 84.91514941999999, - 84.6802888635, - 75.5124374215, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.263819825099997, - 38.5728769357, - 65.10874456900001, - 98.07451971399999, - 98.44458652, - 102.1736192245, - 105.2201709205, - 105.3242488985, - 105.1135066615, - 104.7713787075, - 105.434302574, - 110.4528932585, - 85.3314857355, - 84.883325356, - 75.847076196, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.3346647724, - 38.5511367158, - 65.124784399, - 101.265158692, - 109.17453144, - 113.931422143, - 117.651669551, - 116.94555037399999, - 114.02442753049999, - 110.79607230549999, - 110.415672477, - 116.3870099265, - 87.488896111, - 85.723165037, - 76.469888753, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.12664028555, - 38.538240202800004, - 65.10874456900001, - 98.7317070765, - 105.69616241150001, - 112.704911935, - 115.44631225500001, - 116.05753905399999, - 114.988144596, - 113.470253914, - 111.594130058, - 115.463234814, - 86.601459812, - 86.109023822, - 76.86645083, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 27.47759870855, - 29.6814054141, - 47.395074991550004, - 74.480028706, - 106.718160059, - 111.61233628, - 112.0113018305, - 112.6736849295, - 114.8787132845, - 114.8251420875, - 111.85009511, - 116.12361126149999, - 77.2120606375, - 59.0158129055, - 58.753053817, - 40.16820582495, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 9.085517248899999, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 74.2102772585, - 74.2531581785, - 77.66285204549999, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.294401747699997, - 38.5910844796, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.38264687325, - 38.5644753461, - 65.10874456900001, - 98.07451971399999, - 98.0969661645, - 99.39479796500001, - 103.180645705, - 105.358820017, - 105.1613510865, - 104.934612685, - 104.4639864795, - 109.81200108750001, - 85.26635558699999, - 84.719455305, - 75.4703747225, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 28.478176582950002, - 38.61554646625, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.1573599315, - 98.22123046099999, - 98.216024944, - 101.6328986395, - 108.476193708, - 84.27647180000001, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.0537615648, - 39.3408387865, - 65.807229224, - 98.5017004325, - 98.2613997805, - 98.301693788, - 98.20863150800001, - 98.07451971399999, - 98.1710794985, - 98.1521752995, - 101.628329013, - 108.589816641, - 84.49853529100001, - 84.488895585, - 75.642419941, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.607162199250002, - 38.90991046335, - 65.1167397485, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 29.572951218500002, - 29.77689472145, - 47.395074991550004, - 73.965579358, - 98.07451971399999, - 98.087362188, - 98.37967235100001, - 98.50975631099999, - 98.50088347799999, - 98.485522324, - 101.8860377265, - 108.702313752, - 75.51044820950001, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 10.7986761736, - 5.6591993994, - 29.739192281050002, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 77.391897207, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.1248951658, - 38.7900987569, - 65.209835127, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.22851761950001, - 98.4081491435, - 98.38752116650001, - 101.790849951, - 108.628751504, - 84.38883695850001, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.03995345815, - 38.552375262300004, - 65.10874456900001, - 99.389771275, - 108.6041419, - 115.680248494, - 120.117492115, - 121.415872189, - 119.178923634, - 115.720182248, - 113.6838050925, - 116.5273028025, - 87.732768209, - 86.321453538, - 77.0090750475, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 29.787745593950003, - 38.538240202800004, - 65.10874456900001, - 99.07971888750001, - 100.917174808, - 105.4059994725, - 107.7545387615, - 108.559186112, - 108.7204272545, - 108.617798293, - 110.5323670855, - 111.837753037, - 86.2290360435, - 85.610927893, - 76.078022437, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 10.7986761736, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 77.391897207, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.235996639350002, - 38.85962056985, - 65.2391259525, - 98.07451971399999, - 98.07451971399999, - 98.08105179750001, - 98.400069065, - 98.7185611205, - 98.6804475385, - 98.5927176015, - 101.9175853445, - 108.37510987949999, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 29.4804335684, - 29.88734796805, - 47.523204442, - 73.969441399, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 75.3876981175, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 10.7986761736, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 77.391897207, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 30.088507084750002, - 38.56896641225, - 65.10874456900001, - 98.1038766445, - 99.246880011, - 103.282556693, - 108.323422358, - 110.3775523885, - 111.0944139665, - 110.71599794500001, - 111.40166601050001, - 114.7547482425, - 86.670454856, - 85.5364479675, - 75.8576731965, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.9294697754, - 38.72421232655, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.3486199115, - 98.7797524185, - 98.806887464, - 98.764298509, - 98.7790938075, - 102.1373135865, - 108.784731169, - 84.298794466, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.20143681615, - 38.74326005415, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.7425364415, - 100.1951098315, - 100.558429673, - 100.475724263, - 100.36426177999999, - 103.45904103950001, - 109.5909693105, - 84.7161798155, - 84.28484424450001, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.15485029, - 38.804243976, - 65.10874456900001, - 98.07451971399999, - 98.1447018115, - 99.31284149150001, - 99.7514032575, - 99.7035197165, - 99.67112011799999, - 99.656509758, - 102.90590205, - 108.96303675, - 84.431646165, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.02184310965, - 38.761605065599994, - 65.109604998, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.39944765, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 31.63462021815, - 30.228225434349998, - 47.779352818599996, - 74.09377355449999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 75.3933294055, - 57.7614679645, - 57.8119813235, - 40.175056144900005, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 12.51183509835, - 5.6591993994, - 30.60461692875, - 30.3981505237, - 56.868316344499995, - 56.843905261, - 74.506210087, - 74.49500846149999, - 74.487158671, - 74.498885203, - 77.9436111095, - 66.966614726, - 49.31749985575, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.543166480699995, - 39.233585485, - 65.5334274055, - 98.119357379, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3989177255, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.15362543695, - 38.821559545, - 65.112796021, - 98.07451971399999, - 98.3420021415, - 101.4686221875, - 103.530091797, - 100.935710005, - 100.3671961875, - 99.77858109, - 103.980381586, - 108.5608692415, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.8042945652, - 38.58652463825, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.21251747550001, - 98.4112319695, - 98.4034590855, - 98.39691927049999, - 98.37918388749999, - 103.4897727235, - 108.612666644, - 84.49408634000001, - 84.3201056425, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 31.8179276983, - 38.6588951438, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 103.213996488, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 32.05289741435, - 38.7841738597, - 65.115223569, - 98.07451971399999, - 98.084703823, - 98.531679834, - 98.8396556395, - 98.8335996925, - 98.8259594865, - 98.8358443285, - 103.947762621, - 108.95151387, - 84.66423591300001, - 84.26548175, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 33.10181018175, - 30.02031113995, - 47.4478766367, - 73.965579358, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 103.213996488, - 108.353473262, - 75.3876981175, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 29.7771721373, - 29.6814054141, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 79.105056132, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.6732545775, - 16.696028621299998, - 16.6847631288, - 34.1457417529, - 39.1859745066, - 65.364821986, - 98.079557503, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.2504094625, - 84.460612298, - 75.809928183, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.62519196805, - 16.6323495975, - 16.90138032055, - 17.047770173150003, - 17.21085491865, - 34.478283875049996, - 39.32527460725, - 65.324821238, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.65721146285, - 16.79077938135, - 17.0020739588, - 17.036129697699998, - 17.1880394185, - 34.43810720565, - 39.16624776015, - 65.181137369, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.700835519199998, - 16.763101080450003, - 16.7695564895, - 16.90005932865, - 17.0708111111, - 34.33907737455, - 38.986557370199996, - 65.11755216899999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.60814601265, - 16.6681736277, - 34.0890676676, - 38.875920242300005, - 65.10874456900001, - 98.07451971399999, - 98.07451971399999, - 98.092774943, - 98.1794877945, - 98.173617003, - 98.171416587, - 98.17029117499999, - 101.5762526945, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 33.26637237055, - 30.033064349100002, - 47.4080134407, - 73.965579358, - 98.07451971399999, - 98.32442184749999, - 98.8773643295, - 98.83863298349999, - 98.802329657, - 98.7967521495, - 102.190466592, - 108.649724529, - 75.3876981175, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 14.22499402305, - 5.6591993994, - 29.6814054141, - 29.6814054141, - 56.900617030999996, - 58.8211875475, - 79.731543179, - 78.2891645305, - 78.724210353, - 79.98341933100001, - 80.0401433395, - 67.203992136, - 49.058337374349996, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.7463042808, - 38.685945589149995, - 65.10874456900001, - 98.07789532849999, - 100.8875950405, - 110.161236582, - 115.391987949, - 116.71213655, - 111.7211774585, - 108.27795680199999, - 108.129757255, - 110.37309067449999, - 85.743917786, - 85.265274763, - 76.0306047395, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.5690842291, - 38.57771928795, - 65.10874456900001, - 98.59749835550001, - 105.192185458, - 114.791826968, - 116.498316582, - 115.188047251, - 112.651649109, - 110.8686775985, - 111.2513303135, - 114.819650396, - 87.5138396345, - 86.633555888, - 77.3027533465, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.2787359927, - 38.538240202800004, - 65.10874456900001, - 98.7478073005, - 105.6448618345, - 114.2073179835, - 120.2000820005, - 120.1826760135, - 116.3488774435, - 113.660769964, - 110.22409025649999, - 110.7940263415, - 85.860814574, - 85.2336324195, - 75.938747284, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.381135937399996, - 38.54240452135, - 65.10874456900001, - 98.8964494, - 104.971772676, - 113.45196996450001, - 112.808334487, - 110.730862691, - 110.47286564150001, - 108.7419076355, - 107.063394993, - 110.47947516699999, - 85.8226221065, - 85.40150093150001, - 76.061119959, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 33.4807738505, - 38.5839587368, - 65.10874456900001, - 98.32399629300001, - 100.73420046349999, - 103.3401641665, - 103.20998616199999, - 103.19785384, - 103.18386531850001, - 103.30484605, - 104.9144086905, - 109.98880505700001, - 85.0928493225, - 84.620337242, - 75.43954980150001, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 33.09590974065, - 29.9431309534, - 47.4068062142, - 73.965579358, - 98.2428021705, - 98.7290606095, - 98.8136112415, - 99.100191912, - 99.11592018, - 99.051610669, - 102.315212758, - 108.8351945855, - 75.3876981175, - 57.674028539999995, - 57.674028539999995, - 39.96035896245, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 29.890764529949998, - 29.6814054141, - 56.254010516499996, - 57.0191690945, - 75.239144791, - 74.426005617, - 74.0473039365, - 73.965579358, - 77.391897207, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.887797085849996, - 39.11199519165, - 65.227675254, - 98.07451971399999, - 98.4070119065, - 104.914150241, - 113.11843999550001, - 108.90842531050001, - 104.58954008699999, - 102.429212574, - 102.676059475, - 108.914773991, - 84.6082405045, - 84.2717809695, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 29.847549267799998, - 29.6814054141, - 56.864818681, - 59.06144817, - 83.27550555799999, - 86.305570895, - 84.5170160795, - 80.5233282615, - 79.280646057, - 66.539973621, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.4551328318, - 38.92142728275, - 65.273814047, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.5321134848, - 38.9631624071, - 65.153085826, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.567422785199994, - 38.9024509697, - 65.1472328495, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.3876981175, - 30.45418713595, - 16.553543950349997, - 16.553543950349997, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 34.924103483550006, - 30.0675227067, - 47.54576009865, - 73.96727002200001, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.32530984249999, - 99.2078228525, - 98.353618229, - 101.5008375635, - 108.353473262, - 75.3876981175, - 57.674028539999995, - 57.7073092475, - 40.090922950949995, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 5.6591993994, - 30.13853677225, - 29.8100812195, - 56.2519097805, - 56.2519097805, - 73.965579358, - 73.965579358, - 73.965579358, - 73.965579358, - 77.391897207, - 66.5308633285, - 48.817193751199994, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 15.938152947799999, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 16.553543950349997, - 35.3319917274, - 38.79053391875, - 65.2323684005, - 98.0753801425, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 98.07451971399999, - 101.5008375635, - 108.353473262, - 84.244532906, - 84.244532906, - 75.395445821, - 30.45418713595, - 16.553543950349997, - 16.553543950349997 - ], - "bau_critical_load_met": true, - "bau_critical_load_met_time_steps": 0, - "annual_calculated_kwh": 1.12282905e6 - }, - "Messages": { - "errors": [], - "warnings": [ - [ - "core_electric_utility.jl_187", - [ - "When using stochastic outage modeling (i.e. outage_start_time_steps, outage_durations, outage_probabilities), \n emissions and renewable energy percentage calculations and constraints do not consider outages." - ] - ], - [ - "core_reopt.jl_641", - [ - "Adding binary variable to model outages. Some solvers are very slow with integer variables", - "Adding binary variable to model outages. Some solvers are very slow with integer variables" - ] - ], - [ - "core_pv.jl_152", - [ - "PV inv_eff will be ignored because dc_coupled_with_storage=true. The inverter of the DC coupled PV and electric storage system will be defined by ElectricStorage inverter_efficiency_fraction and rectifier_efficiency_fraction.", - "PV inv_eff will be ignored because dc_coupled_with_storage=true. The inverter of the DC coupled PV and electric storage system will be defined by ElectricStorage inverter_efficiency_fraction and rectifier_efficiency_fraction." - ] - ], - [ - "src_operators.jl_279", - [ - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", - "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y." - ] - ] - ] - }, - "PV": [ - { - "electric_to_grid_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "production_factor_series": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0286, - 0.450571, - 0.633268, - 0.744947, - 0.793452, - 0.78297, - 0.715558, - 0.588895, - 0.40189299999999994, - 0.101677, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028162, - 0.45753699999999997, - 0.642251, - 0.754753, - 0.803629, - 0.793688, - 0.7219990000000001, - 0.595598, - 0.408476, - 0.007211, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028044, - 0.19891999999999999, - 0.646805, - 0.767886, - 0.824961, - 0.815863, - 0.748986, - 0.618642, - 0.427358, - 0.109796, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10198600000000001, - 0.46055799999999997, - 0.646065, - 0.761364, - 0.808933, - 0.798491, - 0.731373, - 0.603872, - 0.418497, - 0.107887, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027690000000000003, - 0.44222100000000003, - 0.623648, - 0.736392, - 0.784879, - 0.774659, - 0.5752849999999999, - 0.384918, - 0.407344, - 0.051701000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034294, - 0.43924, - 0.607711, - 0.49395999999999995, - 0.470439, - 0.590503, - 0.701127, - 0.582704, - 0.406561, - 0.11155, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09420300000000001, - 0.423632, - 0.5959139999999999, - 0.7097100000000001, - 0.763675, - 0.760593, - 0.702431, - 0.5813189999999999, - 0.4016, - 0.1135, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.099858, - 0.451869, - 0.6443920000000001, - 0.768126, - 0.8269099999999999, - 0.819444, - 0.75181, - 0.627075, - 0.436331, - 0.131458, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026475000000000002, - 0.205537, - 0.631447, - 0.743663, - 0.795695, - 0.788168, - 0.726307, - 0.604583, - 0.425152, - 0.137095, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.04018, - 0.439099, - 0.618131, - 0.621395, - 0.559123, - 0.663237, - 0.450356, - 0.433272, - 0.25259899999999996, - 0.04169, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0039169999999999995, - 0.025873999999999998, - 0.168769, - 0.677282, - 0.745774, - 0.582485, - 0.5360069999999999, - 0.581296, - 0.369096, - 0.135547, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09023, - 0.421796, - 0.607395, - 0.726932, - 0.783492, - 0.777952, - 0.713266, - 0.5940599999999999, - 0.419165, - 0.147207, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.094402, - 0.425144, - 0.6031749999999999, - 0.7110639999999999, - 0.7654890000000001, - 0.7645, - 0.7089529999999999, - 0.594789, - 0.419214, - 0.144476, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10291800000000001, - 0.443369, - 0.627301, - 0.7420359999999999, - 0.660114, - 0.556516, - 0.502782, - 0.5106539999999999, - 0.335623, - 0.16300299999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.044334000000000005, - 0.40844600000000003, - 0.581538, - 0.505087, - 0.598952, - 0.344792, - 0.696433, - 0.224176, - 0.02542, - 0.017504000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09154999999999999, - 0.40002, - 0.591764, - 0.715178, - 0.777251, - 0.7770410000000001, - 0.7196910000000001, - 0.603445, - 0.42285700000000004, - 0.15934299999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.096468, - 0.403909, - 0.5793959999999999, - 0.693592, - 0.753745, - 0.585834, - 0.70137, - 0.5902000000000001, - 0.417464, - 0.16236699999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.073009, - 0.300634, - 0.329412, - 0.5555910000000001, - 0.6068490000000001, - 0.586326, - 0.375901, - 0.352163, - 0.16000399999999998, - 0.018201000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.079705, - 0.039686, - 0.182792, - 0.30805, - 0.276697, - 0.7603300000000001, - 0.70805, - 0.336334, - 0.277441, - 0.017983, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.098058, - 0.409474, - 0.606632, - 0.72363, - 0.7864650000000001, - 0.295967, - 0.053444000000000005, - 0.078268, - 0.007386, - 0.01093, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034525, - 0.169334, - 0.444776, - 0.56665, - 0.59008, - 0.608679, - 0.456737, - 0.347829, - 0.344897, - 0.182774, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.11413, - 0.428121, - 0.6001340000000001, - 0.713409, - 0.7776660000000001, - 0.7805700000000001, - 0.722752, - 0.609504, - 0.440609, - 0.182881, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10841500000000001, - 0.407538, - 0.589562, - 0.47498599999999996, - 0.598577, - 0.520196, - 0.482027, - 0.448958, - 0.284584, - 0.050682000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016729, - 0.157054, - 0.171817, - 0.261702, - 0.26113099999999995, - 0.276725, - 0.22903, - 0.07654000000000001, - 0.039643, - 0.015227000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.050504, - 0.15126699999999998, - 0.09453700000000001, - 0.163939, - 0.004285, - 0.751994, - 0.632285, - 0.448647, - 0.188441, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.100645, - 0.23713499999999998, - 0.44599500000000003, - 0.022806999999999997, - 0.5645410000000001, - 0.555473, - 0.448182, - 0.011151999999999999, - 0.418286, - 0.152155, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.125967, - 0.452179, - 0.666222, - 0.804135, - 0.833333, - 0.833333, - 0.8020309999999999, - 0.685693, - 0.493643, - 0.221669, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.149752, - 0.466714, - 0.659509, - 0.782608, - 0.833333, - 0.833333, - 0.779763, - 0.65934, - 0.479859, - 0.22078, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.149283, - 0.458294, - 0.637745, - 0.7479389999999999, - 0.797717, - 0.792046, - 0.561855, - 0.534002, - 0.260548, - 0.070947, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.044878999999999995, - 0.430502, - 0.616332, - 0.598413, - 0.643923, - 0.632186, - 0.5630850000000001, - 0.47594200000000003, - 0.33596499999999996, - 0.10489, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022372, - 0.260567, - 0.429184, - 0.832736, - 0.833333, - 0.780323, - 0.66086, - 0.482171, - 0.18476900000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10989, - 0.388042, - 0.584493, - 0.701311, - 0.760602, - 0.772002, - 0.7273310000000001, - 0.626444, - 0.457374, - 0.200685, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.15815, - 0.461204, - 0.650505, - 0.638783, - 0.667528, - 0.623993, - 0.761259, - 0.6451319999999999, - 0.479234, - 0.23832, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.173528, - 0.46302, - 0.6451699999999999, - 0.7592369999999999, - 0.815883, - 0.812612, - 0.753826, - 0.644084, - 0.478806, - 0.240957, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.164988, - 0.44464499999999996, - 0.6259880000000001, - 0.746251, - 0.803201, - 0.802269, - 0.743349, - 0.632984, - 0.468763, - 0.23313, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036122, - 0.217928, - 0.364184, - 0.5746359999999999, - 0.623495, - 0.5682590000000001, - 0.472519, - 0.459391, - 0.275068, - 0.086787, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.16855099999999998, - 0.43074799999999996, - 0.5974400000000001, - 0.71784, - 0.782592, - 0.790762, - 0.621947, - 0.512969, - 0.378907, - 0.15110900000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08886100000000001, - 0.30909800000000004, - 0.44502600000000003, - 0.539613, - 0.660063, - 0.516105, - 0.483675, - 0.375995, - 0.34377199999999997, - 0.13292099999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.077481, - 0.183764, - 0.364105, - 0.368695, - 0.294676, - 0.5210359999999999, - 0.5571889999999999, - 0.32177, - 0.28090899999999996, - 0.081801, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.15431, - 0.29091300000000003, - 0.43531200000000003, - 0.45634399999999997, - 0.5829500000000001, - 0.148619, - 0.16697800000000002, - 0.09240999999999999, - 0.076974, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020406, - 0.177107, - 0.077952, - 0.179719, - 0.512512, - 0.47045499999999996, - 0.522221, - 0.4382, - 0.348827, - 0.047588, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.426782, - 0.619888, - 0.7427630000000001, - 0.813002, - 0.8206509999999999, - 0.764043, - 0.65728, - 0.48028899999999997, - 0.23641, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.159789, - 0.41400200000000004, - 0.383481, - 0.7319880000000001, - 0.801713, - 0.8031459999999999, - 0.7624529999999999, - 0.6487050000000001, - 0.473391, - 0.012986000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.182844, - 0.444467, - 0.6377200000000001, - 0.307536, - 0.821686, - 0.82773, - 0.776646, - 0.6681739999999999, - 0.379492, - 0.244171, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.19666, - 0.4618, - 0.649791, - 0.778346, - 0.833333, - 0.833333, - 0.7903640000000001, - 0.674843, - 0.503323, - 0.261649, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.063964, - 0.46842399999999995, - 0.6415599999999999, - 0.753082, - 0.81137, - 0.8115950000000001, - 0.753113, - 0.6421979999999999, - 0.477145, - 0.250693, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.202893, - 0.44939999999999997, - 0.628192, - 0.7456470000000001, - 0.806683, - 0.810988, - 0.75764, - 0.646557, - 0.48032400000000003, - 0.24621700000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.1977, - 0.44957100000000005, - 0.632799, - 0.75189, - 0.811101, - 0.8096230000000001, - 0.753838, - 0.640026, - 0.388192, - 0.047199, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.053673, - 0.270929, - 0.339274, - 0.450962, - 0.373411, - 0.21321, - 0.46469299999999997, - 0.467673, - 0.352525, - 0.161339, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025070000000000002, - 0.01982, - 0.026404, - 0.092708, - 0.593568, - 0.48880399999999996, - 0.646008, - 0.48217899999999997, - 0.250653, - 0.006632, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.20622300000000002, - 0.452774, - 0.62728, - 0.739916, - 0.801964, - 0.8072630000000001, - 0.7589349999999999, - 0.657741, - 0.488255, - 0.261502, - 0.009914, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.196677, - 0.43737200000000004, - 0.602696, - 0.7128479999999999, - 0.783792, - 0.797941, - 0.7564160000000001, - 0.655254, - 0.493145, - 0.26468, - 0.012121999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.195046, - 0.13467400000000002, - 0.126432, - 0.08637099999999999, - 0.4903, - 0.6004619999999999, - 0.547961, - 0.42044600000000004, - 0.32540199999999997, - 0.15460300000000002, - 0.0016979999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.234482, - 0.504428, - 0.693958, - 0.819987, - 0.833333, - 0.833333, - 0.833333, - 0.726069, - 0.545953, - 0.29538600000000004, - 0.007253999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.235769, - 0.493041, - 0.6696660000000001, - 0.783592, - 0.826952, - 0.813374, - 0.749607, - 0.651683, - 0.503247, - 0.280216, - 0.007592, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.223576, - 0.470523, - 0.6536109999999999, - 0.7803089999999999, - 0.833333, - 0.833333, - 0.591489, - 0.10359900000000001, - 0.031994, - 0.05282, - 0.015186, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.218893, - 0.46704399999999996, - 0.640811, - 0.762932, - 0.828513, - 0.833333, - 0.7819109999999999, - 0.674176, - 0.50845, - 0.273312, - 0.021475, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003749, - 0.492428, - 0.6835800000000001, - 0.6376040000000001, - 0.651986, - 0.833333, - 0.8287859999999999, - 0.711244, - 0.041110999999999995, - 0.049970999999999995, - 0.002016, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.248348, - 0.50992, - 0.695159, - 0.8175549999999999, - 0.833333, - 0.833333, - 0.833333, - 0.7190700000000001, - 0.542566, - 0.006356, - 0.0149, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025703, - 0.28707, - 0.22825299999999998, - 0.31976499999999997, - 0.484998, - 0.068646, - 0.47113, - 0.28612400000000004, - 0.080551, - 0.121452, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.065211, - 0.270589, - 0.34073899999999996, - 0.43450700000000003, - 0.564427, - 0.470264, - 0.440012, - 0.303741, - 0.20243799999999998, - 0.08629, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.000625, - 0.10296599999999999, - 0.274528, - 0.43856799999999996, - 0.6285890000000001, - 0.64235, - 0.6104959999999999, - 0.69977, - 0.5169210000000001, - 0.294677, - 0.117826, - 0.003814, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004866, - 0.23189099999999999, - 0.467852, - 0.439327, - 0.595376, - 0.635923, - 0.66084, - 0.491358, - 0.429028, - 0.481851, - 0.260872, - 0.025587, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006404, - 0.23831899999999998, - 0.468815, - 0.621392, - 0.729179, - 0.512265, - 0.7930119999999999, - 0.745931, - 0.522497, - 0.478852, - 0.125235, - 0.025823, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0023239999999999997, - 0.110476, - 0.26891000000000004, - 0.34832, - 0.735032, - 0.7888780000000001, - 0.626105, - 0.7520209999999999, - 0.644224, - 0.47677600000000003, - 0.258363, - 0.027822, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014503, - 0.248988, - 0.491815, - 0.6668529999999999, - 0.631985, - 0.66659, - 0.59104, - 0.587684, - 0.5590170000000001, - 0.390397, - 0.27675700000000003, - 0.0071070000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020686, - 0.26943599999999995, - 0.512773, - 0.6897960000000001, - 0.801706, - 0.833333, - 0.833333, - 0.784597, - 0.674201, - 0.508015, - 0.21973900000000002, - 0.023818000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00929, - 0.193048, - 0.490407, - 0.656295, - 0.763794, - 0.805766, - 0.783956, - 0.7152000000000001, - 0.624163, - 0.366973, - 0.205098, - 0.032366, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022431999999999997, - 0.257743, - 0.366151, - 0.652868, - 0.765331, - 0.8191269999999999, - 0.815251, - 0.763028, - 0.6505259999999999, - 0.48769999999999997, - 0.26577300000000004, - 0.03592, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022263, - 0.155226, - 0.333334, - 0.681357, - 0.642654, - 0.622414, - 0.6835019999999999, - 0.557971, - 0.494259, - 0.314836, - 0.19498, - 0.025546, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027193000000000002, - 0.266175, - 0.5036809999999999, - 0.675987, - 0.791523, - 0.833333, - 0.833333, - 0.7767229999999999, - 0.6628390000000001, - 0.49724599999999997, - 0.27077300000000004, - 0.039682, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.029364, - 0.263062, - 0.49554000000000004, - 0.665284, - 0.7763880000000001, - 0.831767, - 0.833333, - 0.776888, - 0.663154, - 0.49977699999999997, - 0.27498500000000003, - 0.042381999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034777, - 0.272615, - 0.500659, - 0.6572709999999999, - 0.754832, - 0.803843, - 0.802212, - 0.753706, - 0.6511849999999999, - 0.49210899999999996, - 0.27166500000000005, - 0.042554, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036937, - 0.272994, - 0.508205, - 0.674024, - 0.788607, - 0.833333, - 0.8306549999999999, - 0.774006, - 0.656318, - 0.49120199999999997, - 0.26981700000000003, - 0.04192, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.035573, - 0.258268, - 0.480442, - 0.625922, - 0.727953, - 0.766827, - 0.7822100000000001, - 0.740966, - 0.6431950000000001, - 0.49036, - 0.274265, - 0.044278, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.043862000000000005, - 0.28632799999999997, - 0.519708, - 0.687342, - 0.801947, - 0.833333, - 0.833333, - 0.796066, - 0.684133, - 0.458973, - 0.199952, - 0.034779000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.046604, - 0.29249200000000003, - 0.532813, - 0.701804, - 0.8111240000000001, - 0.833333, - 0.833333, - 0.7815610000000001, - 0.671753, - 0.5065930000000001, - 0.284866, - 0.048066000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.048201999999999995, - 0.293671, - 0.5304869999999999, - 0.694885, - 0.803686, - 0.833333, - 0.833333, - 0.7690710000000001, - 0.65273, - 0.49297399999999997, - 0.277183, - 0.047128, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020489999999999998, - 0.159672, - 0.297165, - 0.609066, - 0.676987, - 0.642823, - 0.636871, - 0.605011, - 0.443596, - 0.481607, - 0.26773, - 0.045341, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.048548, - 0.27296, - 0.489988, - 0.647985, - 0.748813, - 0.8024439999999999, - 0.8025789999999999, - 0.751006, - 0.6422720000000001, - 0.47753300000000004, - 0.258759, - 0.042466000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.048032, - 0.263108, - 0.477387, - 0.626881, - 0.70925, - 0.7532530000000001, - 0.7694719999999999, - 0.7346670000000001, - 0.63935, - 0.479748, - 0.26255900000000004, - 0.044708, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.052124000000000004, - 0.274038, - 0.36294099999999996, - 0.476195, - 0.705324, - 0.656172, - 0.6397569999999999, - 0.572809, - 0.531555, - 0.461238, - 0.18224100000000001, - 0.033141, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.050497999999999994, - 0.264375, - 0.351066, - 0.5514819999999999, - 0.745287, - 0.7885650000000001, - 0.7804439999999999, - 0.717212, - 0.434625, - 0.404483, - 0.19178399999999998, - 0.042551, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.052564, - 0.267226, - 0.47595800000000005, - 0.630185, - 0.7523869999999999, - 0.8087409999999999, - 0.80862, - 0.653411, - 0.6360990000000001, - 0.47718299999999997, - 0.256821, - 0.04431, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.059616999999999996, - 0.290353, - 0.5164500000000001, - 0.682253, - 0.797115, - 0.833333, - 0.16717400000000002, - 0.45448099999999997, - 0.46339199999999997, - 0.29006099999999996, - 0.10355299999999999, - 0.046447, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.059647, - 0.29149400000000003, - 0.513788, - 0.673314, - 0.769463, - 0.813923, - 0.8218840000000001, - 0.76376, - 0.654168, - 0.486163, - 0.110514, - 0.047460999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.060957, - 0.279205, - 0.487477, - 0.634207, - 0.7255739999999999, - 0.6654990000000001, - 0.664925, - 0.60641, - 0.559984, - 0.45113, - 0.24507900000000002, - 0.045424, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.061514000000000006, - 0.158634, - 0.34015300000000004, - 0.626716, - 0.743757, - 0.7635510000000001, - 0.576456, - 0.615402, - 0.624807, - 0.430882, - 0.166222, - 0.032039, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07167799999999999, - 0.320742, - 0.547427, - 0.710536, - 0.817975, - 0.833333, - 0.833333, - 0.792452, - 0.676607, - 0.5065919999999999, - 0.27848399999999995, - 0.049923, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.06979600000000001, - 0.299483, - 0.5156040000000001, - 0.672848, - 0.783323, - 0.833333, - 0.833333, - 0.781905, - 0.670515, - 0.49901, - 0.0035600000000000002, - 0.001519, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.076033, - 0.325241, - 0.555669, - 0.7183440000000001, - 0.828828, - 0.833333, - 0.833333, - 0.8065650000000001, - 0.683909, - 0.5125149999999999, - 0.27913299999999996, - 0.051022, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07630500000000001, - 0.317442, - 0.534298, - 0.690827, - 0.788548, - 0.828337, - 0.812378, - 0.618195, - 0.6447459999999999, - 0.484323, - 0.267463, - 0.049756999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07509199999999999, - 0.295948, - 0.409665, - 0.5080330000000001, - 0.700648, - 0.754485, - 0.7657820000000001, - 0.722059, - 0.6255620000000001, - 0.46718200000000004, - 0.25702600000000003, - 0.049191000000000006, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.077741, - 0.301195, - 0.332797, - 0.548603, - 0.757414, - 0.8126749999999999, - 0.8148029999999999, - 0.760481, - 0.650139, - 0.488832, - 0.26615300000000003, - 0.051476, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.081947, - 0.31866500000000003, - 0.542439, - 0.707737, - 0.8066409999999999, - 0.833333, - 0.833333, - 0.79441, - 0.6744969999999999, - 0.294969, - 0.266897, - 0.053130000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.086087, - 0.322366, - 0.544869, - 0.707036, - 0.818068, - 0.833333, - 0.833333, - 0.781256, - 0.664436, - 0.493467, - 0.266914, - 0.05339, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.087821, - 0.32359, - 0.5374439999999999, - 0.691071, - 0.782223, - 0.81831, - 0.801588, - 0.740737, - 0.635092, - 0.48212900000000003, - 0.265005, - 0.052945, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.065011, - 0.30724, - 0.505894, - 0.6535359999999999, - 0.754046, - 0.80425, - 0.799144, - 0.743028, - 0.6292490000000001, - 0.46536500000000003, - 0.257074, - 0.050731, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.087405, - 0.30928300000000003, - 0.508621, - 0.6600090000000001, - 0.756638, - 0.8083859999999999, - 0.808361, - 0.753652, - 0.640535, - 0.471777, - 0.232572, - 0.045505000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09006399999999999, - 0.322381, - 0.529067, - 0.6774049999999999, - 0.7831319999999999, - 0.833333, - 0.831739, - 0.769178, - 0.653711, - 0.489156, - 0.267332, - 0.051216, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.318284, - 0.296548, - 0.688505, - 0.131945, - 0.40971199999999997, - 0.833333, - 0.775517, - 0.552646, - 0.324836, - 0.052094, - 0.001581, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.093538, - 0.32006999999999997, - 0.296445, - 0.6869059999999999, - 0.787072, - 0.833271, - 0.690156, - 0.75807, - 0.35645, - 0.170287, - 0.145337, - 0.030512, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.31214600000000003, - 0.530008, - 0.144901, - 0.017404, - 0.057464, - 0.02689, - 0.10618899999999999, - 0.104592, - 0.19900700000000002, - 0.06780599999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.06933299999999999, - 0.342296, - 0.558711, - 0.7151430000000001, - 0.809067, - 0.833333, - 0.833333, - 0.772605, - 0.654187, - 0.490548, - 0.26618400000000003, - 0.049963, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0012330000000000002, - 0.09572, - 0.321052, - 0.5200220000000001, - 0.65449, - 0.728992, - 0.757262, - 0.762134, - 0.719857, - 0.620426, - 0.46901600000000004, - 0.253298, - 0.050327, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0016690000000000001, - 0.09465900000000001, - 0.31650599999999995, - 0.510839, - 0.647573, - 0.7342380000000001, - 0.7676499999999999, - 0.749907, - 0.70039, - 0.6027250000000001, - 0.454475, - 0.248599, - 0.049688, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002056, - 0.092822, - 0.314685, - 0.50071, - 0.627832, - 0.704061, - 0.742521, - 0.7506520000000001, - 0.709469, - 0.6083970000000001, - 0.456293, - 0.249084, - 0.04615, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004171, - 0.079361, - 0.312446, - 0.505381, - 0.5305059999999999, - 0.6073970000000001, - 0.768773, - 0.758687, - 0.707098, - 0.602851, - 0.451488, - 0.196221, - 0.046654, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00368, - 0.09466, - 0.31739999999999996, - 0.5110779999999999, - 0.641614, - 0.718328, - 0.7459199999999999, - 0.7219439999999999, - 0.656686, - 0.561312, - 0.423359, - 0.228249, - 0.047985, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0031160000000000003, - 0.09451000000000001, - 0.296693, - 0.48783800000000005, - 0.626103, - 0.7262540000000001, - 0.7552960000000001, - 0.730158, - 0.6605030000000001, - 0.552884, - 0.423077, - 0.234292, - 0.043821, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003677, - 0.095359, - 0.31258600000000003, - 0.494859, - 0.622539, - 0.699718, - 0.727936, - 0.7180639999999999, - 0.668481, - 0.574665, - 0.433135, - 0.237929, - 0.045067, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003932, - 0.095683, - 0.307305, - 0.48436, - 0.618182, - 0.715095, - 0.757069, - 0.752592, - 0.699485, - 0.595964, - 0.440961, - 0.24171299999999998, - 0.047500999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004831, - 0.102782, - 0.320268, - 0.511568, - 0.645338, - 0.736718, - 0.780067, - 0.771028, - 0.7257100000000001, - 0.616525, - 0.462174, - 0.253173, - 0.049109, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0065190000000000005, - 0.066915, - 0.314789, - 0.487471, - 0.6466580000000001, - 0.62102, - 0.356428, - 0.425276, - 0.453667, - 0.15556999999999999, - 0.141686, - 0.0891, - 0.023103000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.077063, - 0.22902, - 0.30123300000000003, - 0.35945499999999997, - 0.16671100000000003, - 0.455053, - 0.591701, - 0.5196029999999999, - 0.295059, - 0.328498, - 0.182773, - 0.046209, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006555, - 0.100576, - 0.321745, - 0.516317, - 0.65977, - 0.753534, - 0.7979740000000001, - 0.791191, - 0.350196, - 0.44869099999999995, - 0.18113900000000002, - 0.102381, - 0.017366, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008257, - 0.106676, - 0.332041, - 0.5264310000000001, - 0.663759, - 0.753968, - 0.789001, - 0.767882, - 0.705055, - 0.5944210000000001, - 0.445972, - 0.23931200000000002, - 0.0505, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008976000000000001, - 0.107257, - 0.32126499999999997, - 0.5135080000000001, - 0.654913, - 0.748992, - 0.775543, - 0.74678, - 0.6782, - 0.569312, - 0.42905, - 0.236399, - 0.048375, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010291, - 0.108006, - 0.31831099999999996, - 0.505023, - 0.638344, - 0.7184769999999999, - 0.7381449999999999, - 0.713146, - 0.660882, - 0.564436, - 0.424891, - 0.229594, - 0.051271000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010466, - 0.10596599999999999, - 0.310052, - 0.481008, - 0.612304, - 0.703692, - 0.747678, - 0.74293, - 0.6925560000000001, - 0.584621, - 0.430902, - 0.242638, - 0.04711, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010247, - 0.104661, - 0.324788, - 0.512518, - 0.644531, - 0.726992, - 0.750174, - 0.716337, - 0.652427, - 0.572123, - 0.433572, - 0.23425, - 0.046297, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011493, - 0.104272, - 0.31566500000000003, - 0.49829199999999996, - 0.623115, - 0.701994, - 0.725149, - 0.6996140000000001, - 0.654077, - 0.568095, - 0.42760000000000004, - 0.22891999999999998, - 0.048407, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010798, - 0.10084, - 0.30776299999999995, - 0.488156, - 0.612795, - 0.69465, - 0.720113, - 0.703209, - 0.640765, - 0.549727, - 0.410707, - 0.221828, - 0.049038, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012454, - 0.10273499999999999, - 0.29896100000000003, - 0.462991, - 0.5818289999999999, - 0.673712, - 0.715769, - 0.713335, - 0.662376, - 0.566331, - 0.421135, - 0.22682400000000003, - 0.050051000000000005, - 0.000265, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013356, - 0.10736, - 0.315653, - 0.475482, - 0.547633, - 0.649818, - 0.649512, - 0.755608, - 0.697936, - 0.478663, - 0.39053699999999997, - 0.211218, - 0.052392, - 0.000885, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017774, - 0.114646, - 0.269629, - 0.455324, - 0.634439, - 0.718846, - 0.765439, - 0.26036200000000004, - 0.315164, - 0.609187, - 0.455052, - 0.18510400000000002, - 0.061958, - 0.0011120000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021055, - 0.120321, - 0.326667, - 0.249369, - 0.6607000000000001, - 0.7526860000000001, - 0.796169, - 0.695712, - 0.331509, - 0.07050100000000001, - 0.382584, - 0.186471, - 0.050327, - 0.002114, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016376, - 0.114142, - 0.334106, - 0.523788, - 0.46036, - 0.743443, - 0.774518, - 0.7570990000000001, - 0.48442599999999997, - 0.47536399999999995, - 0.429522, - 0.23114099999999999, - 0.053783000000000004, - 0.001906, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017890999999999997, - 0.11111199999999999, - 0.305196, - 0.478737, - 0.6079049999999999, - 0.6958719999999999, - 0.740216, - 0.733753, - 0.680134, - 0.57128, - 0.422783, - 0.22766499999999998, - 0.060482999999999995, - 0.001453, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02252, - 0.118865, - 0.309426, - 0.489388, - 0.6264160000000001, - 0.72094, - 0.765513, - 0.758164, - 0.696181, - 0.592469, - 0.43827499999999997, - 0.234696, - 0.054144, - 0.002975, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020886, - 0.115802, - 0.315673, - 0.494723, - 0.63, - 0.7193780000000001, - 0.760879, - 0.752655, - 0.6970230000000001, - 0.592936, - 0.4432, - 0.23829599999999998, - 0.050184, - 0.003494, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01805, - 0.113789, - 0.322474, - 0.506938, - 0.6386000000000001, - 0.7380220000000001, - 0.7788529999999999, - 0.767454, - 0.707477, - 0.599621, - 0.447622, - 0.24037899999999998, - 0.049343000000000005, - 0.002857, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017647, - 0.11895900000000001, - 0.351456, - 0.5451950000000001, - 0.6781309999999999, - 0.758325, - 0.792749, - 0.776025, - 0.710465, - 0.606226, - 0.45502699999999996, - 0.24554900000000002, - 0.053021, - 0.0037949999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021425999999999997, - 0.11785899999999999, - 0.33396499999999996, - 0.520678, - 0.652086, - 0.738655, - 0.77783, - 0.768207, - 0.708399, - 0.603823, - 0.451034, - 0.244024, - 0.056997, - 0.0046, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025890999999999997, - 0.121327, - 0.32797000000000004, - 0.517463, - 0.656903, - 0.74773, - 0.787175, - 0.683625, - 0.145391, - 0.449699, - 0.448711, - 0.241917, - 0.059165, - 0.004690000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024353000000000003, - 0.116798, - 0.319142, - 0.502363, - 0.6362279999999999, - 0.721268, - 0.762564, - 0.753633, - 0.701221, - 0.594227, - 0.360646, - 0.212177, - 0.060020000000000004, - 0.006011, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023062000000000003, - 0.115385, - 0.318305, - 0.508492, - 0.649561, - 0.744592, - 0.787408, - 0.780338, - 0.716335, - 0.610981, - 0.456218, - 0.245863, - 0.053357999999999996, - 0.004723, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018521999999999997, - 0.11134999999999999, - 0.325488, - 0.507606, - 0.630612, - 0.700866, - 0.728102, - 0.714431, - 0.666462, - 0.568956, - 0.429075, - 0.23388399999999998, - 0.047885, - 0.004823, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018206, - 0.110859, - 0.326323, - 0.508023, - 0.63478, - 0.713638, - 0.7416079999999999, - 0.72251, - 0.6599729999999999, - 0.5539189999999999, - 0.419891, - 0.23247800000000002, - 0.049087000000000006, - 0.004857, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018628, - 0.107973, - 0.315065, - 0.490662, - 0.616642, - 0.689198, - 0.711938, - 0.687785, - 0.6243920000000001, - 0.5432359999999999, - 0.41836399999999996, - 0.22775299999999998, - 0.050698, - 0.005151, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018358, - 0.105473, - 0.303141, - 0.469229, - 0.596981, - 0.684713, - 0.72653, - 0.722366, - 0.670046, - 0.569789, - 0.426495, - 0.230902, - 0.048235, - 0.005031, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017026, - 0.105659, - 0.310141, - 0.476236, - 0.59358, - 0.669273, - 0.698151, - 0.688505, - 0.635335, - 0.545533, - 0.414512, - 0.225163, - 0.051445, - 0.005476, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020076, - 0.104229, - 0.297725, - 0.46619, - 0.588707, - 0.6781739999999999, - 0.717313, - 0.714263, - 0.663059, - 0.565624, - 0.42561200000000005, - 0.232578, - 0.047889, - 0.005946, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017606, - 0.105719, - 0.238644, - 0.491149, - 0.6243139999999999, - 0.560535, - 0.7503329999999999, - 0.7383970000000001, - 0.6829080000000001, - 0.583312, - 0.435453, - 0.236799, - 0.050226999999999994, - 0.006876999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022439, - 0.111043, - 0.32108800000000004, - 0.5059870000000001, - 0.639225, - 0.7277659999999999, - 0.766937, - 0.757749, - 0.703331, - 0.598426, - 0.44866500000000004, - 0.243835, - 0.050792000000000004, - 0.007489, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026583, - 0.116976, - 0.31985800000000003, - 0.503658, - 0.639937, - 0.731346, - 0.76786, - 0.7583289999999999, - 0.699305, - 0.593778, - 0.44572, - 0.241714, - 0.05638, - 0.00869, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025828, - 0.113846, - 0.309731, - 0.48231599999999997, - 0.603705, - 0.689261, - 0.72146, - 0.709804, - 0.661774, - 0.56584, - 0.428647, - 0.236154, - 0.052384, - 0.008686999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02186, - 0.107363, - 0.304884, - 0.47581, - 0.59627, - 0.677749, - 0.707368, - 0.692353, - 0.641794, - 0.5492480000000001, - 0.41504399999999997, - 0.227178, - 0.055352, - 0.008679000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022837, - 0.108329, - 0.297632, - 0.465415, - 0.591086, - 0.6747989999999999, - 0.712321, - 0.704955, - 0.513889, - 0.55824, - 0.41801, - 0.211184, - 0.060215000000000005, - 0.009994999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027086, - 0.10156399999999999, - 0.300896, - 0.47039299999999995, - 0.5929829999999999, - 0.675374, - 0.7154389999999999, - 0.7067680000000001, - 0.656062, - 0.561526, - 0.420931, - 0.23238499999999998, - 0.056902, - 0.01016, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026749, - 0.099407, - 0.22459, - 0.24485200000000001, - 0.5129360000000001, - 0.594277, - 0.499435, - 0.34096499999999996, - 0.113253, - 0.389322, - 0.17610800000000001, - 0.232566, - 0.058821, - 0.01137, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024446000000000002, - 0.10292, - 0.288817, - 0.470563, - 0.587526, - 0.6634479999999999, - 0.711379, - 0.6465850000000001, - 0.47048700000000004, - 0.480901, - 0.383762, - 0.194849, - 0.063973, - 0.011786, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022508, - 0.095442, - 0.233078, - 0.209598, - 0.457675, - 0.538803, - 0.615423, - 0.601993, - 0.558013, - 0.272806, - 0.23549199999999998, - 0.155949, - 0.056026000000000006, - 0.011869999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024080999999999998, - 0.104823, - 0.28908100000000003, - 0.456069, - 0.580834, - 0.6550900000000001, - 0.6732630000000001, - 0.647371, - 0.594966, - 0.51464, - 0.393495, - 0.216064, - 0.055954000000000004, - 0.012646000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022435, - 0.099913, - 0.288506, - 0.454903, - 0.576324, - 0.660193, - 0.700664, - 0.6987089999999999, - 0.650706, - 0.5555789999999999, - 0.417808, - 0.232491, - 0.056086, - 0.012664, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019122, - 0.062392, - 0.166643, - 0.126191, - 0.155042, - 0.553751, - 0.47687799999999997, - 0.709415, - 0.6657759999999999, - 0.45122, - 0.430092, - 0.239257, - 0.069127, - 0.013733, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025147, - 0.104072, - 0.302836, - 0.485308, - 0.618636, - 0.707659, - 0.7501230000000001, - 0.74401, - 0.6906680000000001, - 0.587548, - 0.44193400000000005, - 0.243698, - 0.060195, - 0.014825, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023091999999999998, - 0.107852, - 0.32506799999999997, - 0.514827, - 0.65712, - 0.7487910000000001, - 0.790323, - 0.781319, - 0.718595, - 0.6122340000000001, - 0.461611, - 0.25816300000000003, - 0.059158999999999996, - 0.014372, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02091, - 0.10786499999999999, - 0.329336, - 0.524165, - 0.662985, - 0.7509600000000001, - 0.7790929999999999, - 0.731245, - 0.706564, - 0.601442, - 0.45377999999999996, - 0.251438, - 0.057115, - 0.013441000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020297, - 0.103196, - 0.310813, - 0.49312900000000004, - 0.615524, - 0.6908529999999999, - 0.721373, - 0.705028, - 0.6469, - 0.546747, - 0.417009, - 0.238565, - 0.055630000000000006, - 0.014894000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021984, - 0.10004600000000001, - 0.301289, - 0.476923, - 0.600129, - 0.6742630000000001, - 0.7013550000000001, - 0.6875439999999999, - 0.6399969999999999, - 0.553538, - 0.422827, - 0.239673, - 0.058202, - 0.014279, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020905, - 0.096807, - 0.29156, - 0.46563099999999996, - 0.595129, - 0.68424, - 0.727169, - 0.724508, - 0.676852, - 0.579286, - 0.438503, - 0.246951, - 0.058277, - 0.014452999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020978, - 0.103711, - 0.30124900000000004, - 0.492296, - 0.60519, - 0.691808, - 0.756122, - 0.749417, - 0.693576, - 0.59278, - 0.446956, - 0.251482, - 0.059522, - 0.016097999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024692, - 0.101509, - 0.306178, - 0.486923, - 0.61805, - 0.706105, - 0.746726, - 0.740161, - 0.685342, - 0.58361, - 0.440013, - 0.247858, - 0.05823, - 0.015413999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022692, - 0.099591, - 0.301002, - 0.475352, - 0.5918049999999999, - 0.65971, - 0.677968, - 0.6659660000000001, - 0.631185, - 0.552614, - 0.422991, - 0.240372, - 0.062121, - 0.016402999999999997, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0237, - 0.097289, - 0.289606, - 0.455368, - 0.58065, - 0.666376, - 0.7064539999999999, - 0.702767, - 0.653768, - 0.559735, - 0.418342, - 0.237709, - 0.06417199999999999, - 0.015298, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022382000000000003, - 0.094915, - 0.292767, - 0.47190899999999997, - 0.603071, - 0.690392, - 0.73129, - 0.726989, - 0.676063, - 0.57801, - 0.43747, - 0.248535, - 0.060649, - 0.015957000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02445, - 0.098259, - 0.294391, - 0.469688, - 0.592923, - 0.667273, - 0.693997, - 0.684228, - 0.640695, - 0.555057, - 0.424647, - 0.243791, - 0.06313, - 0.017103999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023622, - 0.096822, - 0.293751, - 0.468892, - 0.587795, - 0.6554, - 0.683688, - 0.675655, - 0.635104, - 0.55223, - 0.422313, - 0.24165899999999998, - 0.064717, - 0.017035, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028225999999999998, - 0.101655, - 0.285871, - 0.454168, - 0.573444, - 0.655255, - 0.696434, - 0.694153, - 0.6463289999999999, - 0.549381, - 0.419748, - 0.23971199999999998, - 0.063885, - 0.016486, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023583, - 0.096449, - 0.28380700000000003, - 0.455216, - 0.573911, - 0.652087, - 0.6845330000000001, - 0.682194, - 0.640356, - 0.5502910000000001, - 0.41918900000000003, - 0.239277, - 0.062779, - 0.015814, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023014, - 0.09371800000000001, - 0.288, - 0.461893, - 0.587114, - 0.6716599999999999, - 0.712399, - 0.70778, - 0.658431, - 0.564304, - 0.429375, - 0.24572, - 0.061926, - 0.016263000000000003, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020762, - 0.089423, - 0.283757, - 0.455029, - 0.577249, - 0.66112, - 0.701744, - 0.6999059999999999, - 0.653766, - 0.561375, - 0.427478, - 0.24587399999999998, - 0.062351, - 0.016157, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019960000000000002, - 0.08870600000000001, - 0.281314, - 0.450772, - 0.571198, - 0.638492, - 0.6862569999999999, - 0.6919109999999999, - 0.647716, - 0.558225, - 0.414401, - 0.236504, - 0.062818, - 0.015049, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021803999999999997, - 0.088122, - 0.247201, - 0.406413, - 0.56886, - 0.650404, - 0.6825370000000001, - 0.679723, - 0.563136, - 0.500325, - 0.372995, - 0.20285599999999998, - 0.066905, - 0.016215, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022018999999999997, - 0.091596, - 0.25647699999999996, - 0.41759199999999996, - 0.541029, - 0.6669039999999999, - 0.686589, - 0.666661, - 0.650298, - 0.572316, - 0.436123, - 0.251766, - 0.063527, - 0.015615, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021318, - 0.08708199999999999, - 0.267414, - 0.42529, - 0.5441609999999999, - 0.626165, - 0.666723, - 0.662829, - 0.616031, - 0.339106, - 0.200223, - 0.23109100000000002, - 0.06683599999999999, - 0.017179, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020723, - 0.08841800000000001, - 0.269378, - 0.438927, - 0.559154, - 0.644154, - 0.684859, - 0.684685, - 0.639729, - 0.550276, - 0.418878, - 0.241939, - 0.066716, - 0.016861, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02183, - 0.09173, - 0.287225, - 0.468626, - 0.6022029999999999, - 0.695561, - 0.7390030000000001, - 0.7332150000000001, - 0.6812, - 0.583902, - 0.443425, - 0.255988, - 0.065438, - 0.016097, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023462, - 0.093066, - 0.29536399999999996, - 0.474477, - 0.594953, - 0.6665639999999999, - 0.7020639999999999, - 0.7018, - 0.660861, - 0.5749460000000001, - 0.441888, - 0.256538, - 0.065402, - 0.015889, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019271, - 0.085837, - 0.282464, - 0.453672, - 0.570973, - 0.655236, - 0.700911, - 0.703828, - 0.6606449999999999, - 0.5709890000000001, - 0.43703800000000004, - 0.255383, - 0.062399, - 0.012121999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015525, - 0.083098, - 0.29074500000000003, - 0.471264, - 0.5941620000000001, - 0.666476, - 0.706287, - 0.70486, - 0.659653, - 0.572145, - 0.440029, - 0.256063, - 0.063881, - 0.012581, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015458, - 0.08371899999999999, - 0.292272, - 0.476039, - 0.604306, - 0.686845, - 0.728879, - 0.7254980000000001, - 0.67747, - 0.5848369999999999, - 0.449019, - 0.26106999999999997, - 0.06397800000000001, - 0.012060000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014923, - 0.084548, - 0.290361, - 0.467714, - 0.5809439999999999, - 0.650807, - 0.6858609999999999, - 0.683898, - 0.6411330000000001, - 0.556585, - 0.430581, - 0.250658, - 0.061438, - 0.011205999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014752000000000001, - 0.083088, - 0.27992, - 0.444704, - 0.5475570000000001, - 0.625011, - 0.542512, - 0.667587, - 0.604707, - 0.522306, - 0.39812200000000003, - 0.23974299999999998, - 0.070262, - 0.016050000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019957, - 0.08533299999999999, - 0.259551, - 0.423283, - 0.541607, - 0.622212, - 0.660265, - 0.6567609999999999, - 0.54818, - 0.537731, - 0.411678, - 0.23780500000000002, - 0.06890500000000001, - 0.016466, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025300999999999997, - 0.09675199999999999, - 0.255707, - 0.41941199999999995, - 0.539602, - 0.62264, - 0.666414, - 0.576126, - 0.5447540000000001, - 0.5365270000000001, - 0.409919, - 0.239778, - 0.07345600000000001, - 0.018277, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019161, - 0.084047, - 0.268942, - 0.444732, - 0.5724629999999999, - 0.661275, - 0.7041689999999999, - 0.70201, - 0.660876, - 0.569911, - 0.435745, - 0.252776, - 0.063846, - 0.012654, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015596, - 0.079602, - 0.275878, - 0.45825099999999996, - 0.589977, - 0.67836, - 0.722074, - 0.720493, - 0.672778, - 0.578997, - 0.444415, - 0.26076299999999997, - 0.067411, - 0.012289999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017902, - 0.08257099999999999, - 0.270924, - 0.444865, - 0.567483, - 0.652158, - 0.696374, - 0.695039, - 0.651436, - 0.561582, - 0.424255, - 0.250003, - 0.07804000000000001, - 0.018463, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018394999999999998, - 0.068333, - 0.220519, - 0.175357, - 0.488813, - 0.5133110000000001, - 0.460078, - 0.499653, - 0.469571, - 0.257116, - 0.33198200000000005, - 0.214376, - 0.07343000000000001, - 0.016293, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021617, - 0.090007, - 0.274323, - 0.458315, - 0.594495, - 0.6940109999999999, - 0.738758, - 0.733101, - 0.686984, - 0.594563, - 0.45626, - 0.266219, - 0.068632, - 0.011840999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01468, - 0.080611, - 0.280236, - 0.462341, - 0.589976, - 0.675434, - 0.718328, - 0.716052, - 0.672102, - 0.582233, - 0.447535, - 0.260158, - 0.066204, - 0.011064000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013564, - 0.076969, - 0.277999, - 0.457399, - 0.5802609999999999, - 0.661036, - 0.704718, - 0.7014779999999999, - 0.6572060000000001, - 0.568141, - 0.435956, - 0.254136, - 0.065755, - 0.012052, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004628, - 0.061717, - 0.216007, - 0.33203699999999997, - 0.42419799999999996, - 0.289919, - 0.37951999999999997, - 0.38125400000000004, - 0.440322, - 0.519638, - 0.40256200000000003, - 0.244771, - 0.06940600000000001, - 0.013007, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006535, - 0.07380400000000001, - 0.255538, - 0.424486, - 0.547668, - 0.634656, - 0.677077, - 0.6764690000000001, - 0.630222, - 0.5471079999999999, - 0.417806, - 0.242733, - 0.07062, - 0.012983, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014478, - 0.07508100000000001, - 0.262874, - 0.43830399999999997, - 0.5662290000000001, - 0.654087, - 0.698203, - 0.696646, - 0.653809, - 0.564929, - 0.434158, - 0.254848, - 0.066488, - 0.011514, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012667, - 0.076346, - 0.274509, - 0.455258, - 0.582511, - 0.6675209999999999, - 0.7111559999999999, - 0.708902, - 0.66218, - 0.572129, - 0.439625, - 0.257841, - 0.06777, - 0.011583999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012127, - 0.076393, - 0.277362, - 0.46061799999999997, - 0.592174, - 0.6805739999999999, - 0.726029, - 0.722896, - 0.675523, - 0.581646, - 0.44487400000000005, - 0.26032799999999995, - 0.065473, - 0.009749, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011498, - 0.07521800000000001, - 0.274161, - 0.456083, - 0.587598, - 0.680817, - 0.7278600000000001, - 0.726917, - 0.681245, - 0.589383, - 0.453366, - 0.267001, - 0.06622499999999999, - 0.009749, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011549, - 0.074517, - 0.2769, - 0.457709, - 0.589566, - 0.681406, - 0.726542, - 0.724599, - 0.6802590000000001, - 0.58536, - 0.448698, - 0.26376900000000003, - 0.067418, - 0.009707, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012029, - 0.076544, - 0.271383, - 0.451926, - 0.581679, - 0.670462, - 0.713649, - 0.708481, - 0.665903, - 0.5729829999999999, - 0.437997, - 0.255859, - 0.067228, - 0.010731, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013194, - 0.075078, - 0.25977100000000003, - 0.43105099999999996, - 0.55522, - 0.641657, - 0.685635, - 0.681661, - 0.637246, - 0.5495599999999999, - 0.41673899999999997, - 0.24327600000000002, - 0.066526, - 0.006848, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0012720000000000001, - 0.051014000000000004, - 0.056789, - 0.052455, - 0.5478500000000001, - 0.551359, - 0.6499729999999999, - 0.049083, - 0.15639699999999998, - 0.13254, - 0.016735, - 0.07085, - 0.011986, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012169000000000001, - 0.07522, - 0.255774, - 0.424952, - 0.550921, - 0.641629, - 0.687348, - 0.687721, - 0.644226, - 0.557498, - 0.42799, - 0.251089, - 0.067396, - 0.009917, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010538, - 0.072035, - 0.265319, - 0.443202, - 0.572061, - 0.6619149999999999, - 0.7073039999999999, - 0.705715, - 0.664263, - 0.572346, - 0.438365, - 0.253925, - 0.06802899999999999, - 0.009911, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010423, - 0.07245900000000001, - 0.266138, - 0.44423599999999996, - 0.572506, - 0.657473, - 0.702114, - 0.7038260000000001, - 0.66013, - 0.571194, - 0.439668, - 0.25635, - 0.067789, - 0.009155, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010912000000000002, - 0.073114, - 0.260879, - 0.435747, - 0.562297, - 0.6522519999999999, - 0.696553, - 0.6945979999999999, - 0.653941, - 0.563513, - 0.43092, - 0.251074, - 0.06714700000000001, - 0.008439, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010995, - 0.075171, - 0.26406999999999997, - 0.44027, - 0.5679379999999999, - 0.654803, - 0.697816, - 0.6970270000000001, - 0.655087, - 0.565827, - 0.433409, - 0.251974, - 0.066898, - 0.008345, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009736, - 0.074, - 0.26538, - 0.442835, - 0.570096, - 0.654072, - 0.698145, - 0.6958529999999999, - 0.646836, - 0.559742, - 0.430479, - 0.25247800000000004, - 0.065444, - 0.007019999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009629, - 0.074934, - 0.265065, - 0.44109699999999996, - 0.5665549999999999, - 0.653421, - 0.6977380000000001, - 0.696757, - 0.657166, - 0.566136, - 0.433302, - 0.252695, - 0.066535, - 0.006828, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00895, - 0.075384, - 0.26143099999999997, - 0.436389, - 0.559781, - 0.646471, - 0.6892780000000001, - 0.686742, - 0.641418, - 0.54957, - 0.417097, - 0.245817, - 0.06964100000000001, - 0.005979, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.042686, - 0.006637, - 0.358203, - 0.5673680000000001, - 0.577245, - 0.607641, - 0.615478, - 0.648558, - 0.562297, - 0.42758999999999997, - 0.24985, - 0.067526, - 0.005753, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008407, - 0.07680100000000001, - 0.262219, - 0.436562, - 0.561754, - 0.6511950000000001, - 0.7001710000000001, - 0.7014790000000001, - 0.655922, - 0.5700940000000001, - 0.4355, - 0.25629599999999997, - 0.06561199999999999, - 0.005293999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007109, - 0.07395399999999999, - 0.270024, - 0.446108, - 0.570472, - 0.656852, - 0.6969310000000001, - 0.696861, - 0.655416, - 0.566506, - 0.433398, - 0.252085, - 0.06474099999999999, - 0.004791999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006857, - 0.077874, - 0.265974, - 0.44231099999999995, - 0.5708730000000001, - 0.656091, - 0.7010040000000001, - 0.697132, - 0.504191, - 0.559731, - 0.42486900000000005, - 0.248596, - 0.070513, - 0.004543999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006601, - 0.08469499999999999, - 0.266532, - 0.445038, - 0.580115, - 0.672755, - 0.7217039999999999, - 0.7242799999999999, - 0.6750069999999999, - 0.584368, - 0.44479199999999997, - 0.262043, - 0.06742400000000001, - 0.004683, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0069370000000000005, - 0.080025, - 0.289116, - 0.483524, - 0.624478, - 0.7229500000000001, - 0.7694099999999999, - 0.7636839999999999, - 0.714212, - 0.6133350000000001, - 0.466629, - 0.26996699999999996, - 0.06569799999999999, - 0.003277, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004882, - 0.07692600000000001, - 0.287098, - 0.476315, - 0.612769, - 0.7035359999999999, - 0.751235, - 0.7493329999999999, - 0.698535, - 0.600611, - 0.45809, - 0.266259, - 0.064384, - 0.00329, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004844, - 0.077888, - 0.289605, - 0.476438, - 0.608678, - 0.6937300000000001, - 0.7425309999999999, - 0.7443339999999999, - 0.697496, - 0.6019070000000001, - 0.460738, - 0.26852800000000004, - 0.064038, - 0.0027730000000000003, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004318, - 0.077015, - 0.287494, - 0.47453500000000004, - 0.6097899999999999, - 0.701236, - 0.749715, - 0.751082, - 0.701121, - 0.60526, - 0.461826, - 0.269077, - 0.065229, - 0.00283, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003803, - 0.07689700000000001, - 0.286003, - 0.47014, - 0.605211, - 0.6969740000000001, - 0.745189, - 0.746537, - 0.697662, - 0.602155, - 0.46024400000000004, - 0.266986, - 0.062581, - 0.003162, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004367, - 0.077557, - 0.284992, - 0.474109, - 0.615112, - 0.708534, - 0.7551939999999999, - 0.75049, - 0.702862, - 0.6033419999999999, - 0.45904199999999995, - 0.264962, - 0.061602, - 0.002662, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003832, - 0.075235, - 0.275488, - 0.455628, - 0.587604, - 0.6755890000000001, - 0.717346, - 0.713549, - 0.667135, - 0.5699740000000001, - 0.432887, - 0.250701, - 0.0577, - 0.002069, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003766, - 0.07469799999999999, - 0.273005, - 0.452291, - 0.5791580000000001, - 0.667019, - 0.712179, - 0.710818, - 0.666808, - 0.573551, - 0.436599, - 0.249812, - 0.056856000000000004, - 0.0015509999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0032890000000000003, - 0.07414799999999999, - 0.270334, - 0.445384, - 0.552289, - 0.5316029999999999, - 0.7093079999999999, - 0.705339, - 0.5526380000000001, - 0.41850299999999996, - 0.377523, - 0.227534, - 0.056715, - 0.0005600000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002543, - 0.076658, - 0.269613, - 0.44653699999999996, - 0.5740080000000001, - 0.6577200000000001, - 0.701564, - 0.700024, - 0.653627, - 0.563628, - 0.423556, - 0.235727, - 0.062078, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002186, - 0.077586, - 0.26826799999999995, - 0.442486, - 0.5668179999999999, - 0.646841, - 0.69008, - 0.687998, - 0.640653, - 0.549154, - 0.410123, - 0.229373, - 0.060127, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00273, - 0.076699, - 0.267375, - 0.44297699999999995, - 0.5698920000000001, - 0.661606, - 0.705661, - 0.705322, - 0.6602140000000001, - 0.568335, - 0.427339, - 0.24024700000000002, - 0.058287, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0027280000000000004, - 0.07608, - 0.275271, - 0.45746800000000004, - 0.589716, - 0.6823490000000001, - 0.7283350000000001, - 0.7277619999999999, - 0.678284, - 0.581177, - 0.441774, - 0.250563, - 0.054793, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003267, - 0.073828, - 0.28688400000000003, - 0.47397500000000004, - 0.5482400000000001, - 0.703952, - 0.680172, - 0.745155, - 0.694793, - 0.593942, - 0.449212, - 0.254136, - 0.053938, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0023250000000000002, - 0.08029399999999999, - 0.29437, - 0.480045, - 0.611919, - 0.6984199999999999, - 0.74415, - 0.743555, - 0.689866, - 0.591361, - 0.446406, - 0.250798, - 0.052543999999999993, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.001758, - 0.07896500000000001, - 0.287109, - 0.471032, - 0.602951, - 0.687862, - 0.727938, - 0.72372, - 0.6741090000000001, - 0.575817, - 0.434733, - 0.241907, - 0.053357999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.001286, - 0.07777500000000001, - 0.286416, - 0.471769, - 0.6054189999999999, - 0.694309, - 0.735928, - 0.727256, - 0.6796810000000001, - 0.578447, - 0.433556, - 0.242729, - 0.051383000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.001369, - 0.08148000000000001, - 0.296375, - 0.487702, - 0.627654, - 0.718278, - 0.7641939999999999, - 0.757818, - 0.703286, - 0.60054, - 0.45319, - 0.253834, - 0.051377, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.000859, - 0.080983, - 0.2911, - 0.471852, - 0.60568, - 0.695742, - 0.7391939999999999, - 0.733955, - 0.686178, - 0.5850270000000001, - 0.43987200000000004, - 0.245218, - 0.049717, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00028599999999999996, - 0.077226, - 0.27174200000000004, - 0.453347, - 0.5882200000000001, - 0.679154, - 0.724007, - 0.722152, - 0.5730299999999999, - 0.487927, - 0.360096, - 0.226899, - 0.049052, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.077318, - 0.264808, - 0.40756200000000004, - 0.515223, - 0.66592, - 0.607734, - 0.565789, - 0.560976, - 0.142279, - 0.086342, - 0.200441, - 0.049277, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.076251, - 0.272393, - 0.449427, - 0.579801, - 0.672975, - 0.71786, - 0.713912, - 0.6656839999999999, - 0.569961, - 0.42335300000000003, - 0.23199899999999998, - 0.044802999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.076772, - 0.280738, - 0.450853, - 0.573722, - 0.6623049999999999, - 0.707663, - 0.705832, - 0.6583089999999999, - 0.561391, - 0.421406, - 0.22975, - 0.042415, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.077394, - 0.27872399999999997, - 0.442267, - 0.561292, - 0.64067, - 0.6759550000000001, - 0.672164, - 0.629779, - 0.372318, - 0.23221899999999998, - 0.200868, - 0.043741999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034484, - 0.27456400000000003, - 0.448955, - 0.577234, - 0.671217, - 0.71621, - 0.711653, - 0.298404, - 0.02838, - 0.41194, - 0.052028, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.076614, - 0.263334, - 0.428958, - 0.5518200000000001, - 0.6457390000000001, - 0.6840839999999999, - 0.680338, - 0.635049, - 0.47165300000000004, - 0.346009, - 0.23098500000000002, - 0.041799, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08293099999999999, - 0.294332, - 0.46803500000000003, - 0.599711, - 0.687917, - 0.73317, - 0.731445, - 0.679921, - 0.578455, - 0.429896, - 0.229972, - 0.040606, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08349899999999999, - 0.297692, - 0.465627, - 0.579393, - 0.6691670000000001, - 0.7122809999999999, - 0.168298, - 0.017440999999999998, - 0.013486000000000001, - 0.421836, - 0.224774, - 0.038871, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.081165, - 0.288803, - 0.466765, - 0.597967, - 0.684778, - 0.724682, - 0.716654, - 0.226055, - 0.181448, - 0.041783, - 0.153233, - 0.039250999999999994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.081596, - 0.291173, - 0.464038, - 0.594292, - 0.679375, - 0.71565, - 0.705945, - 0.651207, - 0.550168, - 0.405345, - 0.21164, - 0.037613999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08039400000000001, - 0.28363900000000003, - 0.459699, - 0.584056, - 0.667556, - 0.702353, - 0.6923400000000001, - 0.638196, - 0.541066, - 0.145143, - 0.208316, - 0.01642, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08083, - 0.283387, - 0.463325, - 0.590157, - 0.680508, - 0.722025, - 0.717405, - 0.66488, - 0.562855, - 0.411295, - 0.21374600000000002, - 0.03362, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.082058, - 0.28736700000000004, - 0.46560700000000005, - 0.596176, - 0.68714, - 0.729155, - 0.724485, - 0.673636, - 0.5631029999999999, - 0.405323, - 0.208385, - 0.032292, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08783400000000001, - 0.31195, - 0.506901, - 0.6445839999999999, - 0.73576, - 0.7751140000000001, - 0.764851, - 0.711467, - 0.599876, - 0.44211900000000004, - 0.225365, - 0.033305, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.089965, - 0.31704000000000004, - 0.515319, - 0.655404, - 0.74751, - 0.789505, - 0.775277, - 0.714527, - 0.602128, - 0.442338, - 0.226978, - 0.031569, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.088021, - 0.30609699999999995, - 0.48977800000000005, - 0.623915, - 0.720404, - 0.764923, - 0.757652, - 0.699528, - 0.592502, - 0.437656, - 0.22398300000000002, - 0.029422, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08673399999999999, - 0.308907, - 0.49097, - 0.621409, - 0.7063680000000001, - 0.737344, - 0.716649, - 0.64995, - 0.544202, - 0.404028, - 0.208511, - 0.026652000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08402, - 0.301133, - 0.480499, - 0.6047809999999999, - 0.68675, - 0.717307, - 0.698774, - 0.63093, - 0.533446, - 0.393503, - 0.200775, - 0.026053999999999997, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.081199, - 0.29427499999999995, - 0.474688, - 0.604115, - 0.688973, - 0.729838, - 0.7273890000000001, - 0.6664990000000001, - 0.553592, - 0.39467, - 0.180597, - 0.020611, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.076186, - 0.26887700000000003, - 0.450653, - 0.59403, - 0.706471, - 0.744642, - 0.735173, - 0.677592, - 0.555531, - 0.383541, - 0.198412, - 0.023417999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.091524, - 0.326945, - 0.5356449999999999, - 0.687071, - 0.792531, - 0.833333, - 0.819292, - 0.752477, - 0.626927, - 0.454283, - 0.22625, - 0.023404, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.097609, - 0.345224, - 0.551808, - 0.705429, - 0.801021, - 0.833333, - 0.8246079999999999, - 0.751374, - 0.628577, - 0.459171, - 0.227413, - 0.02209, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.096786, - 0.33986500000000003, - 0.5428869999999999, - 0.6872140000000001, - 0.780438, - 0.816801, - 0.795639, - 0.726172, - 0.607062, - 0.441548, - 0.22045599999999999, - 0.018767, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.094247, - 0.32894, - 0.517535, - 0.649841, - 0.731229, - 0.762368, - 0.7442329999999999, - 0.677188, - 0.572231, - 0.420319, - 0.20741900000000002, - 0.015727, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08742799999999999, - 0.306751, - 0.5035149999999999, - 0.651353, - 0.749309, - 0.791015, - 0.781106, - 0.71594, - 0.602262, - 0.430803, - 0.20699299999999998, - 0.013266, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.094812, - 0.334854, - 0.532556, - 0.669088, - 0.7520560000000001, - 0.781653, - 0.759274, - 0.6891799999999999, - 0.576434, - 0.417296, - 0.205063, - 0.011842, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.092682, - 0.322262, - 0.509454, - 0.649606, - 0.738998, - 0.7787350000000001, - 0.764912, - 0.694447, - 0.5777490000000001, - 0.41013299999999997, - 0.192739, - 0.010324, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.080023, - 0.28840499999999997, - 0.47956, - 0.632268, - 0.751885, - 0.798491, - 0.787661, - 0.720281, - 0.602485, - 0.435154, - 0.206253, - 0.01056, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.096716, - 0.343882, - 0.549614, - 0.697564, - 0.789918, - 0.826779, - 0.8064600000000001, - 0.733641, - 0.609169, - 0.435505, - 0.203543, - 0.009023999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.096266, - 0.339086, - 0.5392680000000001, - 0.681166, - 0.767297, - 0.799513, - 0.7754840000000001, - 0.7032430000000001, - 0.582318, - 0.417617, - 0.19570300000000002, - 0.007417, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09411, - 0.336858, - 0.532257, - 0.670243, - 0.757509, - 0.788704, - 0.7645890000000001, - 0.691678, - 0.575564, - 0.412901, - 0.191941, - 0.005817, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08748, - 0.314267, - 0.49972300000000003, - 0.633547, - 0.727117, - 0.766744, - 0.754402, - 0.6947380000000001, - 0.5796520000000001, - 0.41447300000000004, - 0.18912700000000002, - 0.004798, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.094654, - 0.330827, - 0.517004, - 0.650887, - 0.7343569999999999, - 0.7672720000000001, - 0.74859, - 0.684762, - 0.571964, - 0.409229, - 0.186581, - 0.003675, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.06918600000000001, - 0.284687, - 0.40991500000000003, - 0.6516810000000001, - 0.640837, - 0.597262, - 0.620324, - 0.42395900000000003, - 0.189798, - 0.412403, - 0.186075, - 0.0025510000000000003, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08379099999999999, - 0.308387, - 0.490259, - 0.6198830000000001, - 0.64715, - 0.6772400000000001, - 0.649732, - 0.556929, - 0.403734, - 0.26719099999999996, - 0.08055200000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.084813, - 0.312623, - 0.5021209999999999, - 0.5615220000000001, - 0.656464, - 0.612754, - 0.351671, - 0.45055399999999995, - 0.251888, - 0.266644, - 0.040715, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.087385, - 0.312525, - 0.487219, - 0.6231180000000001, - 0.711661, - 0.750903, - 0.741106, - 0.675552, - 0.55799, - 0.392288, - 0.170631, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.039078, - 0.274578, - 0.494924, - 0.6267699999999999, - 0.715075, - 0.753089, - 0.741706, - 0.6765410000000001, - 0.557902, - 0.39205900000000005, - 0.169608, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.084552, - 0.315007, - 0.508853, - 0.64604, - 0.7403930000000001, - 0.776867, - 0.7648550000000001, - 0.692774, - 0.5699529999999999, - 0.393096, - 0.165522, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07907800000000001, - 0.319609, - 0.526711, - 0.677661, - 0.7681330000000001, - 0.805468, - 0.7878200000000001, - 0.71602, - 0.420351, - 0.269385, - 0.009849, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.069745, - 0.046383, - 0.211787, - 0.6891079999999999, - 0.34262400000000004, - 0.81826, - 0.7984629999999999, - 0.129915, - 0.198302, - 0.41850400000000004, - 0.002156, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09232800000000001, - 0.35337999999999997, - 0.562568, - 0.7093590000000001, - 0.797221, - 0.832553, - 0.08744299999999999, - 0.216433, - 0.010967000000000001, - 0.017209, - 0.08956, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09317700000000001, - 0.347765, - 0.557428, - 0.698462, - 0.782534, - 0.811904, - 0.7856069999999999, - 0.7065560000000001, - 0.583272, - 0.400089, - 0.162653, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08865300000000001, - 0.337718, - 0.541632, - 0.6783490000000001, - 0.763695, - 0.790509, - 0.767128, - 0.694002, - 0.57304, - 0.401406, - 0.162493, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.088395, - 0.339119, - 0.5344800000000001, - 0.667239, - 0.7358049999999999, - 0.752885, - 0.729962, - 0.663695, - 0.55055, - 0.38830000000000003, - 0.158317, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.083626, - 0.328098, - 0.5205839999999999, - 0.657128, - 0.6154310000000001, - 0.633888, - 0.751035, - 0.675605, - 0.547004, - 0.36993, - 0.144755, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08204900000000001, - 0.32782799999999995, - 0.529906, - 0.665727, - 0.744328, - 0.769812, - 0.7462770000000001, - 0.672236, - 0.5512440000000001, - 0.37904000000000004, - 0.14527400000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.084373, - 0.334637, - 0.531218, - 0.670381, - 0.751812, - 0.781566, - 0.759664, - 0.684359, - 0.55765, - 0.382878, - 0.14928899999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08333, - 0.333183, - 0.526046, - 0.6566219999999999, - 0.729096, - 0.74574, - 0.712372, - 0.6402559999999999, - 0.5327999999999999, - 0.372125, - 0.14454599999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08132500000000001, - 0.321942, - 0.505543, - 0.531186, - 0.628436, - 0.728611, - 0.622981, - 0.5122709999999999, - 0.539091, - 0.316109, - 0.12946100000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.069771, - 0.281949, - 0.479825, - 0.622484, - 0.703116, - 0.735587, - 0.7170890000000001, - 0.6619210000000001, - 0.540678, - 0.361514, - 0.121517, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.073994, - 0.316137, - 0.509618, - 0.645105, - 0.7344579999999999, - 0.77101, - 0.752058, - 0.68022, - 0.556929, - 0.37499400000000005, - 0.132066, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07506600000000001, - 0.329903, - 0.5288189999999999, - 0.669962, - 0.75436, - 0.7805460000000001, - 0.7505259999999999, - 0.669593, - 0.546274, - 0.367042, - 0.129351, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07594799999999999, - 0.33469600000000005, - 0.5404629999999999, - 0.678221, - 0.759999, - 0.784149, - 0.753497, - 0.6700839999999999, - 0.548381, - 0.37117, - 0.12865000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.067917, - 0.32844, - 0.523242, - 0.649293, - 0.737413, - 0.774697, - 0.7590779999999999, - 0.6829489999999999, - 0.558019, - 0.373231, - 0.116453, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.060235, - 0.321887, - 0.522903, - 0.66134, - 0.7388239999999999, - 0.764106, - 0.7355839999999999, - 0.663938, - 0.5459700000000001, - 0.36623, - 0.10873999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.055192, - 0.318624, - 0.520471, - 0.655613, - 0.725698, - 0.745539, - 0.716071, - 0.647002, - 0.527909, - 0.35341, - 0.107935, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.051723, - 0.322864, - 0.528386, - 0.6661549999999999, - 0.751287, - 0.780913, - 0.755735, - 0.678964, - 0.55192, - 0.365546, - 0.120102, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.04988, - 0.323188, - 0.529798, - 0.662609, - 0.742851, - 0.768439, - 0.738955, - 0.663066, - 0.5391330000000001, - 0.357768, - 0.110888, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.03703, - 0.290132, - 0.492291, - 0.634021, - 0.723682, - 0.7520650000000001, - 0.7258680000000001, - 0.579526, - 0.273806, - 0.19725499999999999, - 0.050616999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.033932000000000004, - 0.28628899999999996, - 0.491966, - 0.643153, - 0.7302569999999999, - 0.76287, - 0.7335119999999999, - 0.6533869999999999, - 0.505711, - 0.309961, - 0.078503, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.033249, - 0.2959, - 0.519744, - 0.67773, - 0.7724869999999999, - 0.815714, - 0.7995950000000001, - 0.7221029999999999, - 0.590255, - 0.386684, - 0.11690900000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.040188, - 0.340798, - 0.563101, - 0.707622, - 0.7927329999999999, - 0.816487, - 0.784709, - 0.70663, - 0.574032, - 0.383591, - 0.11746899999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.037425, - 0.33852899999999997, - 0.55747, - 0.701844, - 0.784769, - 0.807535, - 0.775019, - 0.688376, - 0.556468, - 0.36551999999999996, - 0.107404, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.032839, - 0.327946, - 0.5421180000000001, - 0.678649, - 0.763641, - 0.78828, - 0.7606620000000001, - 0.679907, - 0.549496, - 0.357584, - 0.10004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030358, - 0.32491699999999996, - 0.5375639999999999, - 0.671922, - 0.7458400000000001, - 0.76644, - 0.735885, - 0.440041, - 0.483379, - 0.275113, - 0.093996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028457999999999997, - 0.31888099999999997, - 0.5279360000000001, - 0.477634, - 0.716495, - 0.747712, - 0.729763, - 0.6608529999999999, - 0.540621, - 0.351203, - 0.030073, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024170999999999998, - 0.312137, - 0.5279980000000001, - 0.685941, - 0.667825, - 0.449124, - 0.31792899999999996, - 0.68565, - 0.390001, - 0.32025099999999995, - 0.066684, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013835, - 0.29871800000000004, - 0.518872, - 0.66926, - 0.7559130000000001, - 0.779464, - 0.752802, - 0.683199, - 0.5535869999999999, - 0.36177699999999996, - 0.089503, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01821, - 0.33626799999999996, - 0.559174, - 0.71211, - 0.802959, - 0.8321660000000001, - 0.800361, - 0.714853, - 0.570804, - 0.370468, - 0.085726, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015080999999999999, - 0.324504, - 0.5412089999999999, - 0.690302, - 0.7776810000000001, - 0.805843, - 0.776123, - 0.692526, - 0.556356, - 0.351922, - 0.07431, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010805, - 0.305906, - 0.522848, - 0.667957, - 0.755856, - 0.78654, - 0.75751, - 0.67748, - 0.53965, - 0.347092, - 0.07054200000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008667, - 0.299342, - 0.515717, - 0.65528, - 0.7360789999999999, - 0.757438, - 0.728174, - 0.651712, - 0.526399, - 0.344615, - 0.068788, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007969, - 0.300274, - 0.5095810000000001, - 0.64179, - 0.71697, - 0.747503, - 0.725487, - 0.652981, - 0.524933, - 0.338949, - 0.065881, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003077, - 0.293784, - 0.507337, - 0.6458579999999999, - 0.726481, - 0.749827, - 0.718604, - 0.641595, - 0.5127200000000001, - 0.32316500000000004, - 0.05602, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004224, - 0.28614999999999996, - 0.496679, - 0.615192, - 0.6905309999999999, - 0.732201, - 0.5296420000000001, - 0.648601, - 0.522007, - 0.328353, - 0.057686999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.293768, - 0.513991, - 0.65822, - 0.751837, - 0.7826000000000001, - 0.758028, - 0.6754779999999999, - 0.5398780000000001, - 0.336031, - 0.054354999999999994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.229303, - 0.454669, - 0.621816, - 0.727923, - 0.759908, - 0.73499, - 0.443108, - 0.496525, - 0.293755, - 0.002265, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.231903, - 0.28092700000000004, - 0.624068, - 0.724563, - 0.759909, - 0.738721, - 0.664337, - 0.5331269999999999, - 0.334949, - 0.055779, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10041599999999999, - 0.287881, - 0.632407, - 0.721325, - 0.6127100000000001, - 0.517942, - 0.416767, - 0.369634, - 0.20540899999999998, - 0.002205, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020344, - 0.48115800000000003, - 0.388367, - 0.734931, - 0.7734249999999999, - 0.754199, - 0.677771, - 0.542781, - 0.335702, - 0.01334, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.253521, - 0.485854, - 0.643393, - 0.736509, - 0.772089, - 0.7487659999999999, - 0.668156, - 0.529126, - 0.326788, - 0.044567999999999997, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.300174, - 0.5451849999999999, - 0.708502, - 0.80134, - 0.831197, - 0.799507, - 0.716394, - 0.575545, - 0.35889800000000005, - 0.053811, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.282563, - 0.5187430000000001, - 0.6723830000000001, - 0.7659579999999999, - 0.7958310000000001, - 0.768602, - 0.682907, - 0.547088, - 0.278557, - 0.007331000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.099217, - 0.31859699999999996, - 0.6646989999999999, - 0.569653, - 0.64242, - 0.35803500000000005, - 0.25294300000000003, - 0.100123, - 0.273293, - 0.006157, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.24607099999999998, - 0.228103, - 0.628096, - 0.493699, - 0.51686, - 0.16775800000000002, - 0.666389, - 0.530216, - 0.32371300000000003, - 0.033112, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.25875099999999995, - 0.48815, - 0.636755, - 0.732501, - 0.6356219999999999, - 0.505801, - 0.44678500000000004, - 0.198896, - 0.06913899999999999, - 0.00046800000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.248726, - 0.490769, - 0.6524070000000001, - 0.736359, - 0.764673, - 0.736735, - 0.655981, - 0.5230049999999999, - 0.321517, - 0.034885, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.081214, - 0.309337, - 0.415222, - 0.717863, - 0.757005, - 0.734993, - 0.659292, - 0.52464, - 0.210478, - 0.006212, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.254383, - 0.515559, - 0.6748310000000001, - 0.774992, - 0.8111, - 0.7836989999999999, - 0.69948, - 0.555818, - 0.346985, - 0.006843, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08201800000000001, - 0.502087, - 0.658883, - 0.748788, - 0.78643, - 0.76538, - 0.689615, - 0.555316, - 0.347454, - 0.040917, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.081954, - 0.500901, - 0.643764, - 0.722268, - 0.762445, - 0.7445320000000001, - 0.6681130000000001, - 0.5307050000000001, - 0.334155, - 0.039174999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.090297, - 0.492899, - 0.636746, - 0.7192200000000001, - 0.7378709999999999, - 0.7117279999999999, - 0.6460499999999999, - 0.5192469999999999, - 0.332792, - 0.042119, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.066106, - 0.268338, - 0.423965, - 0.5869800000000001, - 0.557567, - 0.5192140000000001, - 0.610062, - 0.5009089999999999, - 0.31441800000000003, - 0.031341, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.067292, - 0.284527, - 0.6138920000000001, - 0.7181799999999999, - 0.763692, - 0.7462409999999999, - 0.6763239999999999, - 0.540089, - 0.343514, - 0.042225, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.20565, - 0.470835, - 0.629564, - 0.724308, - 0.766805, - 0.7465689999999999, - 0.6720280000000001, - 0.533674, - 0.124861, - 0.000423, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012541, - 0.146346, - 0.218701, - 0.009936, - 0.05912, - 0.021743, - 0.027427, - 0.080292, - 0.053134999999999995, - 0.033429, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.180511, - 0.44994999999999996, - 0.480558, - 0.563862, - 0.520109, - 0.564016, - 0.383623, - 0.13995500000000002, - 0.017038, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.037923, - 0.082157, - 0.072137, - 0.117772, - 0.405541, - 0.387872, - 0.488442, - 0.374099, - 0.307741, - 0.012944, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.17328100000000002, - 0.003713, - 0.631733, - 0.353815, - 0.444603, - 0.492788, - 0.20970599999999998, - 0.004253, - 0.33504, - 0.003823, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.180171, - 0.48429099999999997, - 0.662058, - 0.762557, - 0.805327, - 0.7852169999999999, - 0.7080230000000001, - 0.56678, - 0.346855, - 0.004444, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.179709, - 0.46717000000000003, - 0.6276470000000001, - 0.7230850000000001, - 0.767178, - 0.5914020000000001, - 0.680023, - 0.360042, - 0.241241, - 0.028045999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.169067, - 0.47007499999999997, - 0.638692, - 0.7366739999999999, - 0.7774, - 0.7561380000000001, - 0.45593, - 0.5411459999999999, - 0.335918, - 0.031799, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.169875, - 0.48206099999999996, - 0.651482, - 0.7582770000000001, - 0.800237, - 0.777166, - 0.6993429999999999, - 0.558841, - 0.34334, - 0.032179, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.16505099999999998, - 0.486207, - 0.657125, - 0.6986079999999999, - 0.693381, - 0.7683150000000001, - 0.557194, - 0.553859, - 0.351525, - 0.036669, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.155145, - 0.461129, - 0.630808, - 0.735178, - 0.785512, - 0.777556, - 0.225082, - 0.15044300000000002, - 0.342557, - 0.03123, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.14418199999999998, - 0.458913, - 0.479303, - 0.380979, - 0.775091, - 0.023267, - 0.199731, - 0.066807, - 0.153915, - 0.022161, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.151681, - 0.470808, - 0.650428, - 0.7594529999999999, - 0.807166, - 0.788475, - 0.706433, - 0.5650510000000001, - 0.358124, - 0.038231, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.151543, - 0.478238, - 0.651402, - 0.758953, - 0.800665, - 0.7795639999999999, - 0.702674, - 0.56286, - 0.357308, - 0.041568, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.138708, - 0.210651, - 0.622953, - 0.716237, - 0.743563, - 0.734023, - 0.6681849999999999, - 0.5414829999999999, - 0.343507, - 0.038011, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.121145, - 0.23294, - 0.6289, - 0.5152709999999999, - 0.507863, - 0.473408, - 0.066858, - 0.39196, - 0.349071, - 0.0055899999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.134658, - 0.470459, - 0.6508379999999999, - 0.7654489999999999, - 0.8158200000000001, - 0.801414, - 0.72621, - 0.585942, - 0.377149, - 0.054387, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.138851, - 0.470574, - 0.6401760000000001, - 0.741839, - 0.781397, - 0.76232, - 0.691926, - 0.560845, - 0.364261, - 0.006595, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.096102, - 0.065228, - 0.613275, - 0.5733469999999999, - 0.5743980000000001, - 0.753479, - 0.625656, - 0.558945, - 0.358668, - 0.052375, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.127584, - 0.465435, - 0.6368630000000001, - 0.740158, - 0.779592, - 0.761161, - 0.687929, - 0.5615610000000001, - 0.364584, - 0.050676, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.120866, - 0.450305, - 0.61999, - 0.69971, - 0.7320570000000001, - 0.727034, - 0.665661, - 0.537581, - 0.343251, - 0.040179, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038506, - 0.201413, - 0.30916899999999997, - 0.605852, - 0.767018, - 0.574845, - 0.710862, - 0.58084, - 0.374729, - 0.039710999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10720099999999999, - 0.422965, - 0.6094339999999999, - 0.7143740000000001, - 0.55702, - 0.755105, - 0.6869160000000001, - 0.557506, - 0.35659199999999996, - 0.051065, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10942400000000001, - 0.43626, - 0.6105119999999999, - 0.717865, - 0.7653110000000001, - 0.751, - 0.369433, - 0.453274, - 0.111301, - 0.002709, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.105634, - 0.425738, - 0.613294, - 0.71697, - 0.7653390000000001, - 0.7526849999999999, - 0.6871799999999999, - 0.494915, - 0.35642399999999996, - 0.012266, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.116429, - 0.469032, - 0.6505650000000001, - 0.7637849999999999, - 0.806976, - 0.625709, - 0.4617, - 0.37878500000000004, - 0.153164, - 0.005131999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.113733, - 0.463537, - 0.642828, - 0.749715, - 0.654027, - 0.691058, - 0.7094790000000001, - 0.580594, - 0.390424, - 0.07828199999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.103739, - 0.437002, - 0.6106699999999999, - 0.542218, - 0.577558, - 0.528649, - 0.43344900000000003, - 0.32770900000000003, - 0.155053, - 0.005602, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01668, - 0.11138200000000001, - 0.152782, - 0.324201, - 0.515428, - 0.602601, - 0.40186, - 0.209235, - 0.36279, - 0.017186, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006552, - 0.26812400000000003, - 0.430122, - 0.327291, - 0.139334, - 0.128154, - 0.035482, - 0.086597, - 0.082486, - 0.002897, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014361, - 0.005632, - 0.151531, - 0.07006399999999999, - 0.106531, - 0.040536, - 0.093756, - 0.394959, - 0.051283, - 0.06218, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.081358, - 0.034476999999999994, - 0.218393, - 0.043686, - 0.13411199999999998, - 0.136252, - 0.114898, - 0.08026000000000001, - 0.081997, - 0.0038900000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.083077, - 0.396892, - 0.586102, - 0.714333, - 0.767248, - 0.553376, - 0.476887, - 0.574817, - 0.264644, - 0.10291, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "annual_energy_produced_kwh_bau": 71463.73, - "electric_to_load_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.295, - 17.556, - 26.273, - 48.938, - 61.118, - 55.855, - 45.968, - 31.371, - 7.937, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.839, - 18.257, - 27.039, - 30.854, - 30.078, - 40.563, - 46.492, - 31.885, - 0.563, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.613, - 28.064, - 32.519, - 31.809, - 26.589, - 48.014, - 33.359, - 8.571, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.074, - 18.555, - 27.555, - 31.268, - 30.453, - 47.058, - 47.137, - 32.667, - 8.422, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.161, - 34.519, - 48.681, - 57.482, - 61.267, - 60.469, - 44.906, - 30.046, - 31.797, - 4.036, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 2.41, - 15.561, - 6.682, - 4.846, - 14.218, - 39.413, - 45.485, - 31.736, - 8.707, - 0.0, - 0.0, - 0.0, - 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.192, - 14.64, - 23.523, - 27.735, - 27.495, - 44.191, - 45.377, - 31.348, - 8.86, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.396, - 18.424, - 28.083, - 32.671, - 32.089, - 48.487, - 48.949, - 34.059, - 10.261, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 17.414, - 26.173, - 30.235, - 29.647, - 24.935, - 47.193, - 33.187, - 10.701, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.399, - 16.374, - 16.629, - 11.768, - 19.895, - 20.298, - 33.821, - 19.718, - 3.254, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 20.992, - 26.338, - 13.592, - 9.964, - 13.499, - 28.811, - 10.581, - 0.0, - 0.0, - 0.0, - 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.049, - 15.536, - 24.867, - 29.282, - 28.85, - 44.727, - 46.371, - 32.719, - 11.491, - 0.0, - 0.0, - 0.0, - 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.31, - 15.207, - 23.629, - 27.877, - 27.8, - 44.716, - 46.428, - 32.723, - 11.278, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 2.733, - 17.09, - 26.046, - 19.652, - 11.565, - 29.287, - 39.861, - 26.198, - 12.724, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.007, - 13.518, - 7.55, - 14.877, - -0.0, - 34.868, - 17.499, - 1.984, - 1.366, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 14.316, - 23.95, - 28.795, - 28.779, - 44.68, - 47.104, - 33.008, - 12.438, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 13.351, - 22.265, - 26.96, - 13.853, - 43.938, - 46.07, - 32.587, - 12.674, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.493, - 15.494, - 13.892, - 2.476, - 27.489, - 12.49, - 1.421, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - -0.0, - -0.0, - 27.474, - 23.393, - -0.0, - 21.657, - 1.404, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.087, - 15.477, - 24.61, - 29.514, - -0.0, - -0.0, - 0.0, - 0.577, - 0.853, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 2.843, - 12.356, - 14.185, - 15.637, - 3.776, - 25.071, - 26.922, - 14.267, - 0.0, - 0.0, - 0.0, - 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.543, - 14.97, - 23.812, - 28.827, - 29.054, - 47.333, - 47.577, - 34.393, - 14.275, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 14.144, - 5.201, - 14.848, - 8.73, - 28.031, - 35.045, - 22.214, - 3.956, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 0.0, - -0.0, - -0.0, - -0.0, - -0.0, - 3.094, - 1.189, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 0.0, - 26.824, - 17.479, - 35.021, - 14.709, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.938, - 0.0, - 12.191, - 11.483, - 3.108, - -0.0, - 32.651, - 11.877, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.42, - 20.128, - 30.894, - 33.173, - 33.173, - 54.445, - 53.524, - 38.533, - 17.303, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.555, - 19.604, - 29.213, - 33.173, - 33.173, - 54.564, - 51.467, - 37.457, - 17.234, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.898, - 17.905, - 26.507, - 30.393, - 29.95, - 37.518, - 41.683, - 20.338, - 5.538, - 0.0, - 0.0, - 0.0, - 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.728, - 16.234, - 14.835, - 18.388, - 17.472, - 29.464, - 37.151, - 26.225, - 8.188, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.625, - 33.126, - 33.173, - 29.035, - 23.803, - 37.638, - 14.423, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 13.749, - 22.867, - 27.495, - 28.385, - 45.773, - 48.899, - 35.702, - 15.665, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.125, - 18.901, - 17.986, - 20.23, - 16.832, - 53.775, - 50.358, - 37.408, - 18.603, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.267, - 18.485, - 27.389, - 31.811, - 31.555, - 54.395, - 50.276, - 37.375, - 18.809, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 2.832, - 16.988, - 26.375, - 30.821, - 30.748, - 52.911, - 49.41, - 36.591, - 18.198, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 12.979, - 16.793, - 12.481, - 5.008, - 34.248, - 21.471, - 6.774, - 0.0, - 0.0, - 0.0, - 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.748, - 14.759, - 24.158, - 29.212, - 29.85, - 43.712, - 40.042, - 29.577, - 11.795, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 2.862, - 10.245, - 19.648, - 8.41, - 18.95, - 29.35, - 26.834, - 10.376, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 8.795, - 11.617, - 12.091, - 21.927, - 6.385, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.104, - 3.746, - 13.628, - -0.0, - 0.0, - 0.0, - 6.008, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - -0.0, - 8.13, - 4.847, - 8.888, - 2.329, - 27.229, - 3.715, - 0.0, - 0.0, - 0.0, - 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.438, - 16.512, - 26.103, - 31.586, - 32.183, - 41.647, - 51.306, - 37.491, - 18.454, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.44, - -0.0, - 25.262, - 30.705, - 30.816, - 52.054, - 50.637, - 36.952, - 1.014, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 2.818, - 17.904, - -0.0, - 32.264, - 32.735, - 49.033, - 52.157, - 29.623, - 19.06, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.171, - 18.846, - 28.881, - 33.173, - 33.173, - 59.053, - 52.677, - 39.289, - 20.424, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.689, - 18.203, - 26.908, - 31.458, - 31.476, - 45.787, - 50.129, - 37.245, - 19.569, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.204, - 17.16, - 26.328, - 31.093, - 31.429, - 56.985, - 50.469, - 37.493, - 19.219, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.217, - 17.519, - 26.815, - 31.437, - 31.322, - 56.283, - 49.96, - 30.302, - 3.684, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 3.325, - -0.0, - -0.0, - 4.397, - 20.496, - 27.518, - 12.594, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - -0.0, - 14.457, - 6.279, - 18.55, - 37.638, - 19.566, - 0.518, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.467, - 17.089, - 25.881, - 30.724, - 31.138, - 57.346, - 51.342, - 38.112, - 20.412, - 0.774, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.265, - 15.17, - 23.768, - 29.306, - 30.41, - 56.404, - 51.148, - 38.494, - 20.661, - 0.946, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 6.396, - 14.995, - 10.897, - 0.943, - 25.4, - 12.068, - 0.133, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.499, - 22.293, - 32.131, - 33.173, - 33.483, - 65.049, - 56.676, - 42.616, - 23.057, - 0.566, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 6.61, - 20.397, - 29.29, - 32.675, - 32.026, - 58.513, - 50.869, - 39.283, - 21.873, - 0.593, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.852, - 19.144, - 29.034, - 33.173, - 33.173, - 45.63, - 8.087, - 2.497, - 4.123, - 1.185, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.581, - 18.145, - 27.677, - 32.797, - 33.173, - 60.129, - 52.625, - 39.689, - 21.334, - 1.676, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 6.562, - 21.483, - 17.894, - 19.017, - 33.173, - 46.994, - 55.519, - 3.209, - 3.901, - 0.157, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 7.928, - 22.387, - 31.941, - 33.173, - 34.566, - 65.049, - 56.13, - 42.352, - 0.496, - 1.163, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.982, - 0.0, - 4.9, - 0.0, - 6.288, - 9.48, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 2.041, - 12.182, - 4.832, - 5.411, - 23.71, - 15.802, - 6.736, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 2.358, - 17.191, - 18.265, - 15.778, - 34.269, - 40.35, - 23.002, - 9.197, - 0.298, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 4.644, - 2.417, - 14.598, - 17.763, - 20.196, - 38.355, - 33.489, - 37.613, - 20.363, - 1.997, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 4.719, - 16.629, - 25.043, - 8.111, - 31.135, - 58.226, - 40.785, - 37.378, - 9.776, - 2.016, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 25.5, - 29.703, - 16.997, - 33.942, - 50.287, - 37.216, - 20.167, - 2.172, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 6.514, - 20.178, - 17.456, - 20.157, - 16.835, - 45.874, - 43.636, - 30.474, - 21.603, - 0.555, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.15, - 21.968, - 30.704, - 33.173, - 37.826, - 61.245, - 52.627, - 39.655, - 17.153, - 1.859, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.404, - 19.353, - 27.745, - 31.021, - 29.318, - 53.628, - 48.721, - 28.645, - 16.01, - 2.526, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 19.086, - 27.865, - 32.064, - 32.343, - 59.561, - 50.779, - 38.069, - 20.746, - 2.804, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 21.31, - 18.289, - 16.709, - 21.477, - 33.559, - 38.581, - 24.576, - 15.22, - 1.994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 7.441, - 20.891, - 29.909, - 33.173, - 38.08, - 60.63, - 51.74, - 38.814, - 21.136, - 3.098, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.805, - 20.055, - 28.728, - 33.051, - 38.006, - 60.643, - 51.765, - 39.012, - 21.465, - 3.308, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 7.205, - 19.43, - 27.045, - 30.871, - 36.745, - 58.833, - 50.831, - 38.413, - 21.206, - 3.322, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 7.794, - 20.737, - 29.682, - 33.173, - 39.164, - 60.418, - 51.231, - 38.343, - 21.062, - 3.272, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 5.627, - 16.983, - 24.947, - 27.981, - 34.126, - 57.839, - 50.207, - 38.277, - 21.409, - 3.456, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 8.692, - 21.777, - 30.723, - 33.173, - 40.954, - 62.14, - 53.402, - 35.827, - 15.608, - 2.715, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 9.715, - 22.906, - 31.439, - 33.173, - 41.649, - 61.008, - 52.436, - 39.544, - 22.236, - 3.752, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 9.533, - 22.366, - 30.859, - 33.173, - 41.866, - 60.033, - 50.951, - 38.481, - 21.637, - 3.679, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 15.667, - 20.969, - 18.302, - 17.837, - 34.616, - 34.626, - 37.594, - 20.899, - 3.539, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 6.372, - 18.705, - 26.575, - 30.762, - 37.875, - 58.622, - 50.135, - 37.276, - 20.198, - 3.315, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 5.388, - 17.057, - 23.487, - 26.922, - 34.482, - 57.347, - 49.907, - 37.448, - 20.495, - 3.49, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 5.295, - 23.181, - 19.344, - 21.984, - 44.713, - 41.492, - 36.004, - 14.225, - 2.587, - 0.0, - 0.0, - 0.0, - 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.172, - 26.3, - 29.678, - 31.157, - 55.985, - 33.926, - 31.573, - 14.97, - 3.321, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.277, - 17.315, - 26.854, - 31.253, - 38.213, - 51.004, - 49.653, - 37.248, - 20.047, - 3.459, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.437, - 21.38, - 30.346, - 33.173, - 0.0, - 25.974, - 36.172, - 22.642, - 8.083, - 3.626, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.23, - 20.682, - 28.187, - 31.658, - 41.695, - 59.618, - 51.063, - 37.949, - 8.627, - 3.705, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.176, - 17.629, - 24.761, - 20.072, - 28.586, - 47.335, - 43.712, - 35.215, - 19.131, - 3.546, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 17.045, - 26.181, - 27.726, - 13.121, - 41.904, - 48.772, - 33.634, - 12.975, - 2.501, - 0.0, - 0.0, - 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.855, - 23.587, - 31.974, - 33.173, - 45.812, - 61.858, - 52.815, - 39.544, - 21.738, - 3.897, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.371, - 20.646, - 29.269, - 33.173, - 44.005, - 61.034, - 52.339, - 38.952, - 0.278, - 0.119, - 0.0, - 0.0, - 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.499, - 24.197, - 32.821, - 33.173, - 46.503, - 62.959, - 53.385, - 40.006, - 21.789, - 3.983, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 9.831, - 22.049, - 29.677, - 32.783, - 44.279, - 48.255, - 50.328, - 37.806, - 20.878, - 3.884, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.102, - 7.78, - 22.816, - 27.018, - 38.87, - 56.363, - 48.83, - 36.468, - 20.063, - 3.84, - 0.0, - 0.0, - 0.0, - 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.947, - 27.247, - 31.56, - 37.413, - 59.362, - 50.749, - 38.158, - 20.776, - 4.018, - 0.0, - 0.0, - 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.466, - 23.369, - 31.089, - 33.173, - 46.451, - 62.011, - 52.65, - 23.025, - 20.834, - 4.147, - 0.0, - 0.0, - 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.656, - 23.314, - 31.981, - 33.173, - 47.063, - 60.984, - 51.865, - 38.519, - 20.835, - 4.168, - 0.0, - 0.0, - 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.076, - 22.068, - 29.183, - 32.0, - 44.816, - 57.821, - 49.574, - 37.634, - 20.686, - 4.133, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 7.613, - 19.138, - 26.984, - 30.903, - 41.568, - 58.0, - 49.118, - 36.326, - 20.067, - 3.96, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 7.826, - 19.643, - 27.186, - 31.225, - 48.008, - 58.829, - 49.999, - 36.826, - 18.154, - 3.552, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 9.422, - 21.001, - 29.254, - 33.173, - 47.25, - 60.041, - 51.028, - 38.183, - 20.868, - 3.998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 21.868, - 0.0, - 0.106, - 33.173, - 37.083, - 43.139, - 25.356, - 4.066, - 0.123, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 21.743, - 29.562, - 33.168, - 27.553, - 59.174, - 27.824, - 13.292, - 11.345, - 2.382, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 9.496, - -0.0, - -0.0, - -0.0, - -0.0, - -0.0, - 0.0, - 15.534, - 5.293, - 0.0, - 0.0, - 0.0, - 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.736, - 23.947, - 31.279, - 33.173, - 47.311, - 60.308, - 51.065, - 38.291, - 20.778, - 3.9, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.716, - 19.213, - 25.028, - 27.235, - 42.251, - 56.191, - 48.43, - 36.611, - 19.772, - 3.928, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 7.999, - 18.673, - 25.438, - 28.046, - 44.706, - 54.671, - 47.048, - 35.476, - 19.405, - 3.879, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 7.209, - 17.132, - 23.082, - 26.084, - 40.696, - 55.38, - 47.491, - 35.618, - 19.443, - 3.602, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 7.573, - 9.535, - 15.537, - 28.133, - 40.262, - 55.195, - 47.058, - 35.243, - 15.317, - 3.642, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 8.018, - 18.207, - 24.196, - 26.349, - 38.937, - 51.26, - 43.815, - 33.047, - 17.817, - 3.746, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.204, - 16.997, - 24.814, - 27.081, - 37.906, - 51.558, - 43.157, - 33.025, - 18.288, - 3.421, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 6.752, - 16.718, - 22.743, - 24.946, - 38.312, - 52.181, - 44.858, - 33.81, - 18.572, - 3.518, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 5.932, - 16.378, - 23.943, - 27.22, - 40.64, - 54.601, - 46.52, - 34.421, - 18.868, - 3.708, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 8.056, - 18.498, - 25.631, - 29.015, - 51.342, - 56.648, - 48.125, - 36.077, - 19.762, - 3.833, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 6.175, - 18.601, - 16.6, - 0.0, - 9.577, - 35.413, - 12.144, - 11.06, - 6.955, - 1.803, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 0.0, - 3.645, - 14.311, - 15.415, - 23.032, - 25.642, - 14.267, - 3.607, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 8.427, - 19.625, - 26.944, - 30.413, - 45.367, - 27.336, - 35.024, - 14.139, - 7.992, - 1.356, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 9.216, - 19.936, - 26.978, - 29.712, - 44.961, - 55.036, - 46.4, - 34.812, - 18.68, - 3.942, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 8.208, - 19.246, - 26.589, - 28.662, - 42.574, - 52.939, - 44.44, - 33.491, - 18.453, - 3.776, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 7.545, - 17.952, - 24.207, - 25.743, - 39.879, - 51.587, - 44.059, - 33.166, - 17.922, - 4.002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 5.671, - 15.92, - 23.053, - 26.487, - 52.853, - 54.06, - 45.635, - 33.636, - 18.94, - 3.677, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 8.13, - 18.435, - 24.872, - 26.682, - 40.369, - 50.928, - 44.659, - 33.844, - 18.285, - 3.614, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.02, - 16.763, - 22.921, - 24.728, - 38.419, - 51.056, - 44.345, - 33.378, - 17.869, - 3.779, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 6.229, - 15.958, - 22.347, - 24.335, - 37.76, - 50.017, - 42.911, - 32.059, - 17.316, - 3.828, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.264, - 13.541, - 20.713, - 23.996, - 38.141, - 51.704, - 44.207, - 32.873, - 17.706, - 3.907, - 0.021, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 5.239, - 10.871, - 18.848, - 18.824, - 43.175, - 54.48, - 37.364, - 30.485, - 16.487, - 4.09, - 0.069, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.666, - 17.647, - 24.236, - 27.873, - 1.837, - 24.601, - 47.552, - 35.521, - 14.449, - 4.836, - 0.087, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 0.0, - 19.697, - 26.878, - 30.272, - 40.063, - 25.877, - 5.503, - 29.864, - 14.556, - 3.928, - 0.165, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 9.01, - 4.059, - 26.156, - 28.582, - 45.497, - 37.814, - 37.106, - 33.528, - 18.043, - 4.198, - 0.149, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 5.494, - 15.576, - 22.443, - 25.904, - 41.3, - 53.09, - 44.593, - 33.002, - 17.771, - 4.721, - 0.113, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 6.325, - 17.021, - 24.4, - 27.879, - 44.501, - 54.343, - 46.247, - 34.211, - 18.32, - 4.226, - 0.232, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 6.741, - 17.301, - 24.278, - 27.517, - 44.192, - 54.409, - 46.284, - 34.596, - 18.601, - 3.917, - 0.273, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 7.695, - 17.972, - 25.733, - 28.92, - 45.5, - 55.225, - 46.806, - 34.941, - 18.764, - 3.852, - 0.223, - 0.0, - 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.681, - 21.058, - 27.318, - 30.005, - 48.803, - 55.458, - 47.321, - 35.519, - 19.167, - 4.139, - 0.296, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.767, - 19.025, - 25.782, - 31.338, - 59.965, - 55.297, - 47.134, - 35.207, - 19.048, - 4.449, - 0.359, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.516, - 19.401, - 26.491, - 29.57, - 40.586, - 11.349, - 35.103, - 35.026, - 18.884, - 4.618, - 0.366, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 7.338, - 17.787, - 24.425, - 27.649, - 44.889, - 54.736, - 46.385, - 28.152, - 16.562, - 4.685, - 0.469, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 7.816, - 18.828, - 26.246, - 29.588, - 46.696, - 55.916, - 47.692, - 35.612, - 19.192, - 4.165, - 0.369, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 7.747, - 17.349, - 22.833, - 24.959, - 41.443, - 52.023, - 44.412, - 33.493, - 18.257, - 3.738, - 0.376, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.78, - 17.674, - 23.83, - 26.013, - 42.076, - 51.517, - 43.238, - 32.776, - 18.147, - 3.832, - 0.379, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 6.424, - 16.258, - 21.922, - 23.697, - 38.295, - 48.739, - 42.404, - 32.657, - 17.778, - 3.957, - 0.402, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 4.751, - 14.723, - 21.572, - 24.836, - 55.333, - 52.303, - 44.477, - 33.292, - 18.024, - 3.765, - 0.393, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 5.298, - 14.458, - 20.366, - 22.621, - 37.661, - 49.593, - 42.584, - 32.356, - 17.576, - 4.016, - 0.427, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 4.514, - 14.078, - 21.061, - 24.116, - 38.828, - 51.757, - 44.152, - 33.223, - 18.155, - 3.738, - 0.464, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.462, - 16.857, - 11.879, - 26.694, - 36.024, - 53.307, - 45.532, - 33.991, - 18.484, - 3.921, - 0.537, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 7.621, - 18.021, - 24.932, - 27.99, - 44.763, - 54.901, - 46.712, - 35.022, - 19.033, - 3.965, - 0.585, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 7.439, - 18.077, - 25.212, - 28.062, - 45.499, - 54.587, - 46.349, - 34.792, - 18.868, - 4.401, - 0.678, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 5.773, - 15.248, - 21.927, - 24.44, - 40.617, - 51.657, - 44.169, - 33.46, - 18.434, - 4.089, - 0.678, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 5.265, - 14.668, - 21.028, - 26.822, - 54.044, - 50.098, - 42.874, - 32.398, - 17.733, - 4.321, - 0.677, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 4.454, - 14.263, - 20.798, - 26.803, - 55.028, - 40.113, - 43.575, - 32.629, - 16.485, - 4.7, - 0.78, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 4.842, - 14.411, - 20.843, - 23.97, - 38.83, - 51.211, - 43.832, - 32.857, - 18.14, - 4.442, - 0.793, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - -0.0, - 8.163, - 14.512, - 7.109, - 0.0, - 0.201, - 30.39, - 13.747, - 18.154, - 4.591, - 0.888, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 4.855, - 13.985, - 19.912, - 23.653, - 33.088, - 36.726, - 37.538, - 29.956, - 15.21, - 4.994, - 0.92, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - -0.0, - 3.849, - 10.182, - 16.163, - 15.115, - 37.45, - 21.295, - 18.382, - 12.173, - 4.373, - 0.927, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 3.724, - 13.463, - 19.259, - 20.678, - 33.291, - 46.442, - 40.172, - 30.716, - 16.866, - 4.368, - 0.987, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.633, - 13.111, - 19.658, - 24.695, - 54.54, - 50.793, - 43.368, - 32.613, - 18.148, - 4.378, - 0.989, - 0.0, - 0.0, - 0.0, - 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.349, - 5.348, - 23.5, - 20.094, - 26.676, - 33.572, - 18.676, - 5.396, - 1.072, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 6.006, - 16.414, - 23.363, - 26.678, - 41.932, - 53.913, - 45.863, - 34.497, - 19.023, - 4.699, - 1.157, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 8.311, - 19.418, - 26.574, - 29.815, - 46.715, - 56.092, - 47.79, - 36.033, - 20.152, - 4.618, - 1.122, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 9.04, - 19.876, - 26.743, - 28.939, - 42.97, - 55.153, - 46.948, - 35.421, - 19.627, - 4.458, - 1.049, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 6.617, - 16.171, - 22.051, - 24.433, - 39.065, - 50.496, - 42.678, - 32.551, - 18.622, - 4.342, - 1.163, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.352, - 14.969, - 20.756, - 22.871, - 36.844, - 49.957, - 43.208, - 33.005, - 18.709, - 4.543, - 1.115, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 4.47, - 14.579, - 21.535, - 26.698, - 56.554, - 52.834, - 45.218, - 34.229, - 19.277, - 4.549, - 1.128, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 6.552, - 15.364, - 22.126, - 27.146, - 41.877, - 54.14, - 46.272, - 34.889, - 19.63, - 4.646, - 1.257, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 6.133, - 16.368, - 23.242, - 26.412, - 41.658, - 53.497, - 45.556, - 34.347, - 19.347, - 4.545, - 1.203, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 5.229, - 14.319, - 19.62, - 21.045, - 35.156, - 49.269, - 43.136, - 33.018, - 18.763, - 4.849, - 1.28, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 3.669, - 13.449, - 20.14, - 23.269, - 37.038, - 51.032, - 43.692, - 32.655, - 18.555, - 5.009, - 1.194, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 4.961, - 15.199, - 22.015, - 25.207, - 38.888, - 52.773, - 45.119, - 34.148, - 19.4, - 4.734, - 1.246, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 4.787, - 14.407, - 20.21, - 22.296, - 36.099, - 50.012, - 43.327, - 33.147, - 19.03, - 4.928, - 1.335, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 4.725, - 14.006, - 19.284, - 27.672, - 52.741, - 49.575, - 43.106, - 32.965, - 18.864, - 5.052, - 1.33, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.576, - 12.886, - 19.272, - 22.487, - 36.769, - 50.452, - 42.884, - 32.765, - 18.712, - 4.987, - 1.287, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 3.658, - 12.923, - 19.025, - 21.558, - 34.905, - 49.985, - 42.955, - 32.721, - 18.678, - 4.9, - 1.234, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.179, - 13.953, - 20.553, - 23.733, - 36.972, - 51.396, - 44.049, - 33.516, - 19.181, - 4.834, - 1.269, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 3.643, - 13.183, - 19.73, - 22.901, - 35.515, - 51.032, - 43.82, - 33.368, - 19.193, - 4.867, - 1.261, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.311, - 12.711, - 17.964, - 21.692, - 34.582, - 50.56, - 43.574, - 32.348, - 18.461, - 4.903, - 1.175, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 0.0, - 12.528, - 18.894, - 21.402, - 30.913, - 43.958, - 39.055, - 29.115, - 15.835, - 5.223, - 1.266, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 0.721, - 10.356, - 20.182, - 24.418, - 52.039, - 50.761, - 44.674, - 34.043, - 19.652, - 4.959, - 1.219, - 0.0, - 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.322, - 10.6, - 17.002, - 20.167, - 31.205, - 48.086, - 26.47, - 15.629, - 18.039, - 5.217, - 1.341, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 2.386, - 11.771, - 18.406, - 21.583, - 33.123, - 49.936, - 42.954, - 32.697, - 18.885, - 5.208, - 1.316, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.704, - 15.131, - 22.418, - 25.81, - 38.65, - 53.173, - 45.579, - 34.613, - 19.982, - 5.108, - 1.257, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 5.161, - 14.565, - 20.155, - 22.926, - 37.064, - 51.586, - 44.879, - 34.493, - 20.025, - 5.105, - 1.24, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.537, - 12.693, - 19.271, - 22.836, - 35.324, - 51.569, - 44.571, - 34.115, - 19.935, - 4.871, - 0.946, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 4.91, - 14.503, - 20.148, - 23.256, - 35.544, - 51.492, - 44.661, - 34.348, - 19.988, - 4.986, - 0.982, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 5.283, - 15.295, - 21.738, - 29.159, - 56.631, - 52.882, - 45.652, - 35.05, - 20.379, - 4.994, - 0.941, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 4.633, - 13.472, - 18.925, - 21.661, - 33.945, - 50.046, - 43.446, - 33.611, - 19.566, - 4.796, - 0.875, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 2.837, - 10.866, - 16.911, - 10.472, - 31.729, - 47.203, - 40.77, - 31.077, - 18.714, - 5.485, - 1.253, - 0.0, - 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.165, - 10.401, - 16.693, - 21.95, - 51.266, - 42.79, - 41.975, - 32.135, - 18.563, - 5.379, - 1.285, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 0.863, - 10.245, - 16.726, - 20.143, - 24.59, - 42.523, - 41.881, - 31.998, - 18.717, - 5.734, - 1.427, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 2.839, - 12.81, - 19.742, - 23.09, - 33.978, - 51.587, - 44.486, - 34.014, - 19.731, - 4.984, - 0.988, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 3.894, - 14.177, - 21.076, - 24.488, - 35.337, - 52.516, - 45.196, - 34.69, - 20.355, - 5.262, - 0.959, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 2.85, - 12.421, - 19.031, - 25.046, - 54.254, - 50.85, - 43.836, - 33.117, - 19.515, - 6.092, - 1.441, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 0.0, - 6.28, - 8.192, - 4.037, - 7.126, - 24.456, - 20.07, - 25.914, - 16.734, - 5.732, - 1.272, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 3.899, - 14.529, - 22.298, - 25.79, - 37.482, - 53.625, - 46.411, - 35.615, - 20.781, - 5.357, - 0.924, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 4.214, - 14.177, - 20.847, - 24.196, - 35.338, - 52.463, - 45.448, - 34.934, - 20.308, - 5.168, - 0.864, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 3.828, - 13.418, - 19.724, - 23.133, - 33.654, - 51.301, - 44.348, - 34.03, - 19.837, - 5.133, - 0.941, - 0.0, - 0.0, - 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.236, - -0.0, - -0.0, - 0.0, - 18.847, - 40.562, - 31.423, - 19.106, - 5.418, - 1.015, - 0.0, - 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.259, - 10.874, - 17.664, - 20.976, - 29.153, - 49.194, - 42.706, - 32.613, - 18.947, - 5.512, - 1.013, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 2.337, - 12.323, - 19.181, - 23.778, - 54.379, - 51.035, - 44.098, - 33.89, - 19.893, - 5.19, - 0.899, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 3.661, - 13.594, - 20.23, - 23.636, - 33.843, - 51.689, - 44.66, - 34.316, - 20.127, - 5.29, - 0.904, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 4.079, - 14.348, - 21.249, - 24.797, - 35.119, - 52.73, - 45.402, - 34.726, - 20.321, - 5.111, - 0.761, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 3.725, - 13.991, - 21.268, - 24.94, - 35.042, - 53.177, - 46.006, - 35.389, - 20.842, - 5.169, - 0.761, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 3.852, - 14.145, - 21.314, - 24.837, - 35.024, - 53.1, - 45.692, - 35.025, - 20.589, - 5.263, - 0.758, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 3.401, - 13.529, - 20.459, - 23.83, - 33.531, - 51.979, - 44.726, - 34.189, - 19.972, - 5.248, - 0.838, - 0.0, - 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.771, - 11.464, - 18.211, - 21.644, - 30.508, - 49.743, - 42.898, - 32.53, - 18.99, - 5.193, - 0.535, - 0.0, - 0.0, - 0.0, - 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.888, - 11.162, - 18.86, - 0.0, - 0.0, - 10.346, - 1.306, - 5.53, - 0.936, - 0.0, - 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.295, - 11.128, - 18.209, - 21.777, - 30.601, - 50.287, - 43.517, - 33.408, - 19.6, - 5.261, - 0.774, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 2.72, - 12.778, - 19.792, - 23.335, - 32.374, - 51.851, - 44.677, - 34.218, - 19.821, - 5.31, - 0.774, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 2.8, - 12.813, - 19.445, - 22.93, - 32.315, - 51.529, - 44.587, - 34.32, - 20.01, - 5.292, - 0.715, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 2.138, - 12.016, - 19.038, - 22.496, - 31.273, - 51.046, - 43.987, - 33.637, - 19.598, - 5.241, - 0.659, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 2.491, - 12.456, - 19.237, - 22.595, - 31.879, - 51.135, - 44.168, - 33.831, - 19.669, - 5.222, - 0.651, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 2.691, - 12.625, - 19.18, - 22.62, - 31.699, - 50.491, - 43.693, - 33.603, - 19.708, - 5.108, - 0.548, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 2.555, - 12.348, - 19.129, - 22.588, - 51.187, - 51.297, - 44.192, - 33.823, - 19.725, - 5.194, - 0.533, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 2.188, - 11.82, - 18.587, - 21.928, - 30.727, - 50.068, - 42.899, - 32.558, - 19.188, - 5.436, - 0.467, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 12.412, - 13.183, - 15.556, - 16.167, - 32.568, - 43.892, - 33.377, - 19.503, - 5.271, - 0.449, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 2.201, - 11.974, - 18.955, - 22.778, - 32.006, - 51.2, - 44.501, - 33.995, - 20.006, - 5.122, - 0.413, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 2.947, - 12.654, - 19.397, - 22.525, - 31.932, - 51.161, - 44.221, - 33.83, - 19.677, - 5.054, - 0.374, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 2.65, - 12.686, - 19.338, - 22.843, - 31.923, - 39.356, - 43.692, - 33.165, - 19.405, - 5.504, - 0.355, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.863, - 13.407, - 20.638, - 24.459, - 34.598, - 52.69, - 45.615, - 34.72, - 20.455, - 5.263, - 0.366, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 5.867, - 16.87, - 24.556, - 28.183, - 54.556, - 55.75, - 47.876, - 36.424, - 21.073, - 5.128, - 0.256, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 5.304, - 15.956, - 23.041, - 26.764, - 37.419, - 54.527, - 46.883, - 35.758, - 20.784, - 5.026, - 0.257, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 5.314, - 15.637, - 22.276, - 26.085, - 37.297, - 54.446, - 46.984, - 35.965, - 20.961, - 4.999, - 0.216, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 5.166, - 15.723, - 22.861, - 26.646, - 37.549, - 54.728, - 47.246, - 36.049, - 21.004, - 5.092, - 0.221, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 4.822, - 15.366, - 22.529, - 26.292, - 37.029, - 54.458, - 47.003, - 35.926, - 20.841, - 4.885, - 0.247, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 5.132, - 16.139, - 23.431, - 27.073, - 37.354, - 54.864, - 47.096, - 35.832, - 20.683, - 4.809, - 0.208, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 3.69, - 13.992, - 20.86, - 24.119, - 33.506, - 52.076, - 44.491, - 33.791, - 19.569, - 4.504, - 0.162, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 3.429, - 13.332, - 20.191, - 23.716, - 48.398, - 52.05, - 44.771, - 34.08, - 19.5, - 4.438, - 0.121, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 2.89, - 11.235, - 9.62, - 23.492, - 32.335, - 43.138, - 32.668, - 29.469, - 17.761, - 4.427, - 0.044, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 2.98, - 12.93, - 19.465, - 22.887, - 32.002, - 51.021, - 43.996, - 33.062, - 18.401, - 4.846, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 2.664, - 12.369, - 18.615, - 21.991, - 31.002, - 50.008, - 42.866, - 32.014, - 17.905, - 4.693, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 2.702, - 12.609, - 19.768, - 23.207, - 32.258, - 51.535, - 44.363, - 33.357, - 18.753, - 4.55, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 3.833, - 14.156, - 21.387, - 24.977, - 34.578, - 52.946, - 45.366, - 34.484, - 19.559, - 4.277, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 5.122, - 10.919, - 23.073, - 21.217, - 36.709, - 54.235, - 46.362, - 35.065, - 19.837, - 4.21, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 5.596, - 15.89, - 22.642, - 26.211, - 49.038, - 53.85, - 46.161, - 34.846, - 19.577, - 4.102, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 4.892, - 15.189, - 21.818, - 24.946, - 35.336, - 52.62, - 44.947, - 33.935, - 18.883, - 4.165, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.95, - 15.382, - 22.321, - 25.569, - 35.428, - 53.055, - 45.153, - 33.843, - 18.947, - 4.011, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - 6.193, - 17.118, - 24.192, - 27.776, - 38.887, - 54.897, - 46.877, - 35.375, - 19.814, - 4.01, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.956, - 15.403, - 22.433, - 25.824, - 36.533, - 53.562, - 45.666, - 34.336, - 19.141, - 3.881, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.512, - 14.04, - 21.138, - 24.639, - 33.763, - 44.73, - 38.087, - 28.109, - 17.711, - 3.829, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.342, - 20.105, - 15.563, - 20.939, - 43.789, - 11.106, - 6.74, - 15.646, - 3.846, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.206, - 13.382, - 20.655, - 24.159, - 40.699, - 51.962, - 44.49, - 33.046, - 18.11, - 3.497, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 3.317, - 12.908, - 19.823, - 23.363, - 33.134, - 51.387, - 43.821, - 32.894, - 17.934, - 3.311, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 2.647, - 11.938, - 18.134, - 20.888, - 30.397, - 49.16, - 29.063, - 18.127, - 15.679, - 3.414, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 3.169, - 13.182, - 20.518, - 24.03, - 29.806, - 23.293, - 2.215, - 32.155, - 4.061, - 0.0, - 0.0, - 0.0, - 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.608, - 11.198, - 18.529, - 21.523, - 29.773, - 49.571, - 36.817, - 27.009, - 18.03, - 3.263, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.658, - 14.937, - 21.822, - 25.354, - 36.675, - 53.074, - 45.153, - 33.557, - 17.951, - 3.17, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 4.47, - 13.351, - 20.358, - 23.724, - 0.0, - 0.0, - -0.0, - 32.928, - 17.546, - 3.034, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 4.559, - 14.8, - 21.577, - 24.692, - 34.951, - 17.646, - 14.164, - 3.262, - 11.961, - 3.064, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.346, - 14.514, - 21.155, - 23.987, - 38.147, - 50.832, - 42.945, - 31.641, - 16.52, - 2.936, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.007, - 13.715, - 20.232, - 22.949, - 32.59, - 49.817, - 42.235, - 11.33, - 16.261, - 1.282, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.29, - 14.191, - 21.243, - 24.484, - 34.561, - 51.9, - 43.936, - 32.105, - 16.685, - 2.624, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.469, - 14.661, - 21.761, - 25.041, - 35.52, - 52.583, - 43.955, - 31.639, - 16.266, - 2.521, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.692, - 18.439, - 25.556, - 28.628, - 41.04, - 55.536, - 46.825, - 34.511, - 17.592, - 2.6, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.349, - 19.284, - 26.474, - 29.752, - 42.418, - 55.775, - 47.001, - 34.528, - 17.718, - 2.464, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 6.355, - 16.826, - 24.358, - 27.833, - 40.036, - 54.604, - 46.25, - 34.163, - 17.484, - 2.297, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 6.448, - 16.63, - 23.262, - 25.68, - 36.955, - 50.734, - 42.48, - 31.538, - 16.276, - 2.08, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.631, - 15.332, - 21.731, - 24.116, - 34.74, - 49.249, - 41.64, - 30.716, - 15.672, - 2.034, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 5.177, - 15.28, - 21.904, - 25.094, - 36.219, - 52.026, - 43.213, - 30.807, - 14.097, - 1.609, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 3.301, - 14.493, - 23.27, - 26.25, - 34.453, - 52.892, - 43.364, - 29.939, - 15.488, - 1.828, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 9.936, - 21.756, - 29.988, - 33.173, - 46.749, - 58.737, - 48.937, - 35.461, - 17.661, - 1.827, - 0.0, - 0.0, - 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.197, - 23.189, - 30.651, - 33.173, - 49.066, - 58.651, - 49.066, - 35.842, - 17.752, - 1.724, - 0.0, - 0.0, - 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.501, - 21.767, - 29.044, - 31.882, - 46.321, - 56.684, - 47.386, - 34.467, - 17.208, - 1.465, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.522, - 18.85, - 25.203, - 27.633, - 41.258, - 52.86, - 44.668, - 32.809, - 16.191, - 1.228, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 7.428, - 18.968, - 26.614, - 29.869, - 41.872, - 55.885, - 47.012, - 33.628, - 16.158, - 1.036, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 9.695, - 20.352, - 26.828, - 29.139, - 42.938, - 53.796, - 44.996, - 32.574, - 16.007, - 0.924, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 7.891, - 18.831, - 25.809, - 28.911, - 42.229, - 54.208, - 45.098, - 32.014, - 15.045, - 0.806, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.558, - 17.478, - 26.815, - 30.453, - 40.374, - 56.224, - 47.029, - 33.967, - 16.1, - 0.824, - 0.0, - 0.0, - 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.026, - 22.575, - 29.784, - 32.661, - 47.474, - 57.267, - 47.551, - 33.995, - 15.888, - 0.704, - 0.0, - 0.0, - 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.218, - 21.295, - 28.018, - 30.533, - 44.647, - 54.894, - 45.455, - 32.599, - 15.276, - 0.579, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 9.671, - 20.442, - 27.254, - 29.689, - 43.455, - 53.991, - 44.928, - 32.23, - 14.983, - 0.454, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 7.132, - 17.578, - 24.882, - 27.975, - 40.379, - 54.23, - 45.247, - 32.353, - 14.763, - 0.375, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.481, - 18.931, - 25.447, - 28.016, - 41.777, - 53.452, - 44.647, - 31.944, - 14.564, - 0.287, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.121, - 18.993, - 18.147, - 14.745, - 26.176, - 33.094, - 14.815, - 32.192, - 14.525, - 0.199, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 6.393, - 16.511, - 18.64, - 20.988, - 31.461, - 43.473, - 31.515, - 20.857, - 6.288, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 7.319, - 11.956, - 19.367, - 15.955, - 8.605, - 35.17, - 19.662, - 20.814, - 3.178, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.156, - 16.764, - 23.675, - 26.738, - 39.197, - 52.733, - 43.556, - 30.621, - 13.319, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.757, - 17.049, - 23.942, - 26.909, - 32.511, - 52.81, - 43.549, - 30.604, - 13.239, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 7.844, - 18.553, - 25.918, - 28.765, - 41.023, - 54.077, - 44.49, - 30.685, - 12.92, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 9.238, - 21.021, - 28.083, - 30.998, - 42.748, - 55.891, - 32.812, - 21.028, - 0.769, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 21.915, - -0.0, - 31.996, - 30.451, - -0.0, - 0.0, - 32.668, - 0.168, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 12.037, - 23.496, - 30.354, - 33.112, - -0.0, - 8.642, - 0.856, - 1.343, - 6.991, - 0.0, - 0.0, - 0.0, - 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.636, - 22.645, - 29.207, - 31.5, - 45.873, - 55.153, - 45.529, - 31.23, - 12.696, - 0.0, - 0.0, - 0.0, - 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.403, - 21.075, - 27.737, - 29.83, - 43.294, - 54.173, - 44.731, - 31.333, - 12.684, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 9.845, - 20.208, - 25.56, - 26.893, - 40.482, - 51.807, - 42.975, - 30.31, - 12.358, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.76, - 19.418, - 16.164, - 17.604, - 40.894, - 52.737, - 42.698, - 28.876, - 11.299, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 9.488, - 20.09, - 26.225, - 28.214, - 40.378, - 52.474, - 43.029, - 29.587, - 11.34, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 9.59, - 20.453, - 26.809, - 29.132, - 42.136, - 53.42, - 43.529, - 29.887, - 11.653, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 9.186, - 19.379, - 25.036, - 26.335, - 38.25, - 49.977, - 41.59, - 29.048, - 11.283, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.586, - 9.588, - 17.179, - 24.998, - 30.238, - 39.987, - 42.081, - 24.675, - 10.106, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 5.578, - 16.714, - 23.008, - 25.543, - 33.561, - 51.669, - 42.205, - 28.219, - 9.485, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 7.904, - 18.48, - 25.455, - 28.308, - 39.289, - 53.097, - 43.473, - 29.271, - 10.309, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 9.403, - 20.42, - 27.008, - 29.052, - 40.327, - 52.267, - 42.641, - 28.651, - 10.097, - 0.0, - 0.0, - 0.0, - 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.312, - 21.065, - 27.448, - 29.334, - 41.002, - 52.306, - 42.806, - 28.973, - 10.042, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.968, - 18.807, - 25.685, - 28.596, - 40.323, - 53.31, - 43.558, - 29.134, - 9.09, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 8.941, - 19.747, - 25.796, - 27.769, - 37.378, - 51.826, - 42.618, - 28.587, - 8.488, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.751, - 19.3, - 24.771, - 26.32, - 35.205, - 50.504, - 41.208, - 27.587, - 8.425, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 9.369, - 20.123, - 26.768, - 29.081, - 38.363, - 52.999, - 43.082, - 28.534, - 9.375, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 9.479, - 19.846, - 26.11, - 28.107, - 36.934, - 51.758, - 42.084, - 27.927, - 8.656, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 6.552, - 17.615, - 24.614, - 26.829, - 32.329, - 45.237, - 21.373, - 15.397, - 3.951, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 6.526, - 18.328, - 25.127, - 27.673, - 32.384, - 51.002, - 39.475, - 24.195, - 6.128, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 8.694, - 21.027, - 28.423, - 31.797, - 38.239, - 56.366, - 46.074, - 30.184, - 9.126, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 12.079, - 23.36, - 30.004, - 31.858, - 41.123, - 55.159, - 44.808, - 29.943, - 9.169, - 0.0, - 0.0, - 0.0, - 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.639, - 22.909, - 29.382, - 31.159, - 39.974, - 53.734, - 43.437, - 28.532, - 8.384, - 0.0, - 0.0, - 0.0, - 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.441, - 21.098, - 27.733, - 29.656, - 37.669, - 53.073, - 42.893, - 27.912, - 7.809, - 0.0, - 0.0, - 0.0, - 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.085, - 20.573, - 26.343, - 27.951, - 35.305, - 34.349, - 37.732, - 21.475, - 7.337, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 9.334, - 5.407, - 24.053, - 26.489, - 34.208, - 51.585, - 42.2, - 27.414, - 2.347, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 9.339, - 21.668, - 20.253, - 3.182, - 1.2, - 53.521, - 30.443, - 24.998, - 5.205, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 8.626, - 20.365, - 27.129, - 28.968, - 33.291, - 53.33, - 43.212, - 28.24, - 6.986, - 0.0, - 0.0, - 0.0, - 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.772, - 23.71, - 30.802, - 33.082, - 40.276, - 55.8, - 44.556, - 28.918, - 6.692, - 0.0, - 0.0, - 0.0, - 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.37, - 22.008, - 28.829, - 31.027, - 37.221, - 54.058, - 43.428, - 27.471, - 5.801, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 8.937, - 20.264, - 27.125, - 29.52, - 33.983, - 52.883, - 42.124, - 27.094, - 5.506, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 8.38, - 19.274, - 25.581, - 27.249, - 31.014, - 50.872, - 41.09, - 26.9, - 5.369, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 7.901, - 18.221, - 24.09, - 26.473, - 30.822, - 50.971, - 40.976, - 26.458, - 5.143, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.726, - 18.539, - 24.832, - 26.654, - 29.396, - 50.082, - 40.022, - 25.226, - 4.373, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 6.894, - 16.145, - 22.026, - 25.279, - 14.14, - 50.629, - 40.747, - 25.631, - 4.503, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.245, - 19.504, - 26.811, - 29.213, - 32.233, - 52.727, - 42.142, - 26.23, - 4.243, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.615, - 16.662, - 24.945, - 27.441, - 25.496, - 34.494, - 38.758, - 22.93, - 0.177, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 16.838, - 24.682, - 27.441, - 25.787, - 42.019, - 41.615, - 26.146, - 4.354, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 17.489, - 24.43, - 15.951, - 8.554, - 12.973, - 28.853, - 16.034, - 0.172, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.683, - 0.0, - 25.492, - 28.496, - 26.996, - 34.94, - 42.369, - 26.204, - 1.041, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.049, - 18.346, - 25.615, - 28.392, - 28.368, - 52.155, - 41.303, - 25.509, - 3.479, - 0.0, - 0.0, - 0.0, - 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.68, - 23.429, - 30.675, - 33.006, - 35.97, - 55.921, - 44.926, - 28.015, - 4.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.616, - 20.609, - 27.914, - 30.245, - 32.183, - 53.307, - 42.705, - 21.744, - 0.572, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 20.009, - 12.59, - 18.27, - -0.0, - 0.0, - 6.376, - 21.333, - 0.481, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 17.152, - 6.661, - 8.469, - -0.0, - 20.38, - 41.388, - 25.269, - 2.585, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 6.228, - 17.828, - 25.302, - 17.74, - 9.811, - 34.875, - 15.526, - 5.397, - 0.037, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.433, - 19.05, - 25.603, - 27.813, - 27.054, - 51.205, - 40.825, - 25.097, - 2.723, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.536, - 24.159, - 27.215, - 25.496, - 32.08, - 40.953, - 16.43, - 0.485, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 8.368, - 20.8, - 28.619, - 31.437, - 31.162, - 54.6, - 43.386, - 27.085, - 0.534, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.316, - 19.555, - 26.573, - 29.512, - 27.868, - 42.239, - 43.347, - 27.122, - 3.194, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.224, - 18.375, - 24.503, - 27.639, - 26.241, - 40.556, - 41.426, - 26.084, - 3.058, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.599, - 17.827, - 24.265, - 25.721, - 23.68, - 39.486, - 40.532, - 25.977, - 3.288, - 0.0, - 0.0, - 0.0, - 0.0, - 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.218, - 13.943, - 11.647, - 8.653, - 23.858, - 39.1, - 24.543, - 2.446, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 16.044, - 24.184, - 27.737, - 26.374, - 30.386, - 42.159, - 26.814, - 3.296, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.877, - 17.267, - 24.662, - 27.98, - 26.4, - 50.518, - 41.658, - 9.746, - 0.033, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - -0.0, - -0.0, - 0.0, - -0.0, - 0.0, - 4.148, - 2.609, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.246, - 5.636, - 12.138, - 8.723, - 12.15, - 26.043, - 10.925, - 1.33, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - -0.0, - -0.0, - 6.251, - -0.0, - 24.022, - 1.01, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 17.436, - 0.0, - 2.829, - 6.59, - 0.0, - -0.0, - 26.153, - 0.298, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 5.927, - 19.803, - 27.648, - 30.987, - 29.417, - 51.338, - 44.242, - 27.075, - 0.347, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.591, - 17.117, - 24.567, - 28.009, - 14.288, - 49.117, - 28.104, - 18.831, - 2.189, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.817, - 17.979, - 25.628, - 28.807, - 27.147, - 30.793, - 42.241, - 26.221, - 2.482, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.753, - 18.978, - 27.314, - 30.589, - 28.788, - 49.857, - 43.622, - 26.801, - 2.512, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 6.077, - 19.418, - 22.656, - 22.248, - 28.098, - 38.385, - 43.233, - 27.44, - 2.862, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.119, - 17.364, - 25.511, - 29.44, - 28.819, - 11.688, - 11.743, - 26.74, - 2.438, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.946, - 5.538, - -0.0, - 28.626, - 0.0, - -0.0, - -0.0, - 12.014, - 1.73, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.875, - 18.895, - 27.406, - 31.13, - 29.671, - 48.99, - 44.107, - 27.955, - 2.984, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.455, - 18.972, - 27.367, - 30.623, - 28.976, - 48.686, - 43.936, - 27.891, - 3.245, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 16.751, - 24.032, - 26.165, - 25.421, - 29.559, - 42.267, - 26.814, - 2.967, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 17.215, - 8.345, - 7.767, - 5.078, - -0.0, - 13.585, - 27.248, - 0.436, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.847, - 18.927, - 27.874, - 31.806, - 30.681, - 49.205, - 45.738, - 29.44, - 4.245, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.856, - 18.095, - 26.031, - 29.119, - 27.63, - 46.857, - 43.779, - 28.434, - 0.515, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 15.995, - 12.879, - 12.961, - 26.939, - 16.962, - 38.23, - 27.997, - 4.088, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.455, - 17.837, - 25.9, - 28.978, - 27.539, - 45.665, - 43.835, - 28.459, - 3.956, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 3.274, - 16.52, - 22.742, - 25.267, - 24.875, - 43.403, - 41.963, - 26.794, - 3.136, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 15.416, - 27.996, - 12.996, - 23.613, - 38.332, - 29.251, - 3.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, - 1.14, - 15.696, - 23.887, - 11.604, - 27.066, - 43.995, - 43.518, - 27.835, - 3.986, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.178, - 15.78, - 24.16, - 27.863, - 26.746, - 19.386, - 35.382, - 8.688, - 0.211, - 0.0, - 0.0, - 0.0, - 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.356, - 15.997, - 24.09, - 27.865, - 26.878, - 43.893, - 38.632, - 27.822, - 0.957, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.736, - 18.906, - 27.744, - 31.115, - 16.966, - 27.135, - 29.567, - 11.956, - 0.401, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 4.307, - 18.302, - 26.646, - 19.176, - 22.067, - 46.266, - 45.32, - 30.476, - 6.111, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 2.236, - 15.792, - 10.449, - 13.207, - 9.39, - 23.939, - 25.58, - 12.103, - 0.437, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 8.358, - 15.162, - -0.0, - -0.0, - 28.319, - 1.342, - 0.0, - 0.0, - 0.0, - 0.0, - 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.699, - -0.0, - 0.0, - -0.0, - -0.0, - -0.0, - 6.439, - 0.226, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - -0.0, - 4.003, - 4.854, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - -0.0, - -0.0, - 6.401, - 0.304, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - -0.0, - -0.0, - 13.874, - 23.884, - 28.014, - 11.32, - 24.822, - 44.869, - 20.658, - 8.033, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "size_kw": 81.6667, - "lifecycle_om_cost_after_tax_bau": 6256.0, - "name": "ground", - "annual_energy_produced_kwh": 145904.83, - "year_one_energy_produced_kwh_bau": 74767.0, - "year_one_energy_produced_kwh": 152649.0, - "annual_energy_exported_kwh": 0.0, - "electric_to_storage_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.232, - 31.876, - 31.876, - 31.876, - 12.998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.198, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 15.795, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.189, - 15.527, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.276, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.961, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.032, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.677, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 15.316, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.353, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.64, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.795, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.198, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.067, - 16.044, - 31.876, - 31.876, - 31.876, - 31.876, - 31.759, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.136, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.856, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.306, - 2.02, - 13.174, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.043, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.95, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.369, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.624, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.034, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.959, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.461, - 31.876, - 31.876, - 31.876, - 31.876, - 26.914, - 19.495, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.146, - 31.225, - 31.876, - 31.876, - 31.876, - 31.876, - 11.498, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.53, - 31.529, - 31.876, - 31.876, - 31.876, - 31.876, - 10.81, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.699, - 23.467, - 25.713, - 31.876, - 31.876, - 31.876, - 26.866, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.222, - 3.098, - 14.268, - 24.046, - 21.599, - 31.876, - 31.876, - 26.254, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.654, - 31.876, - 31.876, - 31.876, - 31.876, - 23.103, - 4.172, - 6.109, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.695, - 13.218, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.08, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.909, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.084, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.463, - 31.812, - 31.876, - 31.876, - 31.876, - 31.876, - 9.595, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.306, - 12.259, - 13.412, - 20.428, - 20.384, - 21.601, - 17.878, - 5.975, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.942, - 11.808, - 7.379, - 12.797, - 0.334, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.856, - 18.51, - 31.876, - 1.78, - 31.876, - 31.876, - 31.876, - 0.871, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 9.833, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 8.16, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.689, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 6.303, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.653, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 6.34, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.503, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.49, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.746, - 20.339, - 31.876, - 31.876, - 31.876, - 31.876, - 27.783, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.578, - 30.29, - 31.876, - 31.876, - 31.876, - 31.876, - 11.001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 12.345, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 5.648, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 13.545, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 4.448, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 12.879, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 5.114, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.82, - 17.011, - 28.428, - 31.876, - 31.876, - 31.876, - 31.876, - 1.611, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 13.157, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 4.836, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.936, - 24.128, - 31.876, - 31.876, - 31.876, - 31.876, - 18.805, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.048, - 14.344, - 28.422, - 28.78, - 23.002, - 31.876, - 31.876, - 13.026, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 12.045, - 22.708, - 31.876, - 31.876, - 31.876, - 11.601, - 13.034, - 7.213, - 0.0, - 0.0, - 0.0, - 0.0, - 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.593, - 13.825, - 6.085, - 14.029, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 17.993, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 12.473, - 31.876, - 29.934, - 31.876, - 31.876, - 31.876, - 7.462, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 14.273, - 31.876, - 31.876, - 24.006, - 31.876, - 31.876, - 11.591, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 15.351, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.642, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.993, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 13.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 15.838, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.155, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 15.432, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.561, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.19, - 21.148, - 26.483, - 31.876, - 29.148, - 16.643, - 31.876, - 16.01, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.957, - 1.547, - 2.061, - 7.237, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 16.097, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 1.895, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 15.352, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.641, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 15.225, - 10.512, - 9.869, - 6.742, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.303, - 31.876, - 31.876, - 31.876, - 31.876, - 31.566, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.404, - 31.876, - 31.876, - 31.876, - 31.876, - 31.465, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 17.452, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.541, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 17.086, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.906, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.293, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 17.7, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 19.386, - 31.876, - 31.876, - 31.876, - 31.876, - 30.483, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.006, - 22.408, - 17.817, - 24.96, - 31.876, - 5.358, - 31.876, - 22.334, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.09, - 21.122, - 26.598, - 31.876, - 31.876, - 31.876, - 28.936, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.049, - 8.037, - 21.429, - 31.876, - 31.876, - 31.876, - 31.876, - 20.354, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.38, - 18.101, - 31.876, - 31.876, - 31.876, - 31.876, - 31.388, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 18.603, - 31.876, - 31.876, - 31.876, - 31.876, - 30.766, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.181, - 8.624, - 20.991, - 27.189, - 31.876, - 31.876, - 31.876, - 24.76, - 0.0, - 0.0, - 0.0, - 0.0, - 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.132, - 19.436, - 31.876, - 31.876, - 31.876, - 31.876, - 29.301, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.615, - 21.032, - 31.876, - 31.876, - 31.876, - 31.876, - 27.223, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.725, - 15.069, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.199, - 0.0, - 0.0, - 0.0, - 0.0, - 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.751, - 20.119, - 28.581, - 31.876, - 31.876, - 31.876, - 31.294, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.738, - 12.117, - 26.02, - 31.876, - 31.876, - 31.876, - 31.876, - 9.995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.123, - 20.777, - 31.876, - 31.876, - 31.876, - 31.876, - 26.969, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.292, - 20.534, - 31.876, - 31.876, - 31.876, - 31.876, - 27.043, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.715, - 21.28, - 31.876, - 31.876, - 31.876, - 31.876, - 25.875, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.883, - 21.31, - 31.876, - 31.876, - 31.876, - 31.876, - 25.676, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.777, - 20.16, - 31.876, - 31.876, - 31.876, - 31.876, - 26.932, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.424, - 22.35, - 31.876, - 31.876, - 31.876, - 31.876, - 24.095, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.638, - 22.832, - 31.876, - 31.876, - 31.876, - 31.876, - 23.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, - 3.763, - 22.924, - 31.876, - 31.876, - 31.876, - 31.876, - 23.183, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.599, - 12.464, - 23.196, - 31.876, - 31.876, - 31.876, - 31.876, - 12.61, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.79, - 21.307, - 31.876, - 31.876, - 31.876, - 31.876, - 24.773, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.749, - 20.538, - 31.876, - 31.876, - 31.876, - 31.876, - 25.582, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.069, - 21.391, - 28.331, - 31.876, - 31.876, - 31.876, - 27.955, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.942, - 20.637, - 27.404, - 31.876, - 31.876, - 31.876, - 29.763, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.103, - 20.859, - 31.876, - 31.876, - 31.876, - 31.876, - 24.907, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.654, - 22.665, - 31.876, - 31.876, - 31.876, - 31.876, - 13.049, - 9.502, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.656, - 22.754, - 31.876, - 31.876, - 31.876, - 31.876, - 22.46, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.758, - 21.794, - 31.876, - 31.876, - 31.876, - 31.876, - 23.317, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.802, - 12.383, - 26.552, - 31.876, - 31.876, - 31.876, - 31.876, - 6.133, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.595, - 25.037, - 31.876, - 31.876, - 31.876, - 31.876, - 19.237, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.448, - 23.377, - 31.876, - 31.876, - 31.876, - 31.876, - 21.044, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.935, - 25.388, - 31.876, - 31.876, - 31.876, - 31.876, - 18.546, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.956, - 24.779, - 31.876, - 31.876, - 31.876, - 31.876, - 19.134, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.862, - 23.101, - 31.876, - 31.876, - 31.876, - 31.876, - 20.906, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.068, - 23.511, - 25.978, - 31.876, - 31.876, - 31.876, - 26.189, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.397, - 24.875, - 31.876, - 31.876, - 31.876, - 31.876, - 18.598, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.72, - 25.163, - 31.876, - 31.876, - 31.876, - 31.876, - 17.986, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.855, - 25.259, - 31.876, - 31.876, - 31.876, - 31.876, - 17.755, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.075, - 23.983, - 31.876, - 31.876, - 31.876, - 31.876, - 20.812, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.823, - 24.142, - 31.876, - 31.876, - 31.876, - 31.876, - 15.091, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.03, - 25.165, - 31.876, - 31.876, - 31.876, - 31.876, - 17.674, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 24.845, - 23.148, - 31.876, - 10.299, - 31.876, - 31.876, - 23.453, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.301, - 24.984, - 23.14, - 31.876, - 31.876, - 31.876, - 26.32, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 24.366, - 31.876, - 11.311, - 1.359, - 4.486, - 2.099, - 8.289, - 8.164, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.412, - 26.719, - 31.876, - 31.876, - 31.876, - 31.876, - 17.738, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.096, - 7.472, - 25.061, - 31.876, - 31.876, - 31.876, - 31.876, - 17.24, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.13, - 7.389, - 24.706, - 31.876, - 31.876, - 31.876, - 31.876, - 13.831, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.16, - 7.246, - 24.564, - 31.876, - 31.876, - 31.876, - 31.876, - 17.899, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.326, - 6.195, - 24.389, - 31.876, - 31.876, - 31.876, - 31.876, - 18.96, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.287, - 7.389, - 24.776, - 31.876, - 31.876, - 31.876, - 31.876, - 17.417, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.243, - 7.377, - 23.159, - 31.876, - 31.876, - 31.876, - 31.876, - 19.089, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.287, - 7.444, - 24.4, - 31.876, - 31.876, - 31.876, - 31.876, - 17.739, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.307, - 7.469, - 23.988, - 31.876, - 31.876, - 31.876, - 31.876, - 18.106, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.377, - 8.023, - 25.0, - 31.876, - 31.876, - 31.876, - 31.876, - 8.843, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.509, - 5.223, - 24.572, - 31.876, - 31.876, - 31.876, - 27.822, - 23.619, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.015, - 17.877, - 23.514, - 28.059, - 13.013, - 31.876, - 31.876, - 25.144, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.512, - 7.851, - 25.115, - 31.876, - 31.876, - 31.876, - 31.876, - 16.392, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.645, - 8.327, - 25.919, - 31.876, - 31.876, - 31.876, - 31.876, - 14.979, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.701, - 8.372, - 25.077, - 31.876, - 31.876, - 31.876, - 31.876, - 15.719, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.803, - 8.431, - 24.847, - 31.876, - 31.876, - 31.876, - 31.876, - 15.788, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.817, - 8.272, - 24.202, - 31.876, - 31.876, - 31.876, - 31.876, - 5.139, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.8, - 8.17, - 25.352, - 31.876, - 31.876, - 31.876, - 31.876, - 15.547, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.897, - 8.139, - 24.64, - 31.876, - 31.876, - 31.876, - 31.876, - 16.192, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.843, - 7.871, - 24.024, - 31.876, - 31.876, - 31.876, - 31.876, - 17.131, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.972, - 8.019, - 23.336, - 31.876, - 31.876, - 31.876, - 31.876, - 17.541, - 0.0, - 0.0, - 0.0, - 0.0, - 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.043, - 8.38, - 24.639, - 31.876, - 31.876, - 31.876, - 31.876, - 15.807, - 0.0, - 0.0, - 0.0, - 0.0, - 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.387, - 8.949, - 21.047, - 31.876, - 31.876, - 31.876, - 31.876, - 18.486, - 0.0, - 0.0, - 0.0, - 0.0, - 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.644, - 9.392, - 25.499, - 19.465, - 31.876, - 31.876, - 31.876, - 14.243, - 0.0, - 0.0, - 0.0, - 0.0, - 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.278, - 8.91, - 26.08, - 31.876, - 31.876, - 31.876, - 31.876, - 13.601, - 0.0, - 0.0, - 0.0, - 0.0, - 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.397, - 8.673, - 23.823, - 31.876, - 31.876, - 31.876, - 31.876, - 15.976, - 0.0, - 0.0, - 0.0, - 0.0, - 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.758, - 9.278, - 24.153, - 31.876, - 31.876, - 31.876, - 31.876, - 14.68, - 0.0, - 0.0, - 0.0, - 0.0, - 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.63, - 9.039, - 24.641, - 31.876, - 31.876, - 31.876, - 31.876, - 14.559, - 0.0, - 0.0, - 0.0, - 0.0, - 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.409, - 8.882, - 25.172, - 31.876, - 31.876, - 31.876, - 31.876, - 14.406, - 0.0, - 0.0, - 0.0, - 0.0, - 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.377, - 9.286, - 27.434, - 31.876, - 31.876, - 31.876, - 31.876, - 11.772, - 0.0, - 0.0, - 0.0, - 0.0, - 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.672, - 9.2, - 26.069, - 31.876, - 31.876, - 31.876, - 29.378, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.021, - 9.471, - 25.601, - 31.876, - 31.876, - 31.876, - 31.876, - 12.777, - 0.0, - 0.0, - 0.0, - 0.0, - 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.901, - 9.117, - 24.912, - 31.876, - 31.876, - 31.876, - 31.876, - 13.939, - 0.0, - 0.0, - 0.0, - 0.0, - 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.8, - 9.007, - 24.846, - 31.876, - 31.876, - 31.876, - 31.876, - 14.216, - 0.0, - 0.0, - 0.0, - 0.0, - 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.446, - 8.692, - 25.407, - 31.876, - 31.876, - 31.876, - 31.876, - 14.324, - 0.0, - 0.0, - 0.0, - 0.0, - 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.421, - 8.653, - 25.472, - 31.876, - 31.876, - 31.876, - 31.876, - 14.322, - 0.0, - 0.0, - 0.0, - 0.0, - 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.454, - 8.428, - 24.594, - 31.876, - 31.876, - 31.876, - 31.876, - 15.393, - 0.0, - 0.0, - 0.0, - 0.0, - 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.433, - 8.233, - 23.663, - 31.876, - 31.876, - 31.876, - 31.876, - 1.054, - 0.0, - 0.0, - 0.0, - 0.0, - 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.329, - 8.248, - 24.209, - 31.876, - 31.876, - 31.876, - 31.876, - 16.083, - 0.0, - 0.0, - 0.0, - 0.0, - 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.567, - 8.136, - 23.24, - 31.876, - 31.876, - 31.876, - 31.876, - 16.926, - 0.0, - 0.0, - 0.0, - 0.0, - 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.374, - 8.252, - 18.628, - 31.876, - 31.876, - 31.876, - 31.876, - 21.614, - 0.0, - 0.0, - 0.0, - 0.0, - 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.752, - 8.668, - 25.064, - 31.876, - 31.876, - 31.876, - 31.876, - 14.386, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.075, - 9.131, - 24.968, - 31.876, - 31.876, - 31.876, - 31.876, - 13.695, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.016, - 8.887, - 24.177, - 31.876, - 31.876, - 31.876, - 31.876, - 14.789, - 0.0, - 0.0, - 0.0, - 0.0, - 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.706, - 8.381, - 23.799, - 31.876, - 31.876, - 31.876, - 28.394, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.783, - 8.456, - 23.233, - 31.876, - 31.876, - 31.876, - 28.8, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.114, - 7.928, - 23.488, - 31.876, - 31.876, - 31.876, - 31.876, - 16.339, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.088, - 7.76, - 17.531, - 19.113, - 31.876, - 31.876, - 31.876, - 26.615, - 8.639, - 0.0, - 0.0, - 0.0, - 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.908, - 8.034, - 22.545, - 31.876, - 31.876, - 31.876, - 31.876, - 17.383, - 0.0, - 0.0, - 0.0, - 0.0, - 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.757, - 7.45, - 18.194, - 16.361, - 31.876, - 31.876, - 31.876, - 31.876, - 6.108, - 0.0, - 0.0, - 0.0, - 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.88, - 8.182, - 22.565, - 31.876, - 31.876, - 31.876, - 31.876, - 17.242, - 0.0, - 0.0, - 0.0, - 0.0, - 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.751, - 7.799, - 22.52, - 31.876, - 31.876, - 31.876, - 29.998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.493, - 4.87, - 13.008, - 9.85, - 12.102, - 31.876, - 31.876, - 31.876, - 31.876, - 8.546, - 0.0, - 0.0, - 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.963, - 8.124, - 23.639, - 31.876, - 31.876, - 31.876, - 31.876, - 16.144, - 0.0, - 0.0, - 0.0, - 0.0, - 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.803, - 8.419, - 25.374, - 31.876, - 31.876, - 31.876, - 31.876, - 14.274, - 0.0, - 0.0, - 0.0, - 0.0, - 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.632, - 8.42, - 25.707, - 31.876, - 31.876, - 31.876, - 31.876, - 14.11, - 0.0, - 0.0, - 0.0, - 0.0, - 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.584, - 8.055, - 24.262, - 31.876, - 31.876, - 31.876, - 31.876, - 15.968, - 0.0, - 0.0, - 0.0, - 0.0, - 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.716, - 7.809, - 23.518, - 31.876, - 31.876, - 31.876, - 31.876, - 16.825, - 0.0, - 0.0, - 0.0, - 0.0, - 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.632, - 7.557, - 22.759, - 31.876, - 31.876, - 31.876, - 30.064, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.638, - 8.096, - 23.515, - 31.876, - 31.876, - 31.876, - 31.876, - 16.621, - 0.0, - 0.0, - 0.0, - 0.0, - 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.927, - 7.924, - 23.9, - 31.876, - 31.876, - 31.876, - 31.876, - 16.118, - 0.0, - 0.0, - 0.0, - 0.0, - 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.771, - 7.774, - 23.496, - 31.876, - 31.876, - 31.876, - 31.876, - 16.828, - 0.0, - 0.0, - 0.0, - 0.0, - 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.85, - 7.594, - 22.606, - 31.876, - 31.876, - 31.876, - 31.876, - 17.819, - 0.0, - 0.0, - 0.0, - 0.0, - 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.747, - 7.409, - 22.853, - 31.876, - 31.876, - 31.876, - 31.876, - 17.86, - 0.0, - 0.0, - 0.0, - 0.0, - 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.909, - 7.67, - 22.98, - 31.876, - 31.876, - 31.876, - 31.876, - 17.311, - 0.0, - 0.0, - 0.0, - 0.0, - 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.844, - 7.558, - 22.93, - 31.876, - 31.876, - 31.876, - 25.696, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.203, - 7.935, - 22.315, - 31.876, - 31.876, - 31.876, - 31.876, - 17.416, - 0.0, - 0.0, - 0.0, - 0.0, - 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.841, - 7.529, - 22.154, - 31.876, - 31.876, - 31.876, - 31.876, - 18.346, - 0.0, - 0.0, - 0.0, - 0.0, - 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.796, - 7.315, - 22.481, - 31.876, - 31.876, - 31.876, - 31.876, - 18.276, - 0.0, - 0.0, - 0.0, - 0.0, - 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.621, - 6.98, - 22.15, - 31.876, - 31.876, - 31.876, - 31.876, - 19.119, - 0.0, - 0.0, - 0.0, - 0.0, - 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.558, - 6.924, - 21.959, - 31.876, - 31.876, - 31.876, - 31.876, - 19.428, - 0.0, - 0.0, - 0.0, - 0.0, - 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.702, - 6.879, - 19.296, - 31.724, - 31.876, - 31.876, - 31.876, - 22.145, - 0.0, - 0.0, - 0.0, - 0.0, - 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.719, - 7.15, - 20.02, - 31.876, - 31.876, - 31.876, - 29.176, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.664, - 6.797, - 20.874, - 31.876, - 31.876, - 31.876, - 31.876, - 20.534, - 0.0, - 0.0, - 0.0, - 0.0, - 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.618, - 6.902, - 21.027, - 31.876, - 31.876, - 31.876, - 31.876, - 20.323, - 0.0, - 0.0, - 0.0, - 0.0, - 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.704, - 7.16, - 22.42, - 31.876, - 31.876, - 31.876, - 31.876, - 18.584, - 0.0, - 0.0, - 0.0, - 0.0, - 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.831, - 7.265, - 23.056, - 31.876, - 31.876, - 31.876, - 31.876, - 17.717, - 0.0, - 0.0, - 0.0, - 0.0, - 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.504, - 6.7, - 22.049, - 31.876, - 31.876, - 31.876, - 31.876, - 19.616, - 0.0, - 0.0, - 0.0, - 0.0, - 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.212, - 6.487, - 22.695, - 31.876, - 31.876, - 31.876, - 31.876, - 19.476, - 0.0, - 0.0, - 0.0, - 0.0, - 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.207, - 6.535, - 22.814, - 31.876, - 31.876, - 31.876, - 27.736, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.165, - 6.6, - 22.665, - 31.876, - 31.876, - 31.876, - 31.876, - 19.439, - 0.0, - 0.0, - 0.0, - 0.0, - 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.152, - 6.486, - 21.85, - 31.876, - 31.876, - 31.876, - 31.876, - 20.382, - 0.0, - 0.0, - 0.0, - 0.0, - 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.558, - 6.661, - 20.26, - 31.876, - 31.876, - 31.876, - 29.589, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.975, - 7.552, - 19.96, - 31.876, - 31.876, - 31.876, - 31.876, - 20.382, - 0.0, - 0.0, - 0.0, - 0.0, - 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.496, - 6.561, - 20.993, - 31.876, - 31.876, - 31.876, - 31.876, - 20.82, - 0.0, - 0.0, - 0.0, - 0.0, - 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.217, - 6.214, - 21.535, - 31.876, - 31.876, - 31.876, - 31.876, - 20.904, - 0.0, - 0.0, - 0.0, - 0.0, - 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.397, - 6.445, - 21.148, - 31.876, - 31.876, - 31.876, - 29.312, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.436, - 5.334, - 17.213, - 13.688, - 31.876, - 31.876, - 31.876, - 31.876, - 12.198, - 0.0, - 0.0, - 0.0, - 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.687, - 7.026, - 21.413, - 31.876, - 31.876, - 31.876, - 31.876, - 19.743, - 0.0, - 0.0, - 0.0, - 0.0, - 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.146, - 6.292, - 21.875, - 31.876, - 31.876, - 31.876, - 31.876, - 20.556, - 0.0, - 0.0, - 0.0, - 0.0, - 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.059, - 6.008, - 21.7, - 31.876, - 31.876, - 31.876, - 31.876, - 21.102, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.361, - 4.818, - 16.861, - 25.918, - 31.876, - 22.631, - 29.625, - 29.76, - 15.524, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.51, - 5.761, - 19.947, - 31.876, - 31.876, - 31.876, - 31.876, - 23.651, - 0.0, - 0.0, - 0.0, - 0.0, - 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.13, - 5.861, - 20.52, - 31.876, - 31.876, - 31.876, - 30.723, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.989, - 5.959, - 21.428, - 31.876, - 31.876, - 31.876, - 31.876, - 21.493, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.947, - 5.963, - 21.65, - 31.876, - 31.876, - 31.876, - 31.876, - 21.309, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.898, - 5.871, - 21.401, - 31.876, - 31.876, - 31.876, - 31.876, - 21.7, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.901, - 5.817, - 21.614, - 31.876, - 31.876, - 31.876, - 31.876, - 21.537, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.939, - 5.975, - 21.184, - 31.876, - 31.876, - 31.876, - 31.876, - 21.772, - 0.0, - 0.0, - 0.0, - 0.0, - 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.03, - 5.86, - 20.277, - 31.876, - 31.876, - 31.876, - 31.876, - 22.701, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.099, - 3.982, - 4.433, - 4.095, - 31.876, - 31.876, - 31.876, - 3.831, - 12.208, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.95, - 5.872, - 19.965, - 31.876, - 31.876, - 31.876, - 31.876, - 23.082, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.823, - 5.623, - 20.71, - 31.876, - 31.876, - 31.876, - 31.876, - 22.713, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.814, - 5.656, - 20.774, - 31.876, - 31.876, - 31.876, - 31.876, - 22.625, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.852, - 5.707, - 20.364, - 31.876, - 31.876, - 31.876, - 31.876, - 22.946, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.858, - 5.868, - 20.613, - 31.876, - 31.876, - 31.876, - 31.876, - 22.53, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.76, - 5.776, - 20.715, - 31.876, - 31.876, - 31.876, - 31.876, - 22.618, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.752, - 5.849, - 20.691, - 31.876, - 31.876, - 31.876, - 31.876, - 3.201, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.699, - 5.884, - 20.407, - 31.876, - 31.876, - 31.876, - 31.876, - 22.879, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.332, - 0.518, - 27.961, - 31.876, - 31.876, - 31.876, - 31.876, - 18.058, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.656, - 5.995, - 20.468, - 31.876, - 31.876, - 31.876, - 31.876, - 22.75, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.555, - 5.773, - 21.078, - 31.876, - 31.876, - 31.876, - 31.876, - 22.464, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.535, - 6.079, - 20.762, - 31.876, - 31.876, - 31.876, - 31.876, - 22.494, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.515, - 6.611, - 20.805, - 31.876, - 31.876, - 31.876, - 31.876, - 21.938, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.541, - 6.247, - 22.568, - 31.876, - 31.876, - 31.876, - 31.876, - 5.056, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.381, - 6.005, - 22.41, - 31.876, - 31.876, - 31.876, - 31.876, - 21.073, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.378, - 6.08, - 22.606, - 31.876, - 31.876, - 31.876, - 31.876, - 20.805, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.337, - 6.012, - 22.441, - 31.876, - 31.876, - 31.876, - 31.876, - 21.079, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.297, - 6.002, - 22.325, - 31.876, - 31.876, - 31.876, - 31.876, - 21.245, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.341, - 6.054, - 22.246, - 31.876, - 31.876, - 31.876, - 31.876, - 21.228, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.299, - 5.873, - 21.504, - 31.876, - 31.876, - 31.876, - 31.876, - 22.193, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.294, - 5.831, - 21.31, - 31.876, - 31.876, - 31.876, - 31.876, - 7.087, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.257, - 5.788, - 21.102, - 31.876, - 31.876, - 31.876, - 31.876, - 22.723, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.199, - 5.984, - 21.046, - 31.876, - 31.876, - 31.876, - 31.876, - 22.641, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.171, - 6.056, - 20.941, - 31.876, - 31.876, - 31.876, - 31.876, - 22.702, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.213, - 5.987, - 20.871, - 31.876, - 31.876, - 31.876, - 31.876, - 22.798, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.213, - 5.939, - 21.487, - 31.876, - 31.876, - 31.876, - 31.876, - 22.23, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.255, - 5.763, - 22.394, - 31.876, - 31.876, - 31.876, - 31.876, - 21.457, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.181, - 6.268, - 22.978, - 31.876, - 31.876, - 31.876, - 31.876, - 9.003, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.137, - 6.164, - 22.411, - 31.876, - 31.876, - 31.876, - 31.876, - 21.157, - 0.0, - 0.0, - 0.0, - 0.0, - 0.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, - 6.071, - 22.357, - 31.876, - 31.876, - 31.876, - 31.876, - 21.341, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.107, - 6.36, - 23.135, - 31.876, - 31.876, - 31.876, - 31.876, - 20.267, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.067, - 6.321, - 22.723, - 31.876, - 31.876, - 31.876, - 31.876, - 20.758, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022, - 6.028, - 21.212, - 31.876, - 31.876, - 31.876, - 31.876, - 22.607, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.035, - 20.671, - 31.814, - 31.876, - 31.876, - 31.876, - 23.226, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.952, - 21.263, - 31.876, - 31.876, - 31.876, - 31.876, - 15.028, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.993, - 21.914, - 31.876, - 31.876, - 31.876, - 31.876, - 21.962, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.041, - 21.757, - 31.876, - 31.876, - 31.876, - 31.876, - 22.071, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.692, - 21.432, - 31.876, - 31.876, - 31.876, - 31.876, - 25.745, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.98, - 20.555, - 31.876, - 31.876, - 31.876, - 31.876, - 23.333, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.473, - 22.975, - 31.876, - 31.876, - 31.876, - 31.876, - 20.421, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.518, - 23.237, - 31.876, - 31.876, - 31.876, - 31.876, - 13.137, - 1.361, - 1.053, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.336, - 22.544, - 31.876, - 31.876, - 31.876, - 31.876, - 20.99, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.369, - 22.729, - 31.876, - 31.876, - 31.876, - 31.876, - 16.958, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.275, - 22.14, - 31.876, - 31.876, - 31.876, - 31.876, - 21.453, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.309, - 22.121, - 31.876, - 31.876, - 31.876, - 31.876, - 21.439, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.405, - 22.431, - 31.876, - 31.876, - 31.876, - 31.876, - 21.032, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.856, - 24.35, - 31.876, - 31.876, - 31.876, - 31.876, - 18.663, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.023, - 24.748, - 31.876, - 31.876, - 31.876, - 31.876, - 18.099, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.871, - 23.893, - 31.876, - 31.876, - 31.876, - 31.876, - 19.105, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.77, - 24.113, - 31.876, - 31.876, - 31.876, - 31.876, - 18.986, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.558, - 23.506, - 31.876, - 31.876, - 31.876, - 31.876, - 19.805, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.338, - 22.971, - 31.876, - 31.876, - 31.876, - 31.876, - 20.56, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.947, - 20.988, - 31.876, - 31.876, - 31.876, - 31.876, - 22.934, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.144, - 25.521, - 31.876, - 31.876, - 31.876, - 31.876, - 17.204, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.619, - 26.948, - 31.876, - 31.876, - 31.876, - 31.876, - 15.302, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.555, - 26.529, - 31.876, - 31.876, - 31.876, - 31.876, - 15.785, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.357, - 25.677, - 31.876, - 31.876, - 31.876, - 31.876, - 16.836, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.825, - 23.945, - 31.876, - 31.876, - 31.876, - 31.876, - 19.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, - 7.401, - 26.138, - 31.876, - 31.876, - 31.876, - 31.876, - 16.33, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.235, - 25.155, - 31.876, - 31.876, - 31.876, - 31.876, - 17.479, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.246, - 22.512, - 31.876, - 31.876, - 31.876, - 31.876, - 21.11, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.55, - 26.843, - 31.876, - 31.876, - 31.876, - 31.876, - 15.477, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.514, - 26.469, - 31.876, - 31.876, - 31.876, - 31.876, - 15.886, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.346, - 26.295, - 31.876, - 31.876, - 31.876, - 31.876, - 16.228, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.829, - 24.531, - 31.876, - 31.876, - 31.876, - 31.876, - 18.509, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.389, - 25.824, - 31.876, - 31.876, - 31.876, - 31.876, - 16.657, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.401, - 22.222, - 31.876, - 31.876, - 31.876, - 31.876, - 22.246, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.541, - 24.072, - 31.876, - 31.876, - 31.876, - 31.876, - 19.256, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.62, - 24.403, - 31.876, - 31.876, - 31.876, - 31.876, - 18.846, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.821, - 24.395, - 31.876, - 31.876, - 31.876, - 31.876, - 18.653, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.05, - 21.433, - 31.876, - 31.876, - 31.876, - 31.876, - 25.386, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.6, - 24.589, - 31.876, - 31.876, - 31.876, - 31.876, - 18.68, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.173, - 24.948, - 31.876, - 31.876, - 31.876, - 31.876, - 18.748, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.444, - 3.621, - 16.532, - 31.876, - 26.745, - 31.876, - 31.876, - 10.141, - 15.479, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.207, - 27.584, - 31.876, - 31.876, - 31.876, - 31.876, - 6.826, - 8.252, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.273, - 27.146, - 31.876, - 31.876, - 31.876, - 31.876, - 15.45, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.92, - 26.362, - 31.876, - 31.876, - 31.876, - 31.876, - 16.587, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.9, - 26.471, - 31.876, - 31.876, - 31.876, - 31.876, - 16.498, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.528, - 25.611, - 31.876, - 31.876, - 31.876, - 31.876, - 17.731, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.405, - 25.59, - 31.876, - 31.876, - 31.876, - 31.876, - 17.875, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.586, - 26.121, - 31.876, - 31.876, - 31.876, - 31.876, - 17.162, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.505, - 26.008, - 31.876, - 31.876, - 31.876, - 31.876, - 17.357, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.348, - 25.13, - 31.876, - 31.876, - 31.876, - 31.876, - 18.391, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.446, - 22.009, - 31.876, - 31.876, - 31.876, - 31.876, - 22.414, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.776, - 24.677, - 31.876, - 31.876, - 31.876, - 31.876, - 19.416, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.86, - 25.752, - 31.876, - 31.876, - 31.876, - 31.876, - 18.258, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.928, - 26.126, - 31.876, - 31.876, - 31.876, - 31.876, - 17.815, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.302, - 25.638, - 31.876, - 31.876, - 31.876, - 31.876, - 18.93, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.702, - 25.126, - 31.876, - 31.876, - 31.876, - 31.876, - 20.041, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.308, - 24.871, - 31.876, - 31.876, - 31.876, - 31.876, - 20.69, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 4.037, - 25.202, - 31.876, - 31.876, - 31.876, - 31.876, - 20.629, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.894, - 25.228, - 31.876, - 31.876, - 31.876, - 31.876, - 20.748, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.891, - 22.647, - 31.876, - 31.876, - 31.876, - 31.876, - 24.331, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.649, - 22.347, - 31.876, - 31.876, - 31.876, - 31.876, - 24.873, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.595, - 23.098, - 31.876, - 31.876, - 31.876, - 31.876, - 24.176, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.137, - 26.602, - 31.876, - 31.876, - 31.876, - 31.876, - 20.13, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.921, - 26.425, - 31.876, - 31.876, - 31.876, - 31.876, - 20.523, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.563, - 25.599, - 31.876, - 31.876, - 31.876, - 31.876, - 21.707, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.37, - 25.363, - 31.876, - 31.876, - 31.876, - 31.876, - 22.137, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.221, - 24.891, - 31.876, - 31.876, - 31.876, - 31.876, - 22.756, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.887, - 24.365, - 31.876, - 31.876, - 31.876, - 31.876, - 23.617, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.08, - 23.317, - 31.876, - 31.876, - 31.876, - 31.876, - 25.472, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.421, - 26.249, - 31.876, - 31.876, - 31.876, - 31.876, - 22.199, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.177, - 25.33, - 31.876, - 31.876, - 31.876, - 31.876, - 23.362, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.843, - 23.879, - 31.876, - 31.876, - 31.876, - 31.876, - 25.147, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.677, - 23.366, - 31.876, - 31.876, - 31.876, - 31.876, - 25.826, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.622, - 23.439, - 31.876, - 31.876, - 31.876, - 31.876, - 25.808, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.24, - 22.932, - 31.876, - 31.876, - 31.876, - 31.876, - 26.697, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.33, - 22.336, - 31.876, - 31.876, - 31.876, - 31.876, - 27.203, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 22.931, - 31.876, - 31.876, - 31.876, - 31.876, - 26.938, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 17.899, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.094, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.102, - 21.929, - 31.876, - 31.876, - 31.876, - 31.876, - 9.838, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.838, - 22.472, - 31.876, - 31.876, - 31.876, - 31.876, - 19.559, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.588, - 31.876, - 30.315, - 31.876, - 31.876, - 31.876, - 17.966, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 19.789, - 31.876, - 31.876, - 31.876, - 31.876, - 30.08, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 23.431, - 31.876, - 31.876, - 31.876, - 31.876, - 26.438, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 22.056, - 31.876, - 31.876, - 31.876, - 31.876, - 27.813, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.745, - 24.869, - 31.876, - 31.876, - 31.876, - 27.948, - 19.744, - 1.439, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 19.208, - 17.805, - 31.876, - 31.876, - 31.876, - 13.095, - 31.637, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 20.198, - 31.876, - 31.876, - 31.876, - 31.876, - 29.671, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 19.415, - 31.876, - 31.876, - 31.876, - 31.876, - 30.454, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.339, - 24.146, - 31.876, - 31.876, - 31.876, - 31.876, - 19.383, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 19.857, - 31.876, - 31.876, - 31.876, - 31.876, - 30.012, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.402, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.591, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.397, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.596, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.048, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.944, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.16, - 20.946, - 31.876, - 31.876, - 31.876, - 31.876, - 23.763, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 5.253, - 22.21, - 31.876, - 31.876, - 31.876, - 31.876, - 22.407, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 16.053, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 1.94, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.979, - 11.424, - 17.071, - 0.776, - 4.615, - 1.697, - 2.141, - 6.267, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 14.09, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 3.902, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.96, - 6.413, - 5.631, - 9.193, - 31.656, - 30.277, - 31.876, - 29.202, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 13.526, - 0.29, - 31.876, - 27.618, - 31.876, - 31.876, - 16.369, - 0.332, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 14.064, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 3.929, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 14.028, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 3.965, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 13.197, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 4.796, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 13.26, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 4.733, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 12.884, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 5.109, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 12.11, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 5.882, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.255, - 31.876, - 31.876, - 29.739, - 31.876, - 1.816, - 15.591, - 5.215, - 0.0, - 0.0, - 0.0, - 0.0, - 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.84, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 6.153, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.829, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 6.164, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.827, - 16.443, - 31.876, - 31.876, - 31.876, - 31.876, - 22.599, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 9.456, - 18.183, - 31.876, - 31.876, - 31.876, - 31.876, - 5.219, - 17.011, - 0.0, - 0.0, - 0.0, - 0.0, - 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.511, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 7.482, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.839, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 7.154, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.502, - 5.092, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 5.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, - 9.959, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 8.034, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 9.435, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 8.558, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.006, - 15.722, - 24.133, - 31.876, - 31.876, - 31.876, - 31.876, - 7.008, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.368, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.625, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.541, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.451, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.246, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.747, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 9.088, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 8.905, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.878, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.115, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 8.098, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.895, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.302, - 8.694, - 11.926, - 25.307, - 31.876, - 31.876, - 31.369, - 16.333, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.511, - 20.929, - 31.876, - 25.548, - 10.876, - 10.004, - 2.77, - 6.76, - 0.0, - 0.0, - 0.0, - 0.0, - 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.121, - 0.44, - 11.828, - 5.469, - 8.316, - 3.164, - 7.318, - 30.83, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.351, - 2.691, - 17.047, - 3.41, - 10.469, - 10.636, - 8.969, - 6.265, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 6.485, - 30.981, - 31.876, - 31.876, - 31.876, - 31.876, - 12.403, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "electric_curtailed_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "lifecycle_om_cost_after_tax": 12772.0, - "lcoe_per_kwh": 0.0283 - }, - { - "electric_to_grid_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "production_factor_series": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013705, - 0.074601, - 0.23405199999999998, - 0.37140100000000004, - 0.457396, - 0.486137, - 0.465086, - 0.387321, - 0.251484, - 0.054393000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013573, - 0.07456399999999999, - 0.236565, - 0.375486, - 0.46325099999999997, - 0.492928, - 0.469034, - 0.392412, - 0.256565, - 0.008654, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013533, - 0.078678, - 0.239314, - 0.38372, - 0.477065, - 0.508258, - 0.48821, - 0.409203, - 0.269851, - 0.060499000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009775, - 0.07675799999999999, - 0.242274, - 0.38363099999999994, - 0.471344, - 0.50049, - 0.479285, - 0.401763, - 0.26569600000000004, - 0.059933999999999994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013391, - 0.07506600000000001, - 0.235656, - 0.372508, - 0.458604, - 0.48693000000000003, - 0.385089, - 0.276004, - 0.26081, - 0.032286999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012159000000000001, - 0.07479999999999999, - 0.232794, - 0.284947, - 0.32049, - 0.386586, - 0.462574, - 0.390855, - 0.261658, - 0.063405, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008794, - 0.07251099999999999, - 0.22912000000000002, - 0.364094, - 0.45033100000000004, - 0.480558, - 0.46354199999999995, - 0.390471, - 0.25952499999999995, - 0.065712, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008881, - 0.075806, - 0.240455, - 0.38718400000000003, - 0.481885, - 0.5135449999999999, - 0.494168, - 0.420124, - 0.281206, - 0.07649299999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013537, - 0.07942199999999999, - 0.236983, - 0.376257, - 0.466315, - 0.496591, - 0.478922, - 0.406902, - 0.275928, - 0.080101, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012332000000000001, - 0.07343300000000001, - 0.235072, - 0.325494, - 0.359965, - 0.426243, - 0.332669, - 0.30863999999999997, - 0.180172, - 0.030708, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005305, - 0.030978000000000002, - 0.13494, - 0.35726600000000003, - 0.446854, - 0.392215, - 0.374983, - 0.396432, - 0.244477, - 0.081755, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011404, - 0.07647, - 0.23719900000000002, - 0.37629199999999996, - 0.46577199999999996, - 0.49602300000000005, - 0.476009, - 0.405753, - 0.277358, - 0.089238, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010485, - 0.07609300000000001, - 0.235599, - 0.370807, - 0.458562, - 0.49013, - 0.47476, - 0.407654, - 0.27910199999999996, - 0.08927, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009601, - 0.076492, - 0.241664, - 0.38276299999999996, - 0.402656, - 0.384635, - 0.361574, - 0.354605, - 0.230766, - 0.100913, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01377, - 0.07631, - 0.227736, - 0.298361, - 0.380073, - 0.279534, - 0.466037, - 0.19444999999999998, - 0.030479, - 0.020027, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010573, - 0.07908, - 0.23432, - 0.375329, - 0.465676, - 0.499102, - 0.484575, - 0.41645, - 0.286861, - 0.100812, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009927, - 0.076675, - 0.23230099999999998, - 0.366776, - 0.454639, - 0.40252899999999997, - 0.47434899999999997, - 0.410881, - 0.284295, - 0.103963, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013154, - 0.080736, - 0.18712, - 0.320651, - 0.390661, - 0.40553500000000003, - 0.303653, - 0.27660500000000005, - 0.13714500000000002, - 0.021137, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014542999999999999, - 0.045953, - 0.146256, - 0.231821, - 0.23963800000000002, - 0.495433, - 0.482431, - 0.268529, - 0.20706200000000002, - 0.02103, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012747, - 0.08354900000000001, - 0.243511, - 0.385189, - 0.476558, - 0.260231, - 0.063109, - 0.089108, - 0.009399, - 0.013535, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017022, - 0.087987, - 0.215061, - 0.331837, - 0.39191000000000004, - 0.423086, - 0.35239299999999996, - 0.279007, - 0.249886, - 0.122694, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011367, - 0.084816, - 0.248946, - 0.386762, - 0.477277, - 0.5121330000000001, - 0.49658199999999997, - 0.432683, - 0.30964600000000003, - 0.123934, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011921, - 0.084701, - 0.244281, - 0.305247, - 0.39495800000000003, - 0.385259, - 0.369033, - 0.339217, - 0.217526, - 0.045221, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01809, - 0.08809399999999999, - 0.144143, - 0.218017, - 0.232237, - 0.24940199999999998, - 0.215239, - 0.087488, - 0.046853, - 0.018527000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.056672, - 0.134802, - 0.10626000000000001, - 0.171888, - 0.005713, - 0.523328, - 0.456557, - 0.32531, - 0.133659, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019056999999999998, - 0.096346, - 0.226511, - 0.027392, - 0.396443, - 0.412994, - 0.355983, - 0.013779999999999999, - 0.31063799999999997, - 0.11559699999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01713, - 0.10588299999999999, - 0.283263, - 0.43764299999999995, - 0.532924, - 0.5685009999999999, - 0.5544969999999999, - 0.48929, - 0.356134, - 0.157536, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012151, - 0.100106, - 0.280845, - 0.431555, - 0.524557, - 0.5613049999999999, - 0.546412, - 0.479143, - 0.351254, - 0.159108, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012673, - 0.09971899999999999, - 0.277466, - 0.421192, - 0.506313, - 0.537791, - 0.416192, - 0.39581700000000003, - 0.213088, - 0.063516, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022108, - 0.101745, - 0.271923, - 0.355839, - 0.4254, - 0.44798899999999997, - 0.421296, - 0.36825, - 0.263784, - 0.08663, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026926, - 0.186128, - 0.300543, - 0.525918, - 0.56604, - 0.5532809999999999, - 0.487022, - 0.360196, - 0.142864, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024475, - 0.114455, - 0.274424, - 0.41093999999999997, - 0.494405, - 0.5325460000000001, - 0.523793, - 0.467125, - 0.347474, - 0.15481999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017414000000000002, - 0.112286, - 0.295159, - 0.37849900000000003, - 0.444183, - 0.449854, - 0.549088, - 0.483067, - 0.364516, - 0.18149700000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014676, - 0.11349, - 0.29292, - 0.43879700000000005, - 0.525518, - 0.559625, - 0.544308, - 0.483025, - 0.366017, - 0.185304, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015785, - 0.110384, - 0.287053, - 0.431519, - 0.516851, - 0.551964, - 0.536854, - 0.475623, - 0.36002300000000004, - 0.180975, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027322, - 0.106686, - 0.221879, - 0.358874, - 0.42677800000000005, - 0.424599, - 0.379608, - 0.36484, - 0.232396, - 0.079893, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016762, - 0.115665, - 0.286563, - 0.427659, - 0.514, - 0.5529729999999999, - 0.46337, - 0.39853500000000003, - 0.30186799999999997, - 0.126631, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028050000000000002, - 0.113648, - 0.247106, - 0.35960000000000003, - 0.456798, - 0.407777, - 0.392478, - 0.31872500000000004, - 0.282674, - 0.117203, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02841, - 0.110138, - 0.22812000000000002, - 0.28460199999999997, - 0.264993, - 0.408599, - 0.433709, - 0.285274, - 0.242469, - 0.078884, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021643, - 0.11706, - 0.248244, - 0.324428, - 0.416823, - 0.161232, - 0.17858600000000002, - 0.10529999999999999, - 0.08764799999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023904, - 0.112054, - 0.088348, - 0.182963, - 0.388519, - 0.38054000000000004, - 0.421734, - 0.366959, - 0.292127, - 0.053427999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.131173, - 0.307336, - 0.45533100000000004, - 0.543847, - 0.583844, - 0.5706789999999999, - 0.510041, - 0.38923599999999997, - 0.2002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.029782, - 0.141276, - 0.24609899999999998, - 0.453032, - 0.540029, - 0.5783680000000001, - 0.571065, - 0.50799, - 0.387659, - 0.015945, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021381, - 0.142064, - 0.321149, - 0.26601600000000003, - 0.555209, - 0.595163, - 0.585591, - 0.5239539999999999, - 0.321892, - 0.211772, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020442000000000002, - 0.146122, - 0.33269299999999996, - 0.483154, - 0.5729, - 0.610606, - 0.598505, - 0.533627, - 0.415801, - 0.22752799999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036664, - 0.146971, - 0.330699, - 0.470693, - 0.553535, - 0.58847, - 0.572798, - 0.510336, - 0.3969, - 0.22013999999999997, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01758, - 0.144891, - 0.32424200000000003, - 0.46518400000000004, - 0.549768, - 0.588151, - 0.5769690000000001, - 0.5154310000000001, - 0.402216, - 0.21935, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020210000000000002, - 0.149911, - 0.32907600000000004, - 0.473384, - 0.556753, - 0.591016, - 0.577866, - 0.51336, - 0.33593900000000004, - 0.054595, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.040764, - 0.140206, - 0.244561, - 0.33951299999999995, - 0.321813, - 0.223732, - 0.398168, - 0.398206, - 0.311401, - 0.155414, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030052, - 0.023899999999999998, - 0.031553, - 0.10640300000000001, - 0.47886399999999996, - 0.419814, - 0.5250929999999999, - 0.412961, - 0.23096799999999998, - 0.009188, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024891, - 0.164969, - 0.34276999999999996, - 0.481731, - 0.564739, - 0.6018089999999999, - 0.59189, - 0.53458, - 0.419827, - 0.242513, - 0.013927, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031445, - 0.167547, - 0.338192, - 0.470704, - 0.5563440000000001, - 0.597555, - 0.5920599999999999, - 0.53664, - 0.425818, - 0.247935, - 0.017277999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036224, - 0.11881399999999999, - 0.13659100000000002, - 0.09934399999999999, - 0.407882, - 0.489748, - 0.466408, - 0.377869, - 0.301842, - 0.154448, - 0.002519, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027815000000000003, - 0.18684399999999998, - 0.385973, - 0.535389, - 0.628553, - 0.671049, - 0.662512, - 0.598773, - 0.47758100000000003, - 0.282374, - 0.008874, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027782, - 0.185994, - 0.377728, - 0.516644, - 0.591759, - 0.6174729999999999, - 0.596564, - 0.541605, - 0.442256, - 0.269912, - 0.00926, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030081, - 0.185721, - 0.373844, - 0.516821, - 0.60485, - 0.643239, - 0.493906, - 0.118715, - 0.03814, - 0.061643, - 0.022768999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.03462, - 0.190088, - 0.373139, - 0.510812, - 0.5971770000000001, - 0.635759, - 0.6247659999999999, - 0.5657279999999999, - 0.45271300000000003, - 0.269868, - 0.032112, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005118, - 0.201511, - 0.39752, - 0.451288, - 0.500564, - 0.67562, - 0.664748, - 0.599675, - 0.048753, - 0.05861, - 0.003065, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036647, - 0.208921, - 0.407147, - 0.550822, - 0.641482, - 0.681517, - 0.67192, - 0.6086900000000001, - 0.48942899999999995, - 0.008179, - 0.021701, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030795000000000003, - 0.17751499999999998, - 0.210011, - 0.29329500000000003, - 0.41720100000000004, - 0.08020999999999999, - 0.43029199999999995, - 0.287803, - 0.093394, - 0.132103, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.058982999999999994, - 0.17430500000000002, - 0.271551, - 0.361361, - 0.461389, - 0.420334, - 0.405386, - 0.29732600000000003, - 0.211302, - 0.097293, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0012909999999999998, - 0.06401000000000001, - 0.177357, - 0.314271, - 0.45323399999999997, - 0.500051, - 0.500418, - 0.5792039999999999, - 0.45652, - 0.288115, - 0.12956800000000002, - 0.005171, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006144, - 0.04692, - 0.21480000000000002, - 0.31833999999999996, - 0.440479, - 0.499875, - 0.540289, - 0.440021, - 0.39847699999999997, - 0.44712999999999997, - 0.27590800000000004, - 0.043274, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007905, - 0.04972699999999999, - 0.218552, - 0.390521, - 0.512571, - 0.428192, - 0.627538, - 0.619112, - 0.467811, - 0.447787, - 0.13911500000000002, - 0.044365, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003424, - 0.068493, - 0.18090299999999998, - 0.280329, - 0.515528, - 0.59664, - 0.519968, - 0.627435, - 0.564834, - 0.449529, - 0.279714, - 0.048554, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004816, - 0.057529000000000004, - 0.237245, - 0.420692, - 0.468113, - 0.526609, - 0.5061840000000001, - 0.5114569999999999, - 0.499562, - 0.37706799999999996, - 0.302211, - 0.009085000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004727, - 0.058847000000000003, - 0.248744, - 0.439004, - 0.568432, - 0.646255, - 0.675528, - 0.6595599999999999, - 0.5979009999999999, - 0.483367, - 0.241844, - 0.03968, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00552, - 0.066119, - 0.239791, - 0.424769, - 0.54723, - 0.616808, - 0.632577, - 0.604118, - 0.553928, - 0.358224, - 0.228617, - 0.059457, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005409, - 0.063765, - 0.213755, - 0.42602100000000004, - 0.55041, - 0.628226, - 0.658216, - 0.646381, - 0.5819500000000001, - 0.46966699999999995, - 0.299414, - 0.067026, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007859, - 0.079239, - 0.21631999999999998, - 0.445666, - 0.485724, - 0.5086229999999999, - 0.573986, - 0.504964, - 0.461325, - 0.319447, - 0.221297, - 0.043676, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008431, - 0.072574, - 0.261272, - 0.448379, - 0.575021, - 0.653971, - 0.684628, - 0.665005, - 0.599789, - 0.48476400000000003, - 0.310596, - 0.07661499999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010326, - 0.07823000000000001, - 0.264386, - 0.443178, - 0.569605, - 0.648397, - 0.6833490000000001, - 0.668256, - 0.602636, - 0.48953199999999997, - 0.31743299999999997, - 0.086202, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011273, - 0.08039400000000001, - 0.26965100000000003, - 0.445969, - 0.5579400000000001, - 0.63063, - 0.660633, - 0.650582, - 0.594221, - 0.48505200000000004, - 0.31735800000000003, - 0.08887300000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011035999999999999, - 0.082455, - 0.27595, - 0.45840499999999995, - 0.583032, - 0.659686, - 0.686682, - 0.67106, - 0.601915, - 0.48645900000000003, - 0.317927, - 0.08652800000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015470000000000001, - 0.09219100000000001, - 0.270867, - 0.43257100000000004, - 0.5452859999999999, - 0.608746, - 0.649475, - 0.644536, - 0.591488, - 0.488066, - 0.326347, - 0.09752899999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011873, - 0.090024, - 0.290086, - 0.471598, - 0.596995, - 0.6781029999999999, - 0.71105, - 0.695723, - 0.6337670000000001, - 0.462445, - 0.238613, - 0.069048, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014958, - 0.098858, - 0.299639, - 0.485832, - 0.608818, - 0.6839500000000001, - 0.708388, - 0.6860510000000001, - 0.624244, - 0.5110520000000001, - 0.34604599999999996, - 0.11131100000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013971, - 0.100914, - 0.302022, - 0.48463, - 0.606822, - 0.6812659999999999, - 0.70505, - 0.678236, - 0.608816, - 0.497981, - 0.337901, - 0.108758, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021276, - 0.101338, - 0.22406600000000002, - 0.43307799999999996, - 0.522553, - 0.537649, - 0.554702, - 0.546269, - 0.43381400000000003, - 0.48973, - 0.330413, - 0.101726, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016652, - 0.10463599999999999, - 0.292031, - 0.4582, - 0.575189, - 0.65073, - 0.682355, - 0.670298, - 0.606008, - 0.49156099999999997, - 0.322812, - 0.091889, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023920999999999998, - 0.117723, - 0.29496100000000003, - 0.452698, - 0.551821, - 0.616154, - 0.6573289999999999, - 0.657257, - 0.6048150000000001, - 0.495918, - 0.330778, - 0.101657, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021835999999999998, - 0.11727599999999999, - 0.254362, - 0.37263799999999997, - 0.5479310000000001, - 0.552898, - 0.56326, - 0.528413, - 0.512426, - 0.478205, - 0.227071, - 0.061214, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023441, - 0.12050799999999999, - 0.257543, - 0.419228, - 0.581638, - 0.6491480000000001, - 0.668874, - 0.6473289999999999, - 0.43333, - 0.42192799999999997, - 0.239646, - 0.092279, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024099, - 0.12409999999999999, - 0.3028, - 0.46264, - 0.5890639999999999, - 0.666541, - 0.698956, - 0.603546, - 0.6131570000000001, - 0.50345, - 0.331671, - 0.10102599999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023521, - 0.127137, - 0.324583, - 0.49947699999999995, - 0.623681, - 0.70382, - 0.186839, - 0.452007, - 0.468528, - 0.31955900000000004, - 0.125834, - 0.106979, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026497, - 0.13375, - 0.329346, - 0.49527499999999997, - 0.6074729999999999, - 0.6777369999999999, - 0.712835, - 0.698765, - 0.6346499999999999, - 0.5178440000000001, - 0.135437, - 0.115047, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02894, - 0.141098, - 0.32215699999999997, - 0.47425599999999996, - 0.578619, - 0.571686, - 0.5936889999999999, - 0.566261, - 0.5467190000000001, - 0.481211, - 0.32098000000000004, - 0.109796, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026094000000000003, - 0.122821, - 0.263529, - 0.468343, - 0.59213, - 0.642232, - 0.535741, - 0.5812, - 0.613512, - 0.465146, - 0.213027, - 0.052987, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021868, - 0.14995599999999998, - 0.359341, - 0.530941, - 0.651419, - 0.727577, - 0.7543730000000001, - 0.7325320000000001, - 0.666609, - 0.5489160000000001, - 0.38001100000000004, - 0.14592, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023764, - 0.146091, - 0.34283800000000003, - 0.509468, - 0.629578, - 0.7069160000000001, - 0.738341, - 0.728011, - 0.663846, - 0.544945, - 0.004889999999999999, - 0.0024980000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026183, - 0.158608, - 0.37000900000000003, - 0.545673, - 0.66818, - 0.746845, - 0.773058, - 0.753529, - 0.681693, - 0.562936, - 0.387887, - 0.14645, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023395, - 0.15865600000000002, - 0.362851, - 0.526616, - 0.639023, - 0.704991, - 0.723879, - 0.5900259999999999, - 0.641455, - 0.530254, - 0.371567, - 0.14645599999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031061, - 0.157817, - 0.30185, - 0.411775, - 0.5752079999999999, - 0.6467350000000001, - 0.6852910000000001, - 0.6791739999999999, - 0.6259009999999999, - 0.516709, - 0.360927, - 0.135713, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.03795900000000001, - 0.171422, - 0.275393, - 0.44304000000000004, - 0.623169, - 0.698834, - 0.731831, - 0.717963, - 0.655362, - 0.544092, - 0.37787200000000004, - 0.144077, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.03893, - 0.179918, - 0.382533, - 0.548155, - 0.666135, - 0.740149, - 0.770752, - 0.752019, - 0.682809, - 0.33640800000000004, - 0.37593099999999996, - 0.141541, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.042182000000000004, - 0.189371, - 0.38854500000000003, - 0.5540259999999999, - 0.673661, - 0.744909, - 0.768317, - 0.744909, - 0.6738869999999999, - 0.5540499999999999, - 0.379478, - 0.148197, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038577, - 0.186808, - 0.386587, - 0.5429700000000001, - 0.6518440000000001, - 0.712015, - 0.727206, - 0.704521, - 0.644569, - 0.541359, - 0.381916, - 0.153401, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.043635, - 0.183149, - 0.36744299999999996, - 0.519277, - 0.628707, - 0.700329, - 0.7275689999999999, - 0.7112229999999999, - 0.644624, - 0.527949, - 0.372869, - 0.148728, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.04131, - 0.186078, - 0.37358800000000003, - 0.524791, - 0.6358010000000001, - 0.708996, - 0.7407720000000001, - 0.726808, - 0.6592279999999999, - 0.539402, - 0.34048399999999995, - 0.144034, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034881, - 0.191845, - 0.38702499999999995, - 0.5428339999999999, - 0.658025, - 0.7319070000000001, - 0.763968, - 0.744535, - 0.677806, - 0.5632229999999999, - 0.401339, - 0.169142, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00039600000000000003, - 0.192207, - 0.271424, - 0.552767, - 0.148936, - 0.415319, - 0.773792, - 0.753583, - 0.5803429999999999, - 0.376468, - 0.061812, - 0.0025710000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.052466, - 0.203787, - 0.272549, - 0.553198, - 0.669085, - 0.739509, - 0.654273, - 0.738874, - 0.389772, - 0.199123, - 0.19241399999999997, - 0.038098999999999994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00040100000000000004, - 0.203654, - 0.398297, - 0.16302, - 0.020974, - 0.067309, - 0.031985, - 0.122739, - 0.12185299999999999, - 0.233363, - 0.08086, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.060877, - 0.21315299999999998, - 0.422047, - 0.581409, - 0.691622, - 0.761206, - 0.782611, - 0.757746, - 0.6877759999999999, - 0.575613, - 0.410334, - 0.18223699999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0019850000000000002, - 0.048951999999999996, - 0.207012, - 0.397044, - 0.538385, - 0.6259779999999999, - 0.675476, - 0.708394, - 0.704326, - 0.6516219999999999, - 0.550508, - 0.392121, - 0.173291, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0024860000000000004, - 0.046847, - 0.20609, - 0.391963, - 0.533886, - 0.6323479999999999, - 0.6880510000000001, - 0.700456, - 0.687766, - 0.635308, - 0.534982, - 0.386715, - 0.172867, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002931, - 0.043119, - 0.206156, - 0.389009, - 0.519088, - 0.6072000000000001, - 0.665234, - 0.701789, - 0.699568, - 0.645134, - 0.542085, - 0.392262, - 0.182274, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005351, - 0.060467, - 0.20973599999999998, - 0.392175, - 0.458656, - 0.540868, - 0.694238, - 0.715603, - 0.702111, - 0.64374, - 0.541037, - 0.291219, - 0.179203, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00479, - 0.047118, - 0.213582, - 0.398843, - 0.535172, - 0.626042, - 0.676197, - 0.681242, - 0.64915, - 0.592055, - 0.500218, - 0.354741, - 0.16153499999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0037679999999999996, - 0.05458, - 0.210573, - 0.38662799999999997, - 0.523466, - 0.633501, - 0.685278, - 0.689722, - 0.653317, - 0.5832820000000001, - 0.50213, - 0.374054, - 0.180284, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003992, - 0.050055999999999996, - 0.21599000000000002, - 0.395171, - 0.524086, - 0.612742, - 0.661537, - 0.6793020000000001, - 0.666188, - 0.6166269999999999, - 0.52232, - 0.38533100000000003, - 0.185364, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003901, - 0.051758000000000005, - 0.215528, - 0.38708499999999996, - 0.523313, - 0.628884, - 0.692399, - 0.7189059999999999, - 0.704739, - 0.644846, - 0.5360069999999999, - 0.396106, - 0.18823099999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005193, - 0.062483, - 0.229603, - 0.413054, - 0.549671, - 0.651916, - 0.717237, - 0.7399779999999999, - 0.733392, - 0.671326, - 0.566057, - 0.418128, - 0.202738, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007494, - 0.07127800000000001, - 0.232315, - 0.399829, - 0.549961, - 0.567561, - 0.37122000000000005, - 0.438787, - 0.480336, - 0.180307, - 0.16791499999999998, - 0.108783, - 0.027759, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07452500000000001, - 0.198577, - 0.287292, - 0.34908, - 0.186477, - 0.45565100000000003, - 0.589216, - 0.544889, - 0.3357, - 0.399623, - 0.27202499999999996, - 0.200625, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007008, - 0.060759999999999995, - 0.23686600000000002, - 0.42401799999999995, - 0.56924, - 0.675736, - 0.743121, - 0.7683150000000001, - 0.384115, - 0.500422, - 0.216307, - 0.127622, - 0.021072, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008362999999999999, - 0.068333, - 0.24791, - 0.434361, - 0.574214, - 0.675961, - 0.73388, - 0.743891, - 0.7173959999999999, - 0.648884, - 0.5479400000000001, - 0.39755900000000005, - 0.19490000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009582, - 0.075207, - 0.245018, - 0.428952, - 0.566932, - 0.673443, - 0.722909, - 0.7235389999999999, - 0.688514, - 0.618173, - 0.5232100000000001, - 0.393945, - 0.199849, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010987, - 0.077632, - 0.247055, - 0.425339, - 0.555339, - 0.645597, - 0.6917300000000001, - 0.693322, - 0.670824, - 0.6175689999999999, - 0.5264, - 0.37917, - 0.180906, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011124, - 0.076916, - 0.24133500000000002, - 0.406096, - 0.5334260000000001, - 0.638155, - 0.702937, - 0.728707, - 0.713735, - 0.6507269999999999, - 0.542235, - 0.41551699999999997, - 0.21246, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010199999999999999, - 0.071923, - 0.250594, - 0.433479, - 0.564427, - 0.658019, - 0.7022160000000001, - 0.694528, - 0.664548, - 0.632403, - 0.544744, - 0.40227999999999997, - 0.20683500000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011541000000000001, - 0.075459, - 0.247842, - 0.421874, - 0.548938, - 0.637929, - 0.680757, - 0.680842, - 0.671099, - 0.631897, - 0.539858, - 0.395489, - 0.197857, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011327, - 0.075089, - 0.243618, - 0.41512299999999996, - 0.541903, - 0.633568, - 0.67945, - 0.6899740000000001, - 0.661938, - 0.6115130000000001, - 0.5177759999999999, - 0.381081, - 0.192801, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013127000000000002, - 0.079344, - 0.240184, - 0.397086, - 0.5170359999999999, - 0.615066, - 0.676865, - 0.7038329999999999, - 0.690875, - 0.637164, - 0.536697, - 0.394038, - 0.199292, - 0.0035800000000000003, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014047, - 0.08376, - 0.255289, - 0.410346, - 0.500488, - 0.607463, - 0.63166, - 0.751379, - 0.732155, - 0.5418390000000001, - 0.494436, - 0.35507799999999995, - 0.179551, - 0.006138, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019786, - 0.102306, - 0.237916, - 0.40626, - 0.570268, - 0.665319, - 0.731365, - 0.292868, - 0.352007, - 0.691772, - 0.58378, - 0.272906, - 0.20916300000000002, - 0.002751, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024143, - 0.10778, - 0.27499599999999996, - 0.260671, - 0.59166, - 0.69817, - 0.762856, - 0.7007749999999999, - 0.368781, - 0.082614, - 0.484321, - 0.285203, - 0.23549199999999998, - 0.010385, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016481000000000003, - 0.093929, - 0.27820999999999996, - 0.45742, - 0.44323700000000005, - 0.690562, - 0.7438619999999999, - 0.756904, - 0.521942, - 0.539702, - 0.5510729999999999, - 0.39960700000000005, - 0.201264, - 0.00276, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018973, - 0.096432, - 0.25876699999999997, - 0.42056299999999996, - 0.547327, - 0.643365, - 0.708109, - 0.733029, - 0.718683, - 0.6530750000000001, - 0.5467029999999999, - 0.389593, - 0.192363, - 0.003992, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025815, - 0.111303, - 0.27372199999999997, - 0.43757100000000004, - 0.567458, - 0.6736169999999999, - 0.738951, - 0.7623099999999999, - 0.7390119999999999, - 0.678806, - 0.569708, - 0.418007, - 0.216679, - 0.008805, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022265999999999998, - 0.103908, - 0.27071100000000003, - 0.43902300000000005, - 0.570332, - 0.672979, - 0.736139, - 0.7589020000000001, - 0.741832, - 0.682713, - 0.57955, - 0.432918, - 0.23413399999999998, - 0.013176, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018986999999999997, - 0.101205, - 0.276809, - 0.450677, - 0.5838139999999999, - 0.691758, - 0.755166, - 0.775891, - 0.7557809999999999, - 0.693239, - 0.5887939999999999, - 0.43738299999999997, - 0.23956200000000002, - 0.01927, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017577000000000002, - 0.105007, - 0.302017, - 0.48802, - 0.620165, - 0.712585, - 0.7693300000000001, - 0.7835420000000001, - 0.75666, - 0.698626, - 0.596723, - 0.448324, - 0.24732300000000002, - 0.020760999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022661, - 0.10790000000000001, - 0.290773, - 0.46540499999999996, - 0.598296, - 0.695956, - 0.7577229999999999, - 0.7807000000000001, - 0.761105, - 0.7009299999999999, - 0.59472, - 0.44329399999999997, - 0.240007, - 0.018438, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0287, - 0.117551, - 0.290358, - 0.466745, - 0.606452, - 0.708788, - 0.770829, - 0.703868, - 0.16819900000000002, - 0.522843, - 0.5927709999999999, - 0.430411, - 0.225615, - 0.016654, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026934999999999997, - 0.113488, - 0.283851, - 0.454931, - 0.5844790000000001, - 0.683399, - 0.746433, - 0.7690990000000001, - 0.756342, - 0.694108, - 0.46576799999999996, - 0.36274700000000004, - 0.19050399999999998, - 0.008753, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024439, - 0.110946, - 0.283688, - 0.460663, - 0.601607, - 0.7069, - 0.772223, - 0.797671, - 0.7741939999999999, - 0.713909, - 0.607242, - 0.456769, - 0.25583500000000003, - 0.026866, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018352, - 0.10641800000000001, - 0.289682, - 0.462703, - 0.583932, - 0.663233, - 0.708367, - 0.7208150000000001, - 0.7084750000000001, - 0.6531440000000001, - 0.55933, - 0.42529300000000003, - 0.24995799999999999, - 0.032115000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017977, - 0.107266, - 0.291983, - 0.46439600000000003, - 0.589369, - 0.678271, - 0.725429, - 0.7329220000000001, - 0.7026079999999999, - 0.632771, - 0.545216, - 0.42486599999999997, - 0.249414, - 0.0312, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018444, - 0.105907, - 0.283592, - 0.449849, - 0.573747, - 0.655654, - 0.6958179999999999, - 0.693932, - 0.6590130000000001, - 0.622479, - 0.5510929999999999, - 0.421918, - 0.241088, - 0.029032, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018143, - 0.104741, - 0.2742, - 0.430818, - 0.556437, - 0.6532380000000001, - 0.71568, - 0.7414740000000001, - 0.7272419999999999, - 0.6706019999999999, - 0.572936, - 0.432339, - 0.247908, - 0.033402, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016604, - 0.106171, - 0.28183600000000003, - 0.438428, - 0.553578, - 0.6378189999999999, - 0.684483, - 0.700995, - 0.682702, - 0.6355890000000001, - 0.5515019999999999, - 0.418341, - 0.240004, - 0.031952, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020035, - 0.106136, - 0.273043, - 0.429132, - 0.552528, - 0.650255, - 0.709544, - 0.7360789999999999, - 0.722247, - 0.667942, - 0.574136, - 0.439202, - 0.260093, - 0.041460000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017193999999999997, - 0.10890699999999999, - 0.23785900000000001, - 0.45643900000000004, - 0.5878490000000001, - 0.552057, - 0.7450739999999999, - 0.7629, - 0.744918, - 0.690023, - 0.5869, - 0.447963, - 0.261458, - 0.040402, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022498999999999998, - 0.115816, - 0.29797500000000005, - 0.46924400000000005, - 0.603955, - 0.703484, - 0.764891, - 0.786617, - 0.771122, - 0.711379, - 0.607611, - 0.464601, - 0.275726, - 0.04836, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028123000000000002, - 0.123501, - 0.29970800000000003, - 0.470598, - 0.6027279999999999, - 0.7076330000000001, - 0.76666, - 0.7877430000000001, - 0.767721, - 0.706054, - 0.604413, - 0.45808699999999997, - 0.264994, - 0.042752000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027248, - 0.12112300000000001, - 0.290312, - 0.44903899999999997, - 0.570484, - 0.6642250000000001, - 0.715553, - 0.7312240000000001, - 0.718703, - 0.66671, - 0.578017, - 0.444321, - 0.26372199999999996, - 0.048043999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021813, - 0.11536, - 0.286514, - 0.44385, - 0.564926, - 0.654557, - 0.702696, - 0.713756, - 0.697808, - 0.6476770000000001, - 0.558935, - 0.426491, - 0.24896000000000001, - 0.043184, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023876, - 0.117228, - 0.2809, - 0.435771, - 0.55838, - 0.654245, - 0.711702, - 0.732982, - 0.5685800000000001, - 0.661802, - 0.564053, - 0.377886, - 0.22984000000000002, - 0.043887999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030856, - 0.113405, - 0.286231, - 0.442067, - 0.56089, - 0.655251, - 0.715789, - 0.7361449999999999, - 0.721493, - 0.6684589999999999, - 0.57108, - 0.43758800000000003, - 0.255287, - 0.049633000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030506000000000002, - 0.11320999999999999, - 0.235033, - 0.263755, - 0.499905, - 0.5883079999999999, - 0.5220009999999999, - 0.376003, - 0.131547, - 0.45979899999999996, - 0.21551599999999999, - 0.437072, - 0.23768899999999998, - 0.038415, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026795000000000003, - 0.113307, - 0.276447, - 0.442728, - 0.557241, - 0.646495, - 0.712015, - 0.6742039999999999, - 0.522725, - 0.5689740000000001, - 0.5146499999999999, - 0.322584, - 0.173319, - 0.029735, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023443000000000002, - 0.107855, - 0.23125800000000002, - 0.226911, - 0.45463099999999995, - 0.5407029999999999, - 0.624268, - 0.633816, - 0.616127, - 0.321048, - 0.296631, - 0.23168799999999998, - 0.106489, - 0.040117, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025204, - 0.118897, - 0.27976999999999996, - 0.432092, - 0.5532549999999999, - 0.637605, - 0.671644, - 0.666211, - 0.643197, - 0.604291, - 0.5287580000000001, - 0.40252499999999997, - 0.247959, - 0.05579, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023254999999999998, - 0.11324899999999999, - 0.277941, - 0.429865, - 0.551655, - 0.64488, - 0.705271, - 0.73154, - 0.719127, - 0.665263, - 0.570797, - 0.44273700000000005, - 0.268404, - 0.067562, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021838, - 0.071717, - 0.177523, - 0.143792, - 0.17586000000000002, - 0.557357, - 0.49397199999999997, - 0.7419070000000001, - 0.738778, - 0.538323, - 0.5866910000000001, - 0.437742, - 0.252461, - 0.04081, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026221, - 0.11963700000000001, - 0.294253, - 0.461262, - 0.5949099999999999, - 0.693706, - 0.757426, - 0.781375, - 0.7660399999999999, - 0.7061799999999999, - 0.6063529999999999, - 0.46501, - 0.280331, - 0.070202, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022760000000000002, - 0.126524, - 0.316379, - 0.492243, - 0.631864, - 0.7338429999999999, - 0.797515, - 0.820432, - 0.7973, - 0.73687, - 0.6340779999999999, - 0.49812599999999996, - 0.312013, - 0.088574, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020328, - 0.12739, - 0.322504, - 0.501689, - 0.638345, - 0.737206, - 0.788099, - 0.765532, - 0.783501, - 0.722164, - 0.6211409999999999, - 0.484084, - 0.304117, - 0.08967900000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019729, - 0.122321, - 0.30370400000000003, - 0.4721, - 0.5920829999999999, - 0.6762910000000001, - 0.724828, - 0.732349, - 0.703933, - 0.6385839999999999, - 0.5527960000000001, - 0.442363, - 0.28272, - 0.080261, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021663, - 0.119475, - 0.29495, - 0.45687700000000003, - 0.576513, - 0.657643, - 0.701123, - 0.711989, - 0.6993400000000001, - 0.657166, - 0.5742, - 0.45184399999999997, - 0.283591, - 0.079872, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020527, - 0.115478, - 0.285558, - 0.44637099999999996, - 0.573044, - 0.671049, - 0.734321, - 0.761299, - 0.751305, - 0.697261, - 0.601767, - 0.47176, - 0.296206, - 0.08568, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020472999999999998, - 0.124572, - 0.296212, - 0.472877, - 0.582364, - 0.678596, - 0.764972, - 0.789022, - 0.771512, - 0.7151069999999999, - 0.61427, - 0.479417, - 0.299648, - 0.085967, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024687, - 0.12136, - 0.301965, - 0.468696, - 0.5971660000000001, - 0.694726, - 0.7556269999999999, - 0.7786369999999999, - 0.761349, - 0.702607, - 0.603241, - 0.471962, - 0.29457799999999995, - 0.08498900000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022407, - 0.12072799999999999, - 0.296974, - 0.456805, - 0.569076, - 0.642725, - 0.674236, - 0.6844210000000001, - 0.686556, - 0.655264, - 0.573735, - 0.453223, - 0.279491, - 0.077256, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023614, - 0.117695, - 0.28554, - 0.43492899999999995, - 0.55965, - 0.6539919999999999, - 0.7137, - 0.738636, - 0.725716, - 0.672999, - 0.57172, - 0.44798000000000004, - 0.259719, - 0.043851999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022133, - 0.115877, - 0.28944099999999995, - 0.454443, - 0.583087, - 0.680158, - 0.7414160000000001, - 0.766013, - 0.7514109999999999, - 0.695846, - 0.599429, - 0.47072, - 0.29483499999999996, - 0.085885, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025407, - 0.11935599999999999, - 0.291311, - 0.45235000000000003, - 0.5722079999999999, - 0.6537229999999999, - 0.696382, - 0.710543, - 0.7014130000000001, - 0.659865, - 0.5767680000000001, - 0.454972, - 0.28432799999999997, - 0.079844, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024519, - 0.117972, - 0.291056, - 0.45183999999999996, - 0.56763, - 0.642418, - 0.68577, - 0.7008920000000001, - 0.693901, - 0.654813, - 0.5705800000000001, - 0.45023, - 0.281963, - 0.081094, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.029788000000000002, - 0.121777, - 0.28363499999999997, - 0.435466, - 0.552704, - 0.641323, - 0.701265, - 0.726961, - 0.7151109999999999, - 0.657384, - 0.5726789999999999, - 0.45102, - 0.282087, - 0.082691, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024523, - 0.116976, - 0.28182, - 0.43735599999999997, - 0.555477, - 0.641386, - 0.69168, - 0.715237, - 0.7081109999999999, - 0.659534, - 0.572705, - 0.446113, - 0.281254, - 0.082826, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022940000000000002, - 0.11508700000000001, - 0.285766, - 0.44306599999999996, - 0.567154, - 0.6594840000000001, - 0.71947, - 0.743077, - 0.729413, - 0.676496, - 0.586216, - 0.458318, - 0.290292, - 0.08888, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02044, - 0.110866, - 0.281094, - 0.437761, - 0.556589, - 0.648581, - 0.7079310000000001, - 0.733694, - 0.722839, - 0.671808, - 0.582546, - 0.458365, - 0.292819, - 0.091329, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019577999999999998, - 0.110095, - 0.278515, - 0.43353800000000003, - 0.550698, - 0.62534, - 0.693852, - 0.725872, - 0.717067, - 0.6691090000000001, - 0.562429, - 0.43843099999999996, - 0.284891, - 0.075297, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022723, - 0.10645600000000001, - 0.249622, - 0.39348500000000003, - 0.54877, - 0.638486, - 0.6868150000000001, - 0.711221, - 0.6241680000000001, - 0.5955170000000001, - 0.49826600000000004, - 0.32910199999999995, - 0.253945, - 0.07558799999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022997, - 0.108587, - 0.256053, - 0.40386900000000003, - 0.522837, - 0.655965, - 0.6938529999999999, - 0.700474, - 0.7195410000000001, - 0.687117, - 0.594563, - 0.470166, - 0.299768, - 0.092694, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022171, - 0.106766, - 0.26399900000000004, - 0.405601, - 0.5227480000000001, - 0.611095, - 0.668805, - 0.690987, - 0.677114, - 0.400401, - 0.252381, - 0.418798, - 0.265048, - 0.07791100000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021507000000000002, - 0.107459, - 0.266803, - 0.421036, - 0.540485, - 0.6332300000000001, - 0.6927089999999999, - 0.719789, - 0.708823, - 0.658941, - 0.5690879999999999, - 0.44608800000000004, - 0.281377, - 0.085132, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022733, - 0.112093, - 0.284578, - 0.449555, - 0.5823590000000001, - 0.684111, - 0.748093, - 0.772147, - 0.7571169999999999, - 0.701984, - 0.606506, - 0.47497, - 0.304211, - 0.097314, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024477, - 0.114376, - 0.291456, - 0.455034, - 0.570729, - 0.648205, - 0.70004, - 0.726244, - 0.722093, - 0.681428, - 0.595284, - 0.47201600000000005, - 0.301956, - 0.095821, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01893, - 0.106261, - 0.277709, - 0.433395, - 0.5460280000000001, - 0.637383, - 0.7014130000000001, - 0.73258, - 0.7260220000000001, - 0.679981, - 0.591039, - 0.474208, - 0.30998899999999996, - 0.10444400000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014618, - 0.104858, - 0.28674700000000003, - 0.45076499999999997, - 0.5696599999999999, - 0.64996, - 0.70726, - 0.733392, - 0.724572, - 0.681063, - 0.595767, - 0.473596, - 0.310603, - 0.102813, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014587999999999999, - 0.10501, - 0.287808, - 0.45514699999999997, - 0.579677, - 0.670501, - 0.7314919999999999, - 0.7567569999999999, - 0.746005, - 0.697448, - 0.6089450000000001, - 0.48315499999999995, - 0.316612, - 0.10758799999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014326, - 0.104923, - 0.285225, - 0.446179, - 0.554953, - 0.630783, - 0.68143, - 0.704785, - 0.696697, - 0.655175, - 0.576638, - 0.45955399999999996, - 0.303581, - 0.10244299999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014199, - 0.10212900000000001, - 0.273415, - 0.42349200000000004, - 0.521716, - 0.6068680000000001, - 0.549079, - 0.693545, - 0.660103, - 0.616464, - 0.533, - 0.429118, - 0.266293, - 0.07458799999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020997, - 0.100888, - 0.253633, - 0.402929, - 0.517123, - 0.604727, - 0.659985, - 0.682594, - 0.6037659999999999, - 0.638048, - 0.553135, - 0.42764800000000003, - 0.26276799999999995, - 0.071005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028897, - 0.113844, - 0.249609, - 0.39856400000000003, - 0.5141549999999999, - 0.6044400000000001, - 0.666029, - 0.607283, - 0.600102, - 0.635918, - 0.549432, - 0.423261, - 0.255003, - 0.063182, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020119, - 0.09899899999999999, - 0.260906, - 0.423226, - 0.5476219999999999, - 0.645141, - 0.7069249999999999, - 0.73234, - 0.726557, - 0.677039, - 0.585688, - 0.461669, - 0.295286, - 0.091782, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015269999999999999, - 0.09520300000000001, - 0.26600799999999997, - 0.434211, - 0.562392, - 0.659971, - 0.723285, - 0.750144, - 0.738059, - 0.6854690000000001, - 0.595653, - 0.474462, - 0.30478, - 0.096864, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017865, - 0.096731, - 0.260981, - 0.419622, - 0.5418390000000001, - 0.631182, - 0.69377, - 0.720213, - 0.713957, - 0.662571, - 0.56544, - 0.434851, - 0.26069400000000004, - 0.063982, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022208, - 0.080524, - 0.225825, - 0.19797599999999999, - 0.47744400000000004, - 0.51709, - 0.480547, - 0.5324439999999999, - 0.5181570000000001, - 0.30031599999999997, - 0.421907, - 0.33696699999999996, - 0.130136, - 0.025422999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022985, - 0.104113, - 0.263714, - 0.43166000000000004, - 0.566153, - 0.6727069999999999, - 0.7365470000000001, - 0.7591789999999999, - 0.749519, - 0.700761, - 0.6080420000000001, - 0.480852, - 0.30954899999999996, - 0.097959, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014365000000000001, - 0.092807, - 0.266898, - 0.434012, - 0.557763, - 0.651161, - 0.712433, - 0.737877, - 0.730308, - 0.6841860000000001, - 0.595716, - 0.47004399999999996, - 0.301123, - 0.09433799999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012910999999999999, - 0.088561, - 0.26306599999999997, - 0.42767700000000003, - 0.546597, - 0.635273, - 0.6970839999999999, - 0.721092, - 0.712581, - 0.6653490000000001, - 0.577188, - 0.452934, - 0.28712, - 0.085229, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006144, - 0.072597, - 0.21785400000000002, - 0.32965300000000003, - 0.420774, - 0.311459, - 0.405716, - 0.415692, - 0.487978, - 0.604346, - 0.5269790000000001, - 0.429645, - 0.26350599999999996, - 0.068858, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008376, - 0.085655, - 0.240153, - 0.39503, - 0.513414, - 0.6101960000000001, - 0.670298, - 0.6962809999999999, - 0.6837709999999999, - 0.638852, - 0.5501119999999999, - 0.421825, - 0.258608, - 0.067899, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014358000000000001, - 0.082956, - 0.244317, - 0.407253, - 0.531556, - 0.627597, - 0.690182, - 0.7161259999999999, - 0.708193, - 0.66025, - 0.573718, - 0.449673, - 0.283038, - 0.08023000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012359, - 0.083342, - 0.254724, - 0.42151299999999997, - 0.545157, - 0.639306, - 0.701758, - 0.727296, - 0.715408, - 0.666913, - 0.579238, - 0.452719, - 0.284429, - 0.079108, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011787, - 0.08241, - 0.255719, - 0.42507, - 0.5530109999999999, - 0.649968, - 0.714746, - 0.7403010000000001, - 0.729478, - 0.677739, - 0.5853400000000001, - 0.458611, - 0.291087, - 0.084497, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011139, - 0.080046, - 0.251006, - 0.419069, - 0.546774, - 0.648371, - 0.7146979999999999, - 0.7427849999999999, - 0.734052, - 0.6857730000000001, - 0.59599, - 0.47040899999999997, - 0.30153399999999997, - 0.088377, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011013, - 0.07839600000000001, - 0.25191399999999997, - 0.419217, - 0.547359, - 0.647794, - 0.712291, - 0.739253, - 0.731583, - 0.678952, - 0.5866979999999999, - 0.463983, - 0.292891, - 0.08439100000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011839, - 0.079134, - 0.244514, - 0.413091, - 0.539215, - 0.636619, - 0.699025, - 0.722052, - 0.7150460000000001, - 0.663289, - 0.571649, - 0.443492, - 0.273619, - 0.06954300000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013233, - 0.076824, - 0.23408600000000002, - 0.391855, - 0.515046, - 0.609047, - 0.671285, - 0.694133, - 0.6833980000000001, - 0.632943, - 0.53928, - 0.417165, - 0.24212299999999998, - 0.008747, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002205, - 0.060087, - 0.066703, - 0.061622, - 0.527976, - 0.548909, - 0.654336, - 0.057665999999999995, - 0.182323, - 0.15757300000000002, - 0.020325, - 0.194739, - 0.037573999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012839, - 0.075033, - 0.22655099999999997, - 0.38497899999999996, - 0.506945, - 0.605019, - 0.668603, - 0.696049, - 0.6871470000000001, - 0.640715, - 0.5535549999999999, - 0.428981, - 0.259893, - 0.060357999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010396, - 0.069926, - 0.232794, - 0.399962, - 0.525154, - 0.623178, - 0.687566, - 0.714152, - 0.708483, - 0.6577430000000001, - 0.567776, - 0.431778, - 0.260916, - 0.058487000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010336, - 0.069288, - 0.232119, - 0.399707, - 0.52426, - 0.617101, - 0.6799679999999999, - 0.709234, - 0.700797, - 0.653409, - 0.56694, - 0.435607, - 0.264786, - 0.058756, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010948000000000001, - 0.069075, - 0.226404, - 0.388567, - 0.5140520000000001, - 0.6115309999999999, - 0.674446, - 0.700124, - 0.6941609999999999, - 0.644325, - 0.5539700000000001, - 0.423779, - 0.252897, - 0.051446, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011082000000000002, - 0.070036, - 0.228192, - 0.39149900000000004, - 0.517974, - 0.612448, - 0.673365, - 0.699509, - 0.6920850000000001, - 0.643783, - 0.5547430000000001, - 0.423311, - 0.25237, - 0.049784, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009726, - 0.06748399999999999, - 0.22647399999999998, - 0.394104, - 0.517725, - 0.609525, - 0.671552, - 0.6961219999999999, - 0.681842, - 0.635043, - 0.549022, - 0.42486599999999997, - 0.254637, - 0.048682, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009658, - 0.067162, - 0.225335, - 0.38910500000000003, - 0.513875, - 0.6088279999999999, - 0.6713899999999999, - 0.6976140000000001, - 0.692068, - 0.641728, - 0.551953, - 0.42200299999999996, - 0.249338, - 0.043825, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008955, - 0.066488, - 0.220694, - 0.38380000000000003, - 0.506253, - 0.600657, - 0.6613519999999999, - 0.68536, - 0.671268, - 0.6189199999999999, - 0.526573, - 0.404606, - 0.2324, - 0.034133000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.050389, - 0.008494, - 0.336312, - 0.511779, - 0.546467, - 0.59235, - 0.6204700000000001, - 0.67915, - 0.631475, - 0.538789, - 0.414354, - 0.240531, - 0.034908, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008967000000000001, - 0.06644, - 0.21757300000000002, - 0.380574, - 0.5051, - 0.6020449999999999, - 0.668685, - 0.696954, - 0.686457, - 0.6397569999999999, - 0.5485209999999999, - 0.42399000000000003, - 0.249579, - 0.038522, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0070940000000000005, - 0.059997, - 0.22059600000000001, - 0.388202, - 0.509516, - 0.603343, - 0.6612870000000001, - 0.688064, - 0.681895, - 0.634714, - 0.5456319999999999, - 0.416291, - 0.240926, - 0.03325, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007326, - 0.06472199999999999, - 0.21662700000000001, - 0.381856, - 0.5063070000000001, - 0.600094, - 0.663378, - 0.687422, - 0.536577, - 0.625291, - 0.531554, - 0.40182, - 0.223405, - 0.024625, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007567, - 0.07642700000000001, - 0.21968100000000002, - 0.38323, - 0.514033, - 0.617521, - 0.685303, - 0.716216, - 0.702542, - 0.6519980000000001, - 0.5560069999999999, - 0.42899400000000004, - 0.245564, - 0.030533, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007042, - 0.06167, - 0.229599, - 0.413868, - 0.5517329999999999, - 0.659461, - 0.7268450000000001, - 0.7516849999999999, - 0.7405109999999999, - 0.6842480000000001, - 0.583973, - 0.447127, - 0.25920499999999996, - 0.035338999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004764, - 0.055043, - 0.224062, - 0.404715, - 0.538655, - 0.63849, - 0.706203, - 0.734191, - 0.7212759999999999, - 0.667336, - 0.5711390000000001, - 0.438008, - 0.252701, - 0.030973, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0047599999999999995, - 0.054426999999999996, - 0.224475, - 0.402048, - 0.5325599999999999, - 0.627257, - 0.695392, - 0.726533, - 0.717384, - 0.666227, - 0.572203, - 0.442719, - 0.256584, - 0.033412, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004216, - 0.052094999999999995, - 0.220697, - 0.398346, - 0.531594, - 0.632377, - 0.700716, - 0.7318600000000001, - 0.719756, - 0.668351, - 0.571296, - 0.439572, - 0.252611, - 0.031008, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0036829999999999996, - 0.050256999999999996, - 0.21713, - 0.392427, - 0.525606, - 0.626377, - 0.694378, - 0.725244, - 0.7141810000000001, - 0.663138, - 0.568378, - 0.435198, - 0.24833000000000002, - 0.023727, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004335, - 0.050002000000000005, - 0.213032, - 0.393902, - 0.532775, - 0.6357619999999999, - 0.702981, - 0.728284, - 0.7184149999999999, - 0.663099, - 0.565469, - 0.43176299999999995, - 0.243642, - 0.022482, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003791, - 0.048428, - 0.204373, - 0.377019, - 0.5076080000000001, - 0.604583, - 0.6661889999999999, - 0.69101, - 0.680314, - 0.6247440000000001, - 0.531103, - 0.40528, - 0.225583, - 0.016439, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003758, - 0.046801, - 0.20019800000000001, - 0.371987, - 0.49792899999999995, - 0.59409, - 0.658101, - 0.685132, - 0.6775829999999999, - 0.626972, - 0.534963, - 0.402933, - 0.22134600000000001, - 0.014374000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003262, - 0.045433, - 0.196762, - 0.36493000000000003, - 0.476262, - 0.49000900000000003, - 0.6547949999999999, - 0.6787859999999999, - 0.5678479999999999, - 0.46218400000000004, - 0.456867, - 0.35245800000000005, - 0.170882, - 0.006575999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0027879999999999997, - 0.054009999999999996, - 0.194489, - 0.36103500000000005, - 0.490622, - 0.584336, - 0.646562, - 0.672489, - 0.660828, - 0.6102759999999999, - 0.512532, - 0.36214100000000005, - 0.176904, - 0.001553, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002406, - 0.050725, - 0.192762, - 0.357108, - 0.483731, - 0.5708529999999999, - 0.631505, - 0.65661, - 0.644574, - 0.593099, - 0.49446300000000004, - 0.350029, - 0.168821, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003706, - 0.048502, - 0.189285, - 0.35517899999999997, - 0.484437, - 0.5843189999999999, - 0.6475700000000001, - 0.675353, - 0.665142, - 0.612852, - 0.515073, - 0.375712, - 0.18917799999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0037029999999999997, - 0.042332, - 0.192302, - 0.363353, - 0.49793200000000004, - 0.599075, - 0.664736, - 0.6931430000000001, - 0.6805410000000001, - 0.626222, - 0.532006, - 0.395277, - 0.20530099999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004319, - 0.052997999999999997, - 0.19627699999999998, - 0.376267, - 0.46911, - 0.6151810000000001, - 0.6267619999999999, - 0.706585, - 0.694014, - 0.637019, - 0.538375, - 0.400648, - 0.20827099999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003241, - 0.038249000000000005, - 0.198876, - 0.377471, - 0.510808, - 0.6074510000000001, - 0.673135, - 0.701861, - 0.686087, - 0.631721, - 0.533034, - 0.39372199999999996, - 0.20063399999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002592, - 0.036761, - 0.19174000000000002, - 0.369363, - 0.502275, - 0.597449, - 0.65742, - 0.681772, - 0.668782, - 0.613255, - 0.5174160000000001, - 0.376277, - 0.180744, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002052, - 0.035203000000000005, - 0.188702, - 0.36727699999999996, - 0.5019669999999999, - 0.601668, - 0.664197, - 0.685483, - 0.674395, - 0.615738, - 0.514505, - 0.375868, - 0.182801, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0021469999999999996, - 0.038194000000000006, - 0.193586, - 0.37768999999999997, - 0.518423, - 0.6197229999999999, - 0.686964, - 0.71156, - 0.6956760000000001, - 0.637334, - 0.536736, - 0.394197, - 0.194174, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0015609999999999999, - 0.034594, - 0.185645, - 0.362445, - 0.497731, - 0.597782, - 0.6618120000000001, - 0.6865119999999999, - 0.676207, - 0.618615, - 0.5189400000000001, - 0.37817500000000004, - 0.18138200000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.000907, - 0.036285, - 0.175542, - 0.345342, - 0.483011, - 0.583451, - 0.648404, - 0.6755890000000001, - 0.573597, - 0.518734, - 0.421162, - 0.345314, - 0.15546000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.04517, - 0.17676499999999998, - 0.32343099999999997, - 0.437333, - 0.568831, - 0.558592, - 0.547962, - 0.560021, - 0.164274, - 0.10155299999999999, - 0.291916, - 0.139462, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.035252000000000006, - 0.170131, - 0.33770999999999995, - 0.47226799999999997, - 0.573342, - 0.637828, - 0.662858, - 0.651032, - 0.596071, - 0.493921, - 0.354643, - 0.15862700000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028522, - 0.17037799999999997, - 0.337829, - 0.463931, - 0.560914, - 0.624885, - 0.6509790000000001, - 0.639492, - 0.584874, - 0.48953199999999997, - 0.349303, - 0.15633699999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027691, - 0.16730799999999998, - 0.330109, - 0.452658, - 0.54118, - 0.5947279999999999, - 0.616545, - 0.607677, - 0.397238, - 0.269435, - 0.295717, - 0.136834, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.040216999999999996, - 0.16489099999999998, - 0.32980200000000004, - 0.46308699999999997, - 0.5653360000000001, - 0.6303909999999999, - 0.655085, - 0.320444, - 0.033862, - 0.474746, - 0.062027, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034892000000000006, - 0.161831, - 0.31729599999999997, - 0.44262999999999997, - 0.541862, - 0.599178, - 0.622563, - 0.611761, - 0.489734, - 0.39599900000000005, - 0.347311, - 0.143767, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026693, - 0.169374, - 0.34151299999999996, - 0.476358, - 0.574286, - 0.639289, - 0.6667029999999999, - 0.652805, - 0.595031, - 0.491558, - 0.344903, - 0.140491, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026033, - 0.168294, - 0.337534, - 0.45926999999999996, - 0.556965, - 0.618957, - 0.18812, - 0.02104, - 0.016468, - 0.480293, - 0.335435, - 0.133781, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02579, - 0.16270199999999999, - 0.332988, - 0.47118400000000005, - 0.568487, - 0.629327, - 0.6509020000000001, - 0.245273, - 0.206608, - 0.049485, - 0.209151, - 0.12247, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031414000000000004, - 0.15953299999999998, - 0.33054300000000003, - 0.464935, - 0.560757, - 0.6183930000000001, - 0.638304, - 0.620093, - 0.558686, - 0.457343, - 0.30601, - 0.106708, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026607, - 0.156634, - 0.323895, - 0.456745, - 0.550177, - 0.605601, - 0.624024, - 0.604309, - 0.5461520000000001, - 0.16786500000000001, - 0.302014, - 0.02018, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026334, - 0.154117, - 0.32475, - 0.4595, - 0.55892, - 0.6207910000000001, - 0.645293, - 0.629435, - 0.568341, - 0.46151400000000004, - 0.310092, - 0.104004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027600000000000003, - 0.155311, - 0.325521, - 0.46307, - 0.5626530000000001, - 0.6249410000000001, - 0.6499969999999999, - 0.633167, - 0.567286, - 0.453003, - 0.297554, - 0.09295300000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024682, - 0.164114, - 0.348082, - 0.495145, - 0.598496, - 0.661555, - 0.683888, - 0.6691950000000001, - 0.6033740000000001, - 0.492473, - 0.325659, - 0.108192, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026834, - 0.166578, - 0.35272899999999996, - 0.501888, - 0.6054360000000001, - 0.670665, - 0.689557, - 0.668762, - 0.6023740000000001, - 0.49011, - 0.328067, - 0.108168, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02573, - 0.15929300000000002, - 0.334464, - 0.477094, - 0.582044, - 0.647531, - 0.670793, - 0.651664, - 0.589489, - 0.482098, - 0.322257, - 0.105977, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020762, - 0.152944, - 0.331853, - 0.470142, - 0.567444, - 0.62151, - 0.631593, - 0.6006739999999999, - 0.5345059999999999, - 0.437367, - 0.29520100000000005, - 0.09419799999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023177, - 0.148685, - 0.320337, - 0.45677100000000004, - 0.550944, - 0.603688, - 0.61462, - 0.58198, - 0.5214059999999999, - 0.425195, - 0.280435, - 0.07986499999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028735, - 0.145049, - 0.316523, - 0.4555, - 0.552803, - 0.614398, - 0.636577, - 0.614232, - 0.5455760000000001, - 0.42998200000000003, - 0.24566300000000002, - 0.049561999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.041433, - 0.160016, - 0.32043, - 0.45470499999999997, - 0.561686, - 0.6248630000000001, - 0.642989, - 0.624125, - 0.547856, - 0.41922699999999996, - 0.27246, - 0.060986, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028337, - 0.15812600000000002, - 0.350606, - 0.510111, - 0.624958, - 0.6937000000000001, - 0.7137279999999999, - 0.690329, - 0.614171, - 0.491234, - 0.316239, - 0.084751, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019629, - 0.15628299999999998, - 0.356049, - 0.517777, - 0.628539, - 0.696067, - 0.7155739999999999, - 0.686437, - 0.612634, - 0.49401999999999996, - 0.316144, - 0.078977, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019627, - 0.15236000000000002, - 0.34830700000000003, - 0.502654, - 0.610303, - 0.673176, - 0.687809, - 0.660211, - 0.5882179999999999, - 0.47154700000000005, - 0.30415699999999996, - 0.07146, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018670000000000003, - 0.145079, - 0.330868, - 0.47529899999999997, - 0.571699, - 0.627418, - 0.641167, - 0.612177, - 0.55034, - 0.445312, - 0.283765, - 0.055082, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025106000000000003, - 0.143262, - 0.32313400000000003, - 0.473189, - 0.583905, - 0.649033, - 0.671961, - 0.647969, - 0.579321, - 0.45743, - 0.282055, - 0.045747, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019072, - 0.142363, - 0.334135, - 0.483382, - 0.582794, - 0.638775, - 0.650051, - 0.618949, - 0.5502659999999999, - 0.43764600000000003, - 0.275989, - 0.04523, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016972, - 0.135246, - 0.318172, - 0.467005, - 0.569397, - 0.632992, - 0.652594, - 0.624049, - 0.551647, - 0.431859, - 0.258183, - 0.034454, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.03392, - 0.143803, - 0.308653, - 0.45469400000000004, - 0.577493, - 0.646537, - 0.6692380000000001, - 0.643913, - 0.573372, - 0.45510700000000004, - 0.27647000000000005, - 0.038785, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016808, - 0.13670500000000002, - 0.333642, - 0.493114, - 0.6011040000000001, - 0.6654650000000001, - 0.682093, - 0.653157, - 0.577509, - 0.45358800000000005, - 0.27064, - 0.034713, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016625, - 0.133047, - 0.32539100000000004, - 0.4801, - 0.582109, - 0.641714, - 0.653683, - 0.622869, - 0.54818, - 0.430955, - 0.257235, - 0.030501999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017327000000000002, - 0.129498, - 0.31838, - 0.469942, - 0.572837, - 0.630892, - 0.6420950000000001, - 0.610179, - 0.539514, - 0.424291, - 0.250843, - 0.024068000000000003, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018748, - 0.123722, - 0.298673, - 0.446699, - 0.549755, - 0.612206, - 0.632017, - 0.611423, - 0.542318, - 0.424784, - 0.246139, - 0.019591, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016309, - 0.122647, - 0.306, - 0.453239, - 0.551635, - 0.609603, - 0.623991, - 0.5995309999999999, - 0.532038, - 0.41683, - 0.240323, - 0.017745999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021582, - 0.115642, - 0.263413, - 0.454755, - 0.491541, - 0.49435700000000005, - 0.530594, - 0.39805, - 0.2035, - 0.416812, - 0.237353, - 0.012351, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020507, - 0.120211, - 0.290563, - 0.43057999999999996, - 0.491247, - 0.541956, - 0.5486409999999999, - 0.49662599999999996, - 0.38991899999999996, - 0.278353, - 0.09794, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019234, - 0.117404, - 0.291497, - 0.39809500000000003, - 0.49853800000000004, - 0.503397, - 0.344077, - 0.419796, - 0.26274400000000003, - 0.27703, - 0.048600000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014146, - 0.108515, - 0.279557, - 0.425545, - 0.525098, - 0.586424, - 0.607817, - 0.582203, - 0.510394, - 0.39167399999999997, - 0.21320699999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026803, - 0.109038, - 0.27809100000000003, - 0.42567, - 0.5247050000000001, - 0.585491, - 0.6059640000000001, - 0.580659, - 0.508039, - 0.38935899999999996, - 0.210395, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015934, - 0.10765000000000001, - 0.28364, - 0.43655700000000003, - 0.5409149999999999, - 0.601958, - 0.622989, - 0.5934619999999999, - 0.516301, - 0.38929199999999997, - 0.20306, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021373999999999997, - 0.113966, - 0.294193, - 0.452386, - 0.5606789999999999, - 0.623184, - 0.640541, - 0.610893, - 0.399771, - 0.275714, - 0.012269, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021675999999999997, - 0.054216, - 0.188391, - 0.457881, - 0.320547, - 0.628421, - 0.645186, - 0.146784, - 0.210635, - 0.409476, - 0.003243, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016558, - 0.110849, - 0.30462900000000004, - 0.46896899999999997, - 0.574121, - 0.636926, - 0.10100100000000001, - 0.22568000000000002, - 0.013538999999999999, - 0.020867, - 0.105484, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014417999999999999, - 0.108964, - 0.296205, - 0.45997899999999997, - 0.562276, - 0.620347, - 0.630869, - 0.595223, - 0.517557, - 0.385719, - 0.191909, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015006, - 0.103364, - 0.285589, - 0.444543, - 0.546606, - 0.601958, - 0.613777, - 0.5816330000000001, - 0.506781, - 0.38399700000000003, - 0.19004400000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013465999999999999, - 0.099857, - 0.28169, - 0.436247, - 0.527183, - 0.5742430000000001, - 0.5840270000000001, - 0.5545739999999999, - 0.484151, - 0.368274, - 0.183171, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014198, - 0.096846, - 0.271457, - 0.428192, - 0.45867399999999997, - 0.500135, - 0.596468, - 0.5606749999999999, - 0.480524, - 0.35158999999999996, - 0.165744, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012844, - 0.093041, - 0.268944, - 0.426606, - 0.522905, - 0.5766939999999999, - 0.5883339999999999, - 0.555363, - 0.48060899999999995, - 0.355602, - 0.164939, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012572, - 0.088457, - 0.267779, - 0.425342, - 0.524646, - 0.582369, - 0.5960080000000001, - 0.5633980000000001, - 0.484224, - 0.356865, - 0.167806, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012602, - 0.088533, - 0.265461, - 0.417996, - 0.510648, - 0.55791, - 0.560605, - 0.526474, - 0.460067, - 0.343534, - 0.160415, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011151, - 0.085096, - 0.25358, - 0.35207900000000003, - 0.448166, - 0.544276, - 0.498214, - 0.435467, - 0.463183, - 0.293525, - 0.142041, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014341, - 0.09349500000000001, - 0.249924, - 0.395438, - 0.492132, - 0.5464600000000001, - 0.5587519999999999, - 0.539678, - 0.462428, - 0.330882, - 0.131966, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011526, - 0.08245699999999999, - 0.24977000000000002, - 0.403973, - 0.506021, - 0.56638, - 0.5811839999999999, - 0.550513, - 0.472715, - 0.33954500000000004, - 0.14180600000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01084, - 0.07956300000000001, - 0.254581, - 0.41196, - 0.514171, - 0.569572, - 0.577404, - 0.539989, - 0.461469, - 0.329453, - 0.137042, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010066, - 0.078899, - 0.254035, - 0.414891, - 0.517042, - 0.571585, - 0.578798, - 0.539216, - 0.46134800000000004, - 0.330572, - 0.134604, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01093, - 0.078538, - 0.249608, - 0.401886, - 0.5041789999999999, - 0.564115, - 0.580937, - 0.547063, - 0.467524, - 0.331009, - 0.12099800000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011654999999999999, - 0.079303, - 0.248606, - 0.402495, - 0.503517, - 0.556442, - 0.563722, - 0.531046, - 0.45588, - 0.32256599999999996, - 0.11188, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010865, - 0.076034, - 0.244171, - 0.396067, - 0.493348, - 0.5422, - 0.547591, - 0.513729, - 0.438987, - 0.30879399999999996, - 0.109361, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00977, - 0.070588, - 0.239925, - 0.397959, - 0.501992, - 0.559274, - 0.570064, - 0.5356420000000001, - 0.454618, - 0.315698, - 0.11948600000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0074470000000000005, - 0.06843300000000001, - 0.23627199999999998, - 0.392712, - 0.494585, - 0.548917, - 0.55651, - 0.52218, - 0.442584, - 0.307125, - 0.10916500000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008605999999999999, - 0.07181399999999999, - 0.22759700000000002, - 0.376847, - 0.480923, - 0.536458, - 0.544621, - 0.462384, - 0.255008, - 0.18303, - 0.052302999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008112, - 0.074227, - 0.228525, - 0.379503, - 0.48598899999999995, - 0.540726, - 0.548909, - 0.5126369999999999, - 0.418508, - 0.270399, - 0.077764, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007749, - 0.072157, - 0.23093, - 0.393192, - 0.507895, - 0.574299, - 0.592947, - 0.559925, - 0.476735, - 0.324141, - 0.110494, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006375, - 0.063473, - 0.23783, - 0.40561, - 0.5158959999999999, - 0.572276, - 0.5803809999999999, - 0.5455270000000001, - 0.46213600000000005, - 0.317813, - 0.108598, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005873000000000001, - 0.062871, - 0.234459, - 0.40124200000000004, - 0.510193, - 0.565258, - 0.572484, - 0.530956, - 0.44592200000000004, - 0.301738, - 0.09847199999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005915, - 0.059368000000000004, - 0.225094, - 0.385496, - 0.49349, - 0.548102, - 0.557685, - 0.5205890000000001, - 0.437167, - 0.29258, - 0.090475, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004703000000000001, - 0.055111, - 0.218488, - 0.37741199999999997, - 0.47995, - 0.532036, - 0.538789, - 0.363999, - 0.38389100000000004, - 0.227379, - 0.083725, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004203999999999999, - 0.052469999999999996, - 0.21352600000000002, - 0.29968900000000004, - 0.463871, - 0.519541, - 0.532817, - 0.502014, - 0.425288, - 0.282097, - 0.030282, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003858, - 0.051325, - 0.212505, - 0.376122, - 0.438087, - 0.368165, - 0.29334, - 0.5191749999999999, - 0.324235, - 0.257587, - 0.059719, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0062439999999999996, - 0.052503999999999995, - 0.20984999999999998, - 0.367564, - 0.480248, - 0.534892, - 0.544263, - 0.513831, - 0.432278, - 0.285289, - 0.075557, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004954, - 0.046594000000000003, - 0.214917, - 0.384074, - 0.50219, - 0.563211, - 0.572528, - 0.5340280000000001, - 0.44286000000000003, - 0.28978, - 0.071302, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00491, - 0.044882, - 0.206732, - 0.370012, - 0.483969, - 0.542529, - 0.552166, - 0.5142559999999999, - 0.427908, - 0.273356, - 0.061175, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00357, - 0.041860999999999995, - 0.193623, - 0.354693, - 0.467247, - 0.5265449999999999, - 0.536374, - 0.5005269999999999, - 0.414008, - 0.26695800000000003, - 0.056743, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0034980000000000002, - 0.041569, - 0.19050899999999998, - 0.348361, - 0.456297, - 0.509165, - 0.517521, - 0.48199200000000003, - 0.402836, - 0.262621, - 0.054134999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0022679999999999996, - 0.038299999999999994, - 0.18518, - 0.34039299999999995, - 0.44513600000000003, - 0.5011059999999999, - 0.5129130000000001, - 0.480226, - 0.399575, - 0.256271, - 0.05111, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004099, - 0.038267, - 0.1827, - 0.338233, - 0.445761, - 0.499092, - 0.505823, - 0.4704, - 0.387678, - 0.243505, - 0.043196, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.001676, - 0.036893999999999996, - 0.178303, - 0.325515, - 0.428697, - 0.488695, - 0.396478, - 0.473273, - 0.39199599999999996, - 0.24518500000000001, - 0.043558, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034561999999999996, - 0.179637, - 0.339231, - 0.45571100000000003, - 0.514064, - 0.5262619999999999, - 0.489147, - 0.402827, - 0.249267, - 0.040644, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.049726, - 0.178716, - 0.325857, - 0.442704, - 0.500263, - 0.511724, - 0.354949, - 0.375467, - 0.222405, - 0.003354, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.047223, - 0.148445, - 0.323146, - 0.439634, - 0.498572, - 0.510965, - 0.477673, - 0.392849, - 0.243228, - 0.03993, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.049329, - 0.147431, - 0.317873, - 0.431045, - 0.420798, - 0.393041, - 0.33304300000000003, - 0.289225, - 0.16048300000000001, - 0.003283, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024513, - 0.166, - 0.246484, - 0.439305, - 0.501231, - 0.5159980000000001, - 0.482465, - 0.39541899999999996, - 0.240694, - 0.014435, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034071, - 0.163575, - 0.319574, - 0.435334, - 0.49550900000000003, - 0.508188, - 0.47224700000000003, - 0.384277, - 0.23274799999999998, - 0.030787, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028053, - 0.170239, - 0.342827, - 0.468118, - 0.530691, - 0.5413479999999999, - 0.5046809999999999, - 0.41410399999999997, - 0.252604, - 0.036179, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027036, - 0.160808, - 0.32417399999999996, - 0.445446, - 0.5066700000000001, - 0.518914, - 0.480599, - 0.392736, - 0.198436, - 0.008966, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.04329, - 0.137412, - 0.318168, - 0.356483, - 0.422142, - 0.29512700000000003, - 0.22827799999999998, - 0.10830500000000001, - 0.19349100000000002, - 0.007622, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024626000000000002, - 0.127847, - 0.300428, - 0.32883999999999997, - 0.369216, - 0.174101, - 0.465995, - 0.377093, - 0.223878, - 0.021969000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023608, - 0.14851699999999998, - 0.304599, - 0.423184, - 0.41639, - 0.375704, - 0.341638, - 0.175588, - 0.069423, - 0.001113, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021927, - 0.145751, - 0.303068, - 0.420722, - 0.48135700000000003, - 0.49212700000000004, - 0.45594799999999996, - 0.368293, - 0.218803, - 0.0224, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038405, - 0.128071, - 0.240071, - 0.406428, - 0.472225, - 0.486372, - 0.454152, - 0.36651100000000003, - 0.152801, - 0.007687, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019294000000000002, - 0.1426, - 0.30772000000000005, - 0.433716, - 0.501486, - 0.515053, - 0.478765, - 0.38622, - 0.231026, - 0.008407, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0358, - 0.13858199999999998, - 0.30002, - 0.42083, - 0.488451, - 0.504079, - 0.471794, - 0.38372300000000004, - 0.230656, - 0.024569, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.03504, - 0.136912, - 0.29262299999999997, - 0.40756099999999995, - 0.47457, - 0.490066, - 0.456538, - 0.366999, - 0.219945, - 0.022914999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031671, - 0.129879, - 0.28530399999999995, - 0.400046, - 0.457351, - 0.46839400000000003, - 0.441003, - 0.357495, - 0.217243, - 0.024175000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031918, - 0.11557200000000001, - 0.225499, - 0.337966, - 0.366031, - 0.36238600000000004, - 0.420497, - 0.34575599999999995, - 0.206517, - 0.018195, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031004, - 0.11271099999999999, - 0.27783800000000003, - 0.398197, - 0.468519, - 0.485074, - 0.456695, - 0.36794499999999997, - 0.221658, - 0.023382, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018123, - 0.123852, - 0.277043, - 0.39824, - 0.468375, - 0.48373700000000003, - 0.452926, - 0.362011, - 0.100378, - 0.001062, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015433, - 0.1003, - 0.169103, - 0.012362, - 0.069453, - 0.02618, - 0.032836, - 0.089752, - 0.057529000000000004, - 0.018931, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019308, - 0.11791800000000001, - 0.23688800000000002, - 0.33281099999999997, - 0.35771600000000003, - 0.388589, - 0.294707, - 0.133349, - 0.020681, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02978, - 0.081661, - 0.081497, - 0.127044, - 0.30551100000000003, - 0.30452100000000004, - 0.349049, - 0.27181900000000003, - 0.19911199999999998, - 0.008417999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019417, - 0.00507, - 0.269522, - 0.25605500000000003, - 0.31869, - 0.355527, - 0.192547, - 0.005702, - 0.212474, - 0.00495, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016727, - 0.115767, - 0.276733, - 0.407408, - 0.483899, - 0.501855, - 0.470854, - 0.377678, - 0.219218, - 0.00566, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016395, - 0.110535, - 0.264308, - 0.388204, - 0.461442, - 0.396701, - 0.44893299999999997, - 0.258955, - 0.16026300000000002, - 0.015656, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015242, - 0.107361, - 0.265229, - 0.38938, - 0.463727, - 0.480802, - 0.326678, - 0.35862700000000003, - 0.210562, - 0.01691, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014320000000000001, - 0.10586799999999999, - 0.26651400000000003, - 0.39705, - 0.474051, - 0.49103600000000003, - 0.460149, - 0.368087, - 0.214315, - 0.017287, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017095, - 0.10795199999999999, - 0.269247, - 0.363124, - 0.415662, - 0.487822, - 0.37482, - 0.365502, - 0.21853999999999998, - 0.019392, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016571000000000002, - 0.103965, - 0.25855700000000004, - 0.388065, - 0.467049, - 0.491435, - 0.202034, - 0.139657, - 0.212981, - 0.016862, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017519, - 0.104399, - 0.223208, - 0.26349, - 0.461322, - 0.027924, - 0.18437, - 0.075902, - 0.114093, - 0.01255, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014461, - 0.100655, - 0.261627, - 0.392564, - 0.474194, - 0.494601, - 0.46223000000000003, - 0.370999, - 0.22018100000000002, - 0.020017, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012962, - 0.096459, - 0.258548, - 0.391909, - 0.47139299999999995, - 0.490476, - 0.460296, - 0.369682, - 0.219828, - 0.02145, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014534, - 0.09214499999999999, - 0.249162, - 0.373382, - 0.443996, - 0.46560700000000005, - 0.43911, - 0.35534, - 0.212071, - 0.019731000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015982, - 0.093087, - 0.247673, - 0.30356299999999997, - 0.344598, - 0.34093900000000005, - 0.077362, - 0.274238, - 0.21615, - 0.006972000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013977999999999999, - 0.092719, - 0.25410499999999997, - 0.39049700000000004, - 0.47460199999999997, - 0.498553, - 0.47124099999999997, - 0.381393, - 0.229847, - 0.027805, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012282, - 0.090195, - 0.249362, - 0.379623, - 0.457867, - 0.478224, - 0.45105700000000004, - 0.366059, - 0.22231499999999998, - 0.008119999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015318, - 0.067986, - 0.239786, - 0.313183, - 0.36279199999999995, - 0.472178, - 0.40834899999999996, - 0.36400099999999996, - 0.219602, - 0.026751, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01312, - 0.089171, - 0.24725999999999998, - 0.377116, - 0.455316, - 0.476594, - 0.448678, - 0.365416, - 0.223308, - 0.026364000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01299, - 0.08673099999999999, - 0.240145, - 0.36300099999999996, - 0.43370299999999995, - 0.45855399999999996, - 0.43380599999999997, - 0.352288, - 0.21258600000000002, - 0.021421, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017677, - 0.085305, - 0.17767, - 0.32278500000000004, - 0.446299, - 0.38473, - 0.459871, - 0.37632600000000005, - 0.228691, - 0.022157, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013106, - 0.084346, - 0.237018, - 0.36603600000000003, - 0.3561, - 0.473454, - 0.447892, - 0.36342599999999997, - 0.21998900000000002, - 0.027123, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012423, - 0.08306699999999999, - 0.236769, - 0.365106, - 0.444654, - 0.46827199999999997, - 0.279446, - 0.304064, - 0.092012, - 0.003676, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010861, - 0.08023999999999999, - 0.23147399999999999, - 0.363142, - 0.444095, - 0.468506, - 0.445505, - 0.325445, - 0.22001300000000001, - 0.012516, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010676999999999999, - 0.08087699999999999, - 0.244512, - 0.38294799999999996, - 0.466282, - 0.402357, - 0.327062, - 0.266517, - 0.11505800000000001, - 0.006304000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010734, - 0.079748, - 0.241654, - 0.37618, - 0.38869600000000004, - 0.432772, - 0.461676, - 0.38021499999999997, - 0.240602, - 0.040451999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009797, - 0.07568899999999999, - 0.230685, - 0.301072, - 0.360999, - 0.358965, - 0.315016, - 0.241184, - 0.116732, - 0.006809999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015914, - 0.075569, - 0.127181, - 0.229742, - 0.335644, - 0.389944, - 0.296982, - 0.174226, - 0.226387, - 0.016794, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008386, - 0.077758, - 0.19381299999999999, - 0.230327, - 0.145797, - 0.137462, - 0.04218, - 0.09569799999999999, - 0.077393, - 0.004096, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01494, - 0.007328, - 0.126896, - 0.080486, - 0.118131, - 0.048034999999999994, - 0.10512, - 0.280267, - 0.057217, - 0.034523000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012052, - 0.04059599999999999, - 0.14897, - 0.051662, - 0.141411, - 0.144173, - 0.124481, - 0.089459, - 0.077465, - 0.005256, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011965, - 0.07634300000000001, - 0.225717, - 0.361714, - 0.446392, - 0.373714, - 0.336951, - 0.37846199999999997, - 0.176695, - 0.054952, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "annual_energy_produced_kwh_bau": 45938.58, - "electric_to_load_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.393, - 2.139, - 6.711, - 10.65, - 13.116, - 13.94, - 13.336, - 11.106, - 7.211, - 1.56, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.389, - 2.138, - 6.783, - 10.767, - 13.284, - 14.135, - 13.449, - 11.252, - 7.357, - 0.248, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.388, - 2.256, - 6.862, - 11.003, - 13.68, - 14.574, - 13.999, - 11.734, - 7.738, - 1.735, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.28, - 2.201, - 6.947, - 11.0, - 13.516, - 14.351, - 13.743, - 11.52, - 7.619, - 1.719, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.384, - 2.152, - 6.757, - 10.682, - 13.15, - 13.963, - 11.042, - 7.914, - 7.479, - 0.926, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.349, - 2.145, - 6.675, - 8.171, - 9.19, - 11.085, - 13.264, - 11.208, - 7.503, - 1.818, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.252, - 2.079, - 6.57, - 10.44, - 12.913, - 13.78, - 13.292, - 11.197, - 7.442, - 1.884, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.255, - 2.174, - 6.895, - 11.102, - 13.818, - 14.726, - 14.17, - 12.047, - 8.063, - 2.193, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.388, - 2.277, - 6.795, - 10.789, - 13.371, - 14.24, - 13.733, - 11.668, - 7.912, - 2.297, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.354, - 2.106, - 6.741, - 9.333, - 10.322, - 12.222, - 9.539, - 8.85, - 5.166, - 0.881, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.152, - 0.888, - 3.869, - 10.244, - 12.813, - 11.247, - 10.752, - 11.368, - 7.01, - 2.344, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.327, - 2.193, - 6.802, - 10.79, - 13.356, - 14.223, - 13.649, - 11.635, - 7.953, - 2.559, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.301, - 2.182, - 6.756, - 10.633, - 13.149, - 14.054, - 13.614, - 11.689, - 8.003, - 2.56, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.275, - 2.193, - 6.93, - 10.976, - 11.546, - 11.029, - 10.368, - 10.168, - 6.617, - 2.894, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.395, - 2.188, - 6.53, - 8.555, - 10.898, - 8.016, - 13.363, - 5.576, - 0.874, - 0.574, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.303, - 2.268, - 6.719, - 10.762, - 13.353, - 14.312, - 13.895, - 11.942, - 8.226, - 2.891, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.285, - 2.199, - 6.661, - 10.517, - 13.037, - 11.542, - 13.602, - 11.782, - 8.152, - 2.981, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.377, - 2.315, - 5.366, - 9.195, - 11.202, - 11.629, - 8.707, - 7.932, - 3.933, - 0.606, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.417, - 1.318, - 4.194, - 6.647, - 6.872, - 14.206, - 13.834, - 7.7, - 5.937, - 0.603, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.366, - 2.396, - 6.983, - 11.045, - 13.665, - 7.462, - 1.81, - 2.555, - 0.27, - 0.388, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.488, - 2.523, - 6.167, - 9.515, - 11.238, - 12.132, - 10.105, - 8.0, - 7.165, - 3.518, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.326, - 2.432, - 7.138, - 11.09, - 13.686, - 14.685, - 14.239, - 12.407, - 8.879, - 3.554, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.342, - 2.429, - 7.005, - 8.753, - 11.325, - 11.047, - 10.582, - 9.727, - 6.237, - 1.297, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.519, - 2.526, - 4.133, - 6.252, - 6.659, - 7.151, - 6.172, - 2.509, - 1.343, - 0.531, - 0.0, - 0.0, - 0.0, - 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.625, - 3.865, - 3.047, - 4.929, - 0.164, - 15.006, - 13.092, - 9.328, - 3.833, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.546, - 2.763, - 6.495, - 0.785, - 11.368, - 11.842, - 10.208, - 0.395, - 8.907, - 3.315, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.491, - 3.036, - 8.122, - 12.549, - 15.281, - 16.302, - 15.9, - 14.03, - 10.212, - 4.517, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.348, - 2.87, - 8.053, - 12.375, - 15.041, - 16.095, - 15.668, - 13.739, - 10.072, - 4.562, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.363, - 2.859, - 7.956, - 12.078, - 14.518, - 15.421, - 11.934, - 11.35, - 6.11, - 1.821, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.634, - 2.917, - 7.797, - 10.204, - 12.198, - 12.846, - 12.08, - 10.559, - 7.564, - 2.484, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.772, - 5.337, - 8.618, - 15.08, - 16.231, - 15.865, - 13.965, - 10.328, - 4.097, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.702, - 3.282, - 7.869, - 11.784, - 14.177, - 15.271, - 15.02, - 13.395, - 9.964, - 4.439, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.499, - 3.22, - 8.464, - 10.853, - 12.737, - 12.899, - 15.745, - 13.852, - 10.452, - 5.204, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.421, - 3.254, - 8.399, - 12.582, - 15.069, - 16.047, - 15.608, - 13.851, - 10.495, - 5.314, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.453, - 3.165, - 8.231, - 12.374, - 14.82, - 15.827, - 15.394, - 13.638, - 10.324, - 5.189, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.783, - 3.059, - 6.362, - 10.291, - 12.238, - 12.175, - 10.885, - 10.462, - 6.664, - 2.291, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.481, - 3.317, - 8.217, - 12.263, - 14.739, - 15.856, - 13.287, - 11.428, - 8.656, - 3.631, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.804, - 3.259, - 7.086, - 10.311, - 13.098, - 11.693, - 11.254, - 9.139, - 8.106, - 3.361, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.815, - 3.158, - 6.541, - 8.161, - 7.599, - 11.716, - 12.436, - 8.18, - 6.953, - 2.262, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.621, - 3.357, - 7.118, - 9.303, - 11.952, - 4.623, - 5.121, - 3.019, - 2.513, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.685, - 3.213, - 2.533, - 5.246, - 11.141, - 10.912, - 12.093, - 10.522, - 8.377, - 1.532, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 3.761, - 8.813, - 13.056, - 15.595, - 16.741, - 16.364, - 14.625, - 11.161, - 5.741, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.854, - 4.051, - 7.057, - 12.99, - 15.485, - 16.584, - 16.375, - 14.566, - 11.116, - 0.457, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.613, - 4.074, - 9.209, - 7.628, - 15.92, - 17.066, - 16.792, - 15.024, - 9.23, - 6.072, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.586, - 4.19, - 9.54, - 13.854, - 16.428, - 17.509, - 17.162, - 15.302, - 11.923, - 6.524, - 0.0, - 0.0, - 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.051, - 4.214, - 9.483, - 13.497, - 15.872, - 16.874, - 16.425, - 14.634, - 11.381, - 6.312, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.504, - 4.155, - 9.298, - 13.339, - 15.764, - 16.865, - 16.544, - 14.78, - 11.533, - 6.29, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.58, - 4.299, - 9.436, - 13.574, - 15.965, - 16.947, - 16.57, - 14.72, - 9.633, - 1.565, - 0.0, - 0.0, - 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.169, - 4.02, - 7.013, - 9.735, - 9.228, - 6.415, - 11.417, - 11.418, - 8.929, - 4.456, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.862, - 0.685, - 0.905, - 3.051, - 13.731, - 12.038, - 15.057, - 11.841, - 6.623, - 0.263, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.714, - 4.73, - 9.829, - 13.813, - 16.194, - 17.257, - 16.972, - 15.329, - 12.038, - 6.954, - 0.399, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.902, - 4.804, - 9.698, - 13.497, - 15.953, - 17.135, - 16.977, - 15.388, - 12.21, - 7.109, - 0.495, - 0.0, - 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.039, - 3.407, - 3.917, - 2.849, - 11.696, - 14.043, - 13.374, - 10.835, - 8.655, - 4.429, - 0.072, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.798, - 5.358, - 11.068, - 15.352, - 18.023, - 19.242, - 18.997, - 17.17, - 13.694, - 8.097, - 0.254, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.797, - 5.333, - 10.831, - 14.815, - 16.968, - 17.706, - 17.106, - 15.53, - 12.682, - 7.74, - 0.266, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.863, - 5.325, - 10.72, - 14.82, - 17.344, - 18.445, - 14.163, - 3.404, - 1.094, - 1.768, - 0.653, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.993, - 5.451, - 10.7, - 14.647, - 17.124, - 18.23, - 17.915, - 16.222, - 12.981, - 7.738, - 0.921, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.147, - 5.778, - 11.399, - 12.94, - 14.353, - 19.373, - 19.061, - 17.195, - 1.398, - 1.681, - 0.088, - 0.0, - 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.051, - 5.991, - 11.675, - 15.795, - 18.394, - 19.542, - 19.267, - 17.454, - 14.034, - 0.235, - 0.622, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.883, - 5.09, - 6.022, - 8.41, - 11.963, - 2.3, - 12.338, - 8.253, - 2.678, - 3.788, - 0.0, - 0.0, - 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.691, - 4.998, - 7.787, - 10.362, - 13.23, - 12.053, - 11.624, - 8.526, - 6.059, - 2.79, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.037, - 1.835, - 5.086, - 9.012, - 12.996, - 14.339, - 14.349, - 16.608, - 13.091, - 8.262, - 3.715, - 0.148, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.176, - 1.345, - 6.159, - 9.128, - 12.631, - 14.334, - 15.493, - 12.617, - 11.426, - 12.821, - 7.912, - 1.241, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.227, - 1.426, - 6.267, - 11.198, - 14.698, - 12.278, - 17.994, - 17.753, - 13.414, - 12.84, - 3.989, - 1.272, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.098, - 1.964, - 5.187, - 8.038, - 14.783, - 17.108, - 14.91, - 17.991, - 16.196, - 12.89, - 8.021, - 1.392, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.138, - 1.65, - 6.803, - 12.063, - 13.423, - 15.1, - 14.515, - 14.666, - 14.325, - 10.812, - 8.666, - 0.261, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.136, - 1.687, - 7.133, - 12.588, - 16.3, - 18.531, - 19.37, - 18.913, - 17.145, - 13.86, - 6.935, - 1.138, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.158, - 1.896, - 6.876, - 12.18, - 15.692, - 17.687, - 18.139, - 17.323, - 15.884, - 10.272, - 6.555, - 1.705, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.155, - 1.828, - 6.129, - 12.216, - 15.783, - 18.014, - 18.874, - 18.535, - 16.687, - 13.468, - 8.586, - 1.922, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.225, - 2.272, - 6.203, - 12.779, - 13.928, - 14.585, - 16.459, - 14.48, - 13.228, - 9.16, - 6.346, - 1.252, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.242, - 2.081, - 7.492, - 12.857, - 16.488, - 18.752, - 19.631, - 19.069, - 17.199, - 13.9, - 8.906, - 2.197, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.296, - 2.243, - 7.581, - 12.708, - 16.333, - 18.593, - 19.595, - 19.162, - 17.28, - 14.037, - 9.102, - 2.472, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.323, - 2.305, - 7.732, - 12.788, - 15.999, - 18.083, - 18.943, - 18.655, - 17.039, - 13.909, - 9.1, - 2.548, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.316, - 2.364, - 7.913, - 13.145, - 16.718, - 18.916, - 19.69, - 19.242, - 17.26, - 13.949, - 9.116, - 2.481, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.444, - 2.644, - 7.767, - 12.404, - 15.636, - 17.456, - 18.623, - 18.482, - 16.961, - 13.995, - 9.358, - 2.797, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.34, - 2.581, - 8.318, - 13.523, - 17.119, - 19.444, - 20.389, - 19.95, - 18.173, - 13.26, - 6.842, - 1.98, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.429, - 2.835, - 8.592, - 13.931, - 17.458, - 19.612, - 20.313, - 19.672, - 17.9, - 14.654, - 9.923, - 3.192, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.401, - 2.894, - 8.66, - 13.897, - 17.4, - 19.535, - 20.217, - 19.448, - 17.458, - 14.279, - 9.689, - 3.119, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.61, - 2.906, - 6.425, - 12.418, - 14.984, - 15.417, - 15.906, - 15.664, - 12.439, - 14.043, - 9.474, - 2.917, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.477, - 3.0, - 8.374, - 13.139, - 16.493, - 18.659, - 19.566, - 19.221, - 17.377, - 14.095, - 9.256, - 2.635, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.686, - 3.376, - 8.458, - 12.981, - 15.823, - 17.668, - 18.849, - 18.847, - 17.343, - 14.22, - 9.485, - 2.915, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.626, - 3.363, - 7.294, - 10.685, - 15.712, - 15.854, - 16.151, - 15.152, - 14.694, - 13.712, - 6.511, - 1.755, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.672, - 3.456, - 7.385, - 12.021, - 16.678, - 18.614, - 19.18, - 18.562, - 12.426, - 12.099, - 6.872, - 2.646, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.691, - 3.559, - 8.683, - 13.266, - 16.891, - 19.113, - 20.042, - 17.306, - 17.582, - 14.436, - 9.511, - 2.897, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.674, - 3.646, - 9.307, - 14.322, - 17.884, - 20.182, - 5.358, - 12.961, - 13.435, - 9.163, - 3.608, - 3.068, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.76, - 3.835, - 9.444, - 14.202, - 17.419, - 19.434, - 20.44, - 20.037, - 18.198, - 14.849, - 3.884, - 3.299, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.83, - 4.046, - 9.238, - 13.599, - 16.592, - 16.393, - 17.024, - 16.237, - 15.677, - 13.799, - 9.204, - 3.148, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.748, - 3.522, - 7.557, - 13.43, - 16.979, - 18.416, - 15.362, - 16.666, - 17.592, - 13.338, - 6.108, - 1.519, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.627, - 4.3, - 10.304, - 15.225, - 18.679, - 20.863, - 21.631, - 21.005, - 19.115, - 15.74, - 10.897, - 4.184, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.681, - 4.189, - 9.831, - 14.609, - 18.053, - 20.271, - 21.172, - 20.875, - 19.036, - 15.626, - 0.14, - 0.072, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.751, - 4.548, - 10.61, - 15.647, - 19.16, - 21.415, - 22.167, - 21.607, - 19.547, - 16.142, - 11.122, - 4.199, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.671, - 4.549, - 10.405, - 15.1, - 18.324, - 20.215, - 20.757, - 16.919, - 18.393, - 15.205, - 10.655, - 4.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.891, - 4.525, - 8.655, - 11.807, - 16.494, - 18.545, - 19.65, - 19.475, - 17.947, - 14.816, - 10.349, - 3.892, - 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.088, - 4.915, - 7.897, - 12.704, - 17.869, - 20.039, - 20.985, - 20.587, - 18.792, - 15.602, - 10.835, - 4.131, - 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.116, - 5.159, - 10.969, - 15.718, - 19.101, - 21.223, - 22.101, - 21.564, - 19.579, - 9.646, - 10.78, - 4.059, - 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.21, - 5.43, - 11.141, - 15.886, - 19.317, - 21.36, - 22.031, - 21.36, - 19.323, - 15.887, - 10.881, - 4.249, - 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.106, - 5.357, - 11.085, - 15.569, - 18.691, - 20.417, - 20.852, - 20.202, - 18.483, - 15.523, - 10.951, - 4.399, - 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.251, - 5.252, - 10.536, - 14.89, - 18.028, - 20.082, - 20.863, - 20.394, - 18.484, - 15.139, - 10.692, - 4.265, - 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.185, - 5.336, - 10.712, - 15.048, - 18.231, - 20.33, - 21.241, - 20.841, - 18.903, - 15.467, - 9.763, - 4.13, - 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.0, - 5.501, - 11.098, - 15.566, - 18.869, - 20.987, - 21.906, - 21.349, - 19.436, - 16.15, - 11.508, - 4.85, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011, - 5.511, - 7.783, - 15.85, - 4.271, - 11.909, - 22.188, - 21.609, - 16.641, - 10.795, - 1.772, - 0.074, - 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.504, - 5.844, - 7.815, - 15.863, - 19.186, - 21.205, - 18.761, - 21.187, - 11.177, - 5.71, - 5.517, - 1.092, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011, - 5.84, - 11.421, - 4.675, - 0.601, - 1.93, - 0.917, - 3.519, - 3.494, - 6.692, - 2.319, - 0.0, - 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.746, - 6.112, - 12.102, - 16.672, - 19.832, - 21.827, - 22.441, - 21.728, - 19.722, - 16.505, - 11.766, - 5.226, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.057, - 1.404, - 5.936, - 11.385, - 15.438, - 17.95, - 19.369, - 20.313, - 20.196, - 18.685, - 15.786, - 11.244, - 4.969, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.071, - 1.343, - 5.91, - 11.239, - 15.309, - 18.132, - 19.73, - 20.085, - 19.721, - 18.217, - 15.34, - 11.089, - 4.957, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.084, - 1.236, - 5.911, - 11.155, - 14.885, - 17.411, - 19.075, - 20.124, - 20.06, - 18.499, - 15.544, - 11.248, - 5.227, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.153, - 1.734, - 6.014, - 11.245, - 13.152, - 15.509, - 19.907, - 20.52, - 20.133, - 18.459, - 15.514, - 8.351, - 5.139, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.137, - 1.351, - 6.124, - 11.437, - 15.346, - 17.951, - 19.39, - 19.534, - 18.614, - 16.977, - 14.344, - 10.172, - 4.632, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.108, - 1.565, - 6.038, - 11.086, - 15.01, - 18.165, - 19.65, - 19.777, - 18.734, - 16.725, - 14.398, - 10.726, - 5.17, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.114, - 1.435, - 6.193, - 11.331, - 15.028, - 17.57, - 18.969, - 19.479, - 19.103, - 17.682, - 14.977, - 11.049, - 5.315, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.112, - 1.484, - 6.18, - 11.099, - 15.006, - 18.033, - 19.854, - 20.614, - 20.208, - 18.491, - 15.37, - 11.358, - 5.397, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.149, - 1.792, - 6.584, - 11.844, - 15.762, - 18.693, - 20.566, - 21.219, - 21.03, - 19.25, - 16.231, - 11.99, - 5.813, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.215, - 2.044, - 6.662, - 11.465, - 15.77, - 16.275, - 10.645, - 12.582, - 13.773, - 5.17, - 4.815, - 3.119, - 0.796, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.137, - 5.694, - 8.238, - 10.01, - 5.347, - 13.066, - 16.896, - 15.624, - 9.626, - 11.459, - 7.8, - 5.753, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.201, - 1.742, - 6.792, - 12.159, - 16.323, - 19.376, - 21.309, - 22.031, - 11.014, - 14.349, - 6.203, - 3.66, - 0.604, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.24, - 1.959, - 7.109, - 12.455, - 16.465, - 19.383, - 21.044, - 21.331, - 20.571, - 18.606, - 15.712, - 11.4, - 5.589, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.275, - 2.157, - 7.026, - 12.3, - 16.257, - 19.311, - 20.729, - 20.747, - 19.743, - 17.726, - 15.003, - 11.296, - 5.731, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.315, - 2.226, - 7.084, - 12.196, - 15.924, - 18.512, - 19.835, - 19.881, - 19.236, - 17.709, - 15.094, - 10.873, - 5.187, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.319, - 2.206, - 6.92, - 11.645, - 15.296, - 18.299, - 20.156, - 20.895, - 20.466, - 18.659, - 15.548, - 11.915, - 6.092, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.292, - 2.062, - 7.186, - 12.43, - 16.185, - 18.868, - 20.136, - 19.915, - 19.056, - 18.134, - 15.62, - 11.535, - 5.931, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.331, - 2.164, - 7.107, - 12.097, - 15.741, - 18.292, - 19.52, - 19.523, - 19.243, - 18.119, - 15.48, - 11.34, - 5.673, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.325, - 2.153, - 6.986, - 11.903, - 15.539, - 18.167, - 19.483, - 19.785, - 18.981, - 17.535, - 14.847, - 10.927, - 5.528, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.376, - 2.275, - 6.887, - 11.386, - 14.826, - 17.637, - 19.409, - 20.182, - 19.811, - 18.27, - 15.39, - 11.299, - 5.715, - 0.103, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.403, - 2.402, - 7.32, - 11.766, - 14.351, - 17.419, - 18.113, - 21.545, - 20.994, - 15.537, - 14.178, - 10.182, - 5.149, - 0.176, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.567, - 2.934, - 6.822, - 11.649, - 16.352, - 19.078, - 20.972, - 8.398, - 10.094, - 19.836, - 16.74, - 7.825, - 5.998, - 0.079, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.692, - 3.091, - 7.885, - 7.475, - 16.966, - 20.02, - 21.875, - 20.094, - 10.575, - 2.369, - 13.888, - 8.178, - 6.753, - 0.298, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.473, - 2.693, - 7.978, - 13.116, - 12.71, - 19.802, - 21.33, - 21.704, - 14.966, - 15.476, - 15.802, - 11.459, - 5.771, - 0.079, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.544, - 2.765, - 7.42, - 12.059, - 15.694, - 18.448, - 20.305, - 21.019, - 20.608, - 18.727, - 15.676, - 11.171, - 5.516, - 0.114, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.74, - 3.192, - 7.849, - 12.547, - 16.272, - 19.316, - 21.189, - 21.859, - 21.191, - 19.464, - 16.336, - 11.986, - 6.213, - 0.252, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.638, - 2.98, - 7.763, - 12.589, - 16.354, - 19.297, - 21.108, - 21.761, - 21.272, - 19.577, - 16.618, - 12.414, - 6.714, - 0.378, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.544, - 2.902, - 7.937, - 12.923, - 16.741, - 19.836, - 21.654, - 22.248, - 21.672, - 19.878, - 16.883, - 12.542, - 6.869, - 0.553, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.504, - 3.011, - 8.66, - 13.994, - 17.783, - 20.433, - 22.06, - 22.468, - 21.697, - 20.033, - 17.111, - 12.855, - 7.092, - 0.595, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.65, - 3.094, - 8.338, - 13.345, - 17.156, - 19.956, - 21.727, - 22.386, - 21.824, - 20.099, - 17.053, - 12.711, - 6.882, - 0.529, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.823, - 3.371, - 8.326, - 13.384, - 17.39, - 20.324, - 22.103, - 20.183, - 4.823, - 14.992, - 16.997, - 12.342, - 6.469, - 0.478, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.772, - 3.254, - 8.139, - 13.045, - 16.76, - 19.596, - 21.404, - 22.054, - 21.688, - 19.903, - 13.356, - 10.402, - 5.463, - 0.251, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.701, - 3.181, - 8.135, - 13.209, - 17.251, - 20.27, - 22.143, - 22.873, - 22.2, - 20.471, - 17.412, - 13.098, - 7.336, - 0.77, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.526, - 3.051, - 8.307, - 13.268, - 16.744, - 19.018, - 20.312, - 20.669, - 20.315, - 18.729, - 16.039, - 12.195, - 7.167, - 0.921, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.515, - 3.076, - 8.372, - 13.316, - 16.9, - 19.449, - 20.801, - 21.016, - 20.147, - 18.144, - 15.634, - 12.183, - 7.152, - 0.895, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.529, - 3.037, - 8.132, - 12.899, - 16.452, - 18.801, - 19.952, - 19.898, - 18.897, - 17.849, - 15.802, - 12.098, - 6.913, - 0.832, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.52, - 3.003, - 7.863, - 12.354, - 15.956, - 18.731, - 20.522, - 21.261, - 20.853, - 19.229, - 16.429, - 12.397, - 7.109, - 0.958, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.476, - 3.044, - 8.082, - 12.572, - 15.874, - 18.289, - 19.627, - 20.101, - 19.576, - 18.225, - 15.814, - 11.996, - 6.882, - 0.916, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.574, - 3.043, - 7.829, - 12.305, - 15.844, - 18.646, - 20.346, - 21.107, - 20.71, - 19.153, - 16.463, - 12.594, - 7.458, - 1.189, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.493, - 3.123, - 6.821, - 13.088, - 16.856, - 15.83, - 21.365, - 21.876, - 21.36, - 19.786, - 16.829, - 12.845, - 7.497, - 1.159, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.645, - 3.321, - 8.544, - 13.455, - 17.318, - 20.172, - 21.933, - 22.556, - 22.112, - 20.398, - 17.423, - 13.322, - 7.906, - 1.387, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.806, - 3.541, - 8.594, - 13.494, - 17.283, - 20.291, - 21.984, - 22.588, - 22.014, - 20.246, - 17.331, - 13.135, - 7.599, - 1.226, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.781, - 3.473, - 8.325, - 12.876, - 16.358, - 19.046, - 20.518, - 20.968, - 20.609, - 19.118, - 16.574, - 12.741, - 7.562, - 1.378, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.625, - 3.308, - 8.216, - 12.727, - 16.199, - 18.769, - 20.15, - 20.467, - 20.009, - 18.572, - 16.027, - 12.229, - 7.139, - 1.238, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.685, - 3.361, - 8.055, - 12.496, - 16.011, - 18.76, - 20.408, - 21.018, - 16.304, - 18.977, - 16.174, - 10.836, - 6.591, - 1.258, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.885, - 3.252, - 8.208, - 12.676, - 16.083, - 18.789, - 20.525, - 21.109, - 20.689, - 19.168, - 16.375, - 12.548, - 7.32, - 1.423, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.875, - 3.246, - 6.739, - 7.563, - 14.335, - 16.869, - 14.968, - 10.782, - 3.772, - 13.185, - 6.18, - 12.533, - 6.816, - 1.102, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.768, - 3.249, - 7.927, - 12.695, - 15.979, - 18.538, - 20.417, - 19.333, - 14.989, - 16.315, - 14.757, - 9.25, - 4.97, - 0.853, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.672, - 3.093, - 6.631, - 6.507, - 13.036, - 15.504, - 17.901, - 18.174, - 17.667, - 9.206, - 8.506, - 6.644, - 3.054, - 1.15, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.723, - 3.409, - 8.022, - 12.39, - 15.864, - 18.283, - 19.259, - 19.103, - 18.443, - 17.328, - 15.162, - 11.542, - 7.11, - 1.6, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.667, - 3.247, - 7.97, - 12.326, - 15.818, - 18.492, - 20.223, - 20.977, - 20.621, - 19.076, - 16.367, - 12.695, - 7.696, - 1.937, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.626, - 2.056, - 5.09, - 4.123, - 5.043, - 15.982, - 14.164, - 21.274, - 21.184, - 15.436, - 16.823, - 12.552, - 7.239, - 1.17, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.752, - 3.431, - 8.438, - 13.226, - 17.059, - 19.892, - 21.719, - 22.406, - 21.966, - 20.249, - 17.387, - 13.334, - 8.038, - 2.013, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.653, - 3.628, - 9.072, - 14.115, - 18.118, - 21.043, - 22.868, - 23.526, - 22.862, - 21.129, - 18.182, - 14.284, - 8.947, - 2.54, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.583, - 3.653, - 9.248, - 14.386, - 18.304, - 21.139, - 22.598, - 21.951, - 22.467, - 20.708, - 17.811, - 13.881, - 8.72, - 2.572, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.566, - 3.508, - 8.709, - 13.537, - 16.978, - 19.392, - 20.784, - 21.0, - 20.185, - 18.311, - 15.851, - 12.685, - 8.107, - 2.301, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.621, - 3.426, - 8.458, - 13.101, - 16.531, - 18.858, - 20.104, - 20.416, - 20.053, - 18.844, - 16.465, - 12.956, - 8.132, - 2.29, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.589, - 3.311, - 8.188, - 12.799, - 16.432, - 19.242, - 21.056, - 21.83, - 21.543, - 19.994, - 17.255, - 13.528, - 8.494, - 2.457, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.587, - 3.572, - 8.494, - 13.56, - 16.699, - 19.458, - 21.935, - 22.625, - 22.123, - 20.505, - 17.614, - 13.747, - 8.592, - 2.465, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.708, - 3.48, - 8.659, - 13.44, - 17.123, - 19.921, - 21.667, - 22.327, - 21.831, - 20.147, - 17.298, - 13.533, - 8.447, - 2.437, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.643, - 3.462, - 8.516, - 13.099, - 16.318, - 18.43, - 19.333, - 19.625, - 19.687, - 18.789, - 16.452, - 12.996, - 8.014, - 2.215, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.677, - 3.375, - 8.188, - 12.471, - 16.048, - 18.753, - 20.465, - 21.18, - 20.81, - 19.298, - 16.394, - 12.846, - 7.447, - 1.257, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.635, - 3.323, - 8.3, - 13.031, - 16.72, - 19.503, - 21.26, - 21.965, - 21.546, - 19.953, - 17.188, - 13.498, - 8.454, - 2.463, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.729, - 3.422, - 8.353, - 12.971, - 16.408, - 18.745, - 19.968, - 20.375, - 20.113, - 18.921, - 16.539, - 13.046, - 8.153, - 2.289, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.703, - 3.383, - 8.346, - 12.956, - 16.277, - 18.421, - 19.664, - 20.098, - 19.897, - 18.776, - 16.361, - 12.91, - 8.085, - 2.325, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.854, - 3.492, - 8.133, - 12.487, - 15.849, - 18.39, - 20.108, - 20.845, - 20.506, - 18.85, - 16.421, - 12.933, - 8.089, - 2.371, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.703, - 3.354, - 8.081, - 12.541, - 15.928, - 18.391, - 19.834, - 20.509, - 20.305, - 18.912, - 16.422, - 12.792, - 8.065, - 2.375, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.658, - 3.3, - 8.194, - 12.705, - 16.263, - 18.91, - 20.63, - 21.307, - 20.916, - 19.398, - 16.809, - 13.142, - 8.324, - 2.549, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.586, - 3.179, - 8.06, - 12.553, - 15.96, - 18.598, - 20.3, - 21.038, - 20.727, - 19.264, - 16.704, - 13.143, - 8.396, - 2.619, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.561, - 3.157, - 7.986, - 12.432, - 15.791, - 17.931, - 19.896, - 20.814, - 20.562, - 19.186, - 16.127, - 12.572, - 8.169, - 2.159, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.652, - 3.053, - 7.158, - 11.283, - 15.736, - 18.308, - 19.694, - 20.394, - 17.898, - 17.076, - 14.288, - 9.437, - 7.282, - 2.167, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.659, - 3.114, - 7.342, - 11.581, - 14.992, - 18.81, - 19.896, - 20.086, - 20.633, - 19.703, - 17.049, - 13.482, - 8.596, - 2.658, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.636, - 3.061, - 7.57, - 11.63, - 14.99, - 17.523, - 19.178, - 19.814, - 19.416, - 11.481, - 7.237, - 12.009, - 7.6, - 2.234, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.617, - 3.081, - 7.65, - 12.073, - 15.498, - 18.158, - 19.863, - 20.64, - 20.325, - 18.895, - 16.318, - 12.791, - 8.068, - 2.441, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.652, - 3.214, - 8.16, - 12.891, - 16.699, - 19.617, - 21.451, - 22.141, - 21.71, - 20.129, - 17.391, - 13.62, - 8.723, - 2.79, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.702, - 3.28, - 8.357, - 13.048, - 16.365, - 18.587, - 20.073, - 20.825, - 20.706, - 19.54, - 17.07, - 13.535, - 8.658, - 2.748, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.543, - 3.047, - 7.963, - 12.427, - 15.657, - 18.277, - 20.113, - 21.006, - 20.818, - 19.498, - 16.948, - 13.598, - 8.889, - 2.995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.419, - 3.007, - 8.222, - 12.925, - 16.335, - 18.637, - 20.28, - 21.03, - 20.777, - 19.529, - 17.083, - 13.58, - 8.906, - 2.948, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.418, - 3.011, - 8.253, - 13.051, - 16.622, - 19.226, - 20.975, - 21.7, - 21.391, - 19.999, - 17.461, - 13.854, - 9.079, - 3.085, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.411, - 3.009, - 8.179, - 12.794, - 15.913, - 18.087, - 19.54, - 20.209, - 19.977, - 18.787, - 16.535, - 13.178, - 8.705, - 2.938, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.407, - 2.929, - 7.84, - 12.143, - 14.96, - 17.402, - 15.745, - 19.887, - 18.928, - 17.677, - 15.284, - 12.305, - 7.636, - 2.139, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.602, - 2.893, - 7.273, - 11.554, - 14.828, - 17.34, - 18.925, - 19.573, - 17.313, - 18.296, - 15.861, - 12.263, - 7.535, - 2.036, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.829, - 3.264, - 7.157, - 11.429, - 14.743, - 17.332, - 19.098, - 17.414, - 17.208, - 18.235, - 15.755, - 12.137, - 7.312, - 1.812, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.577, - 2.839, - 7.481, - 12.136, - 15.703, - 18.499, - 20.271, - 21.0, - 20.834, - 19.414, - 16.794, - 13.238, - 8.467, - 2.632, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.438, - 2.73, - 7.628, - 12.451, - 16.126, - 18.924, - 20.74, - 21.51, - 21.164, - 19.656, - 17.08, - 13.605, - 8.739, - 2.778, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.512, - 2.774, - 7.484, - 12.032, - 15.537, - 18.099, - 19.894, - 20.652, - 20.472, - 18.999, - 16.214, - 12.469, - 7.475, - 1.835, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.637, - 2.309, - 6.475, - 5.677, - 13.691, - 14.827, - 13.779, - 15.268, - 14.858, - 8.611, - 12.098, - 9.662, - 3.732, - 0.729, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.659, - 2.985, - 7.562, - 12.378, - 16.234, - 19.29, - 21.12, - 21.769, - 21.492, - 20.094, - 17.435, - 13.788, - 8.876, - 2.809, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.412, - 2.661, - 7.653, - 12.445, - 15.994, - 18.672, - 20.429, - 21.158, - 20.941, - 19.619, - 17.082, - 13.478, - 8.635, - 2.705, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.37, - 2.539, - 7.543, - 12.263, - 15.673, - 18.216, - 19.989, - 20.677, - 20.433, - 19.079, - 16.551, - 12.988, - 8.233, - 2.444, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.176, - 2.082, - 6.247, - 9.453, - 12.066, - 8.931, - 11.634, - 11.92, - 13.993, - 17.329, - 15.111, - 12.32, - 7.556, - 1.974, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.24, - 2.456, - 6.886, - 11.327, - 14.722, - 17.497, - 19.221, - 19.966, - 19.607, - 18.319, - 15.774, - 12.096, - 7.415, - 1.947, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.412, - 2.379, - 7.006, - 11.678, - 15.242, - 17.996, - 19.791, - 20.535, - 20.307, - 18.932, - 16.451, - 12.894, - 8.116, - 2.301, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.354, - 2.39, - 7.304, - 12.087, - 15.632, - 18.332, - 20.123, - 20.855, - 20.514, - 19.123, - 16.609, - 12.982, - 8.156, - 2.268, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.338, - 2.363, - 7.333, - 12.189, - 15.857, - 18.638, - 20.495, - 21.228, - 20.917, - 19.434, - 16.784, - 13.15, - 8.347, - 2.423, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.319, - 2.295, - 7.197, - 12.017, - 15.679, - 18.592, - 20.494, - 21.299, - 21.049, - 19.664, - 17.09, - 13.489, - 8.646, - 2.534, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.316, - 2.248, - 7.224, - 12.021, - 15.695, - 18.575, - 20.425, - 21.198, - 20.978, - 19.469, - 16.823, - 13.305, - 8.399, - 2.42, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.339, - 2.269, - 7.011, - 11.845, - 15.462, - 18.255, - 20.044, - 20.705, - 20.504, - 19.02, - 16.392, - 12.717, - 7.846, - 1.994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.379, - 2.203, - 6.712, - 11.236, - 14.769, - 17.464, - 19.249, - 19.904, - 19.596, - 18.149, - 15.464, - 11.962, - 6.943, - 0.251, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.063, - 1.723, - 1.913, - 1.767, - 15.139, - 15.74, - 18.763, - 1.654, - 5.228, - 4.518, - 0.583, - 5.584, - 1.077, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.368, - 2.152, - 6.496, - 11.039, - 14.536, - 17.349, - 19.172, - 19.959, - 19.704, - 18.372, - 15.873, - 12.301, - 7.452, - 1.731, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.298, - 2.005, - 6.675, - 11.469, - 15.059, - 17.869, - 19.716, - 20.478, - 20.315, - 18.861, - 16.281, - 12.381, - 7.482, - 1.677, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.296, - 1.987, - 6.656, - 11.461, - 15.033, - 17.695, - 19.498, - 20.337, - 20.095, - 18.736, - 16.257, - 12.491, - 7.593, - 1.685, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.314, - 1.981, - 6.492, - 11.142, - 14.74, - 17.535, - 19.339, - 20.076, - 19.905, - 18.476, - 15.885, - 12.152, - 7.252, - 1.475, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.318, - 2.008, - 6.543, - 11.226, - 14.853, - 17.562, - 19.308, - 20.058, - 19.845, - 18.46, - 15.907, - 12.138, - 7.237, - 1.428, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.279, - 1.935, - 6.494, - 11.301, - 14.846, - 17.478, - 19.256, - 19.961, - 19.552, - 18.21, - 15.743, - 12.183, - 7.302, - 1.396, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.277, - 1.926, - 6.461, - 11.157, - 14.735, - 17.458, - 19.252, - 20.004, - 19.845, - 18.401, - 15.827, - 12.101, - 7.15, - 1.257, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.257, - 1.907, - 6.328, - 11.005, - 14.517, - 17.224, - 18.964, - 19.652, - 19.248, - 17.747, - 15.099, - 11.602, - 6.664, - 0.979, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 1.445, - 0.244, - 9.644, - 14.675, - 15.67, - 16.985, - 17.792, - 19.474, - 18.107, - 15.45, - 11.881, - 6.897, - 1.001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.257, - 1.905, - 6.239, - 10.913, - 14.484, - 17.263, - 19.174, - 19.985, - 19.684, - 18.345, - 15.729, - 12.158, - 7.157, - 1.105, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.203, - 1.72, - 6.325, - 11.132, - 14.61, - 17.301, - 18.962, - 19.73, - 19.553, - 18.2, - 15.646, - 11.937, - 6.908, - 0.953, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.21, - 1.856, - 6.212, - 10.95, - 14.518, - 17.207, - 19.022, - 19.712, - 15.386, - 17.93, - 15.242, - 11.522, - 6.406, - 0.706, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.217, - 2.192, - 6.299, - 10.989, - 14.74, - 17.707, - 19.651, - 20.537, - 20.145, - 18.696, - 15.943, - 12.301, - 7.041, - 0.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.202, - 1.768, - 6.584, - 11.867, - 15.821, - 18.91, - 20.842, - 21.554, - 21.234, - 19.621, - 16.745, - 12.821, - 7.433, - 1.013, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.137, - 1.578, - 6.425, - 11.605, - 15.446, - 18.308, - 20.25, - 21.053, - 20.682, - 19.136, - 16.377, - 12.56, - 7.246, - 0.888, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.136, - 1.561, - 6.437, - 11.529, - 15.271, - 17.986, - 19.94, - 20.833, - 20.571, - 19.104, - 16.408, - 12.695, - 7.357, - 0.958, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.121, - 1.494, - 6.328, - 11.422, - 15.243, - 18.133, - 20.093, - 20.986, - 20.639, - 19.165, - 16.382, - 12.605, - 7.244, - 0.889, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.106, - 1.441, - 6.226, - 11.253, - 15.072, - 17.961, - 19.911, - 20.796, - 20.479, - 19.015, - 16.298, - 12.479, - 7.121, - 0.68, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.124, - 1.434, - 6.109, - 11.295, - 15.277, - 18.23, - 20.158, - 20.883, - 20.6, - 19.014, - 16.215, - 12.381, - 6.986, - 0.645, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.109, - 1.389, - 5.86, - 10.811, - 14.555, - 17.336, - 19.103, - 19.814, - 19.508, - 17.914, - 15.229, - 11.621, - 6.468, - 0.471, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.108, - 1.342, - 5.741, - 10.667, - 14.278, - 17.035, - 18.871, - 19.646, - 19.429, - 17.978, - 15.34, - 11.554, - 6.347, - 0.412, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.094, - 1.303, - 5.642, - 10.464, - 13.657, - 14.051, - 18.776, - 19.464, - 16.283, - 13.253, - 13.1, - 10.107, - 4.9, - 0.189, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08, - 1.549, - 5.577, - 10.353, - 14.068, - 16.756, - 18.54, - 19.283, - 18.949, - 17.499, - 14.697, - 10.384, - 5.073, - 0.045, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.069, - 1.455, - 5.527, - 10.24, - 13.871, - 16.369, - 18.108, - 18.828, - 18.483, - 17.007, - 14.179, - 10.037, - 4.841, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.106, - 1.391, - 5.428, - 10.185, - 13.891, - 16.755, - 18.569, - 19.365, - 19.073, - 17.573, - 14.769, - 10.773, - 5.425, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.106, - 1.214, - 5.514, - 10.419, - 14.278, - 17.178, - 19.061, - 19.876, - 19.514, - 17.957, - 15.255, - 11.334, - 5.887, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.124, - 1.52, - 5.628, - 10.789, - 13.452, - 17.64, - 17.972, - 20.261, - 19.901, - 18.266, - 15.438, - 11.488, - 5.972, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.093, - 1.097, - 5.703, - 10.824, - 14.647, - 17.418, - 19.302, - 20.126, - 19.673, - 18.114, - 15.285, - 11.29, - 5.753, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.074, - 1.054, - 5.498, - 10.591, - 14.403, - 17.132, - 18.851, - 19.55, - 19.177, - 17.585, - 14.837, - 10.79, - 5.183, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.059, - 1.009, - 5.411, - 10.532, - 14.394, - 17.253, - 19.046, - 19.656, - 19.338, - 17.656, - 14.753, - 10.778, - 5.242, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.062, - 1.095, - 5.551, - 10.83, - 14.866, - 17.77, - 19.698, - 20.404, - 19.948, - 18.275, - 15.391, - 11.303, - 5.568, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.045, - 0.992, - 5.323, - 10.393, - 14.272, - 17.141, - 18.977, - 19.685, - 19.39, - 17.739, - 14.88, - 10.844, - 5.201, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026, - 1.04, - 5.034, - 9.903, - 13.85, - 16.73, - 18.593, - 19.372, - 16.448, - 14.874, - 12.077, - 9.902, - 4.458, - 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.295, - 5.069, - 9.274, - 12.54, - 16.311, - 16.017, - 15.713, - 16.058, - 4.71, - 2.912, - 8.371, - 3.999, - 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.011, - 4.878, - 9.684, - 13.542, - 16.44, - 18.289, - 19.007, - 18.668, - 17.092, - 14.163, - 10.169, - 4.549, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.818, - 4.886, - 9.687, - 13.303, - 16.084, - 17.918, - 18.667, - 18.337, - 16.771, - 14.037, - 10.016, - 4.483, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.794, - 4.797, - 9.466, - 12.98, - 15.518, - 17.054, - 17.679, - 17.425, - 11.391, - 7.726, - 8.48, - 3.924, - 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.153, - 4.728, - 9.457, - 13.279, - 16.211, - 18.076, - 18.784, - 9.189, - 0.971, - 13.613, - 1.779, - 0.0, - 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.001, - 4.64, - 9.098, - 12.692, - 15.538, - 17.181, - 17.852, - 17.542, - 14.043, - 11.355, - 9.959, - 4.122, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.765, - 4.857, - 9.793, - 13.659, - 16.467, - 18.331, - 19.117, - 18.719, - 17.062, - 14.095, - 9.89, - 4.029, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.746, - 4.826, - 9.679, - 13.169, - 15.971, - 17.748, - 5.394, - 0.603, - 0.472, - 13.772, - 9.618, - 3.836, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.74, - 4.665, - 9.548, - 13.511, - 16.301, - 18.046, - 18.664, - 7.033, - 5.924, - 1.419, - 5.997, - 3.512, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.901, - 4.575, - 9.478, - 13.332, - 16.079, - 17.732, - 18.303, - 17.781, - 16.02, - 13.114, - 8.775, - 3.06, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.763, - 4.491, - 9.288, - 13.097, - 15.776, - 17.365, - 17.894, - 17.328, - 15.661, - 4.813, - 8.66, - 0.579, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.755, - 4.419, - 9.312, - 13.176, - 16.027, - 17.801, - 18.504, - 18.049, - 16.297, - 13.234, - 8.892, - 2.982, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.791, - 4.453, - 9.334, - 13.278, - 16.134, - 17.92, - 18.638, - 18.156, - 16.267, - 12.99, - 8.532, - 2.665, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.708, - 4.706, - 9.981, - 14.198, - 17.162, - 18.97, - 19.61, - 19.189, - 17.301, - 14.121, - 9.338, - 3.102, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.769, - 4.777, - 10.114, - 14.391, - 17.361, - 19.231, - 19.773, - 19.176, - 17.273, - 14.054, - 9.407, - 3.102, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.738, - 4.568, - 9.591, - 13.68, - 16.69, - 18.568, - 19.235, - 18.686, - 16.903, - 13.824, - 9.241, - 3.039, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.595, - 4.386, - 9.516, - 13.481, - 16.271, - 17.822, - 18.111, - 17.224, - 15.327, - 12.541, - 8.465, - 2.701, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.665, - 4.263, - 9.186, - 13.098, - 15.798, - 17.31, - 17.624, - 16.688, - 14.951, - 12.192, - 8.041, - 2.29, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.824, - 4.159, - 9.076, - 13.061, - 15.851, - 17.618, - 18.254, - 17.613, - 15.644, - 12.33, - 7.044, - 1.421, - 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.188, - 4.588, - 9.188, - 13.038, - 16.106, - 17.918, - 18.437, - 17.897, - 15.71, - 12.021, - 7.813, - 1.749, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.813, - 4.534, - 10.053, - 14.627, - 17.92, - 19.892, - 20.466, - 19.795, - 17.611, - 14.086, - 9.068, - 2.43, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.563, - 4.481, - 10.21, - 14.847, - 18.023, - 19.959, - 20.519, - 19.683, - 17.567, - 14.166, - 9.065, - 2.265, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.563, - 4.369, - 9.988, - 14.413, - 17.5, - 19.303, - 19.723, - 18.931, - 16.867, - 13.521, - 8.722, - 2.049, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.535, - 4.16, - 9.487, - 13.629, - 16.393, - 17.991, - 18.385, - 17.554, - 15.781, - 12.769, - 8.137, - 1.579, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.72, - 4.108, - 9.266, - 13.568, - 16.743, - 18.611, - 19.268, - 18.58, - 16.612, - 13.117, - 8.088, - 1.312, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.547, - 4.082, - 9.581, - 13.861, - 16.711, - 18.317, - 18.64, - 17.748, - 15.779, - 12.549, - 7.914, - 1.297, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.487, - 3.878, - 9.123, - 13.391, - 16.327, - 18.151, - 18.713, - 17.894, - 15.818, - 12.383, - 7.403, - 0.988, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.973, - 4.123, - 8.85, - 13.038, - 16.559, - 18.539, - 19.19, - 18.464, - 16.441, - 13.05, - 7.928, - 1.112, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.482, - 3.92, - 9.567, - 14.14, - 17.236, - 19.082, - 19.559, - 18.729, - 16.56, - 13.006, - 7.76, - 0.995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.477, - 3.815, - 9.33, - 13.767, - 16.692, - 18.401, - 18.744, - 17.861, - 15.719, - 12.357, - 7.376, - 0.875, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.497, - 3.713, - 9.129, - 13.475, - 16.426, - 18.091, - 18.412, - 17.497, - 15.47, - 12.166, - 7.193, - 0.69, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.538, - 3.548, - 8.564, - 12.809, - 15.764, - 17.555, - 18.123, - 17.532, - 15.551, - 12.181, - 7.058, - 0.562, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.468, - 3.517, - 8.774, - 12.996, - 15.818, - 17.48, - 17.893, - 17.191, - 15.256, - 11.952, - 6.891, - 0.509, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.619, - 3.316, - 7.553, - 13.04, - 14.095, - 14.175, - 15.215, - 11.414, - 5.835, - 11.952, - 6.806, - 0.354, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.588, - 3.447, - 8.332, - 12.347, - 14.086, - 15.54, - 15.732, - 14.241, - 11.181, - 7.982, - 2.808, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.552, - 3.367, - 8.359, - 11.415, - 14.295, - 14.435, - 9.866, - 12.037, - 7.534, - 7.944, - 1.394, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.406, - 3.112, - 8.016, - 12.202, - 15.057, - 16.815, - 17.429, - 16.694, - 14.635, - 11.231, - 6.114, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.769, - 3.127, - 7.974, - 12.206, - 15.046, - 16.789, - 17.376, - 16.65, - 14.568, - 11.165, - 6.033, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.457, - 3.087, - 8.133, - 12.518, - 15.511, - 17.261, - 17.864, - 17.017, - 14.805, - 11.163, - 5.823, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.613, - 3.268, - 8.436, - 12.972, - 16.077, - 17.87, - 18.367, - 17.517, - 11.463, - 7.906, - 0.352, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.622, - 1.555, - 5.402, - 13.13, - 9.192, - 18.02, - 18.5, - 4.209, - 6.04, - 11.742, - 0.093, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.475, - 3.179, - 8.735, - 13.447, - 16.463, - 18.264, - 2.896, - 6.471, - 0.388, - 0.598, - 3.025, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.413, - 3.124, - 8.494, - 13.19, - 16.123, - 17.788, - 18.09, - 17.068, - 14.841, - 11.06, - 5.503, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.43, - 2.964, - 8.189, - 12.747, - 15.674, - 17.261, - 17.6, - 16.678, - 14.532, - 11.011, - 5.449, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.386, - 2.863, - 8.077, - 12.509, - 15.117, - 16.466, - 16.747, - 15.902, - 13.883, - 10.56, - 5.252, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.407, - 2.777, - 7.784, - 12.278, - 13.152, - 14.341, - 17.103, - 16.077, - 13.779, - 10.082, - 4.753, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.368, - 2.668, - 7.712, - 12.233, - 14.994, - 16.536, - 16.87, - 15.925, - 13.781, - 10.197, - 4.73, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.36, - 2.536, - 7.678, - 12.197, - 15.044, - 16.699, - 17.09, - 16.155, - 13.885, - 10.233, - 4.812, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.361, - 2.539, - 7.612, - 11.986, - 14.643, - 15.998, - 16.075, - 15.096, - 13.192, - 9.851, - 4.6, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.32, - 2.44, - 7.271, - 10.096, - 12.851, - 15.607, - 14.286, - 12.487, - 13.282, - 8.417, - 4.073, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.411, - 2.681, - 7.166, - 11.339, - 14.112, - 15.67, - 16.022, - 15.475, - 13.26, - 9.488, - 3.784, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.331, - 2.364, - 7.162, - 11.584, - 14.51, - 16.241, - 16.665, - 15.786, - 13.555, - 9.736, - 4.066, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.311, - 2.281, - 7.3, - 11.813, - 14.744, - 16.332, - 16.557, - 15.484, - 13.232, - 9.447, - 3.93, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.289, - 2.262, - 7.284, - 11.897, - 14.826, - 16.39, - 16.597, - 15.462, - 13.229, - 9.479, - 3.86, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.313, - 2.252, - 7.157, - 11.524, - 14.457, - 16.176, - 16.658, - 15.687, - 13.406, - 9.492, - 3.47, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.334, - 2.274, - 7.129, - 11.541, - 14.438, - 15.956, - 16.164, - 15.228, - 13.072, - 9.249, - 3.208, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.312, - 2.18, - 7.001, - 11.357, - 14.147, - 15.547, - 15.702, - 14.731, - 12.588, - 8.855, - 3.136, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.28, - 2.024, - 6.88, - 11.411, - 14.394, - 16.037, - 16.346, - 15.359, - 13.036, - 9.053, - 3.426, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.214, - 1.962, - 6.775, - 11.261, - 14.182, - 15.74, - 15.958, - 14.973, - 12.691, - 8.807, - 3.13, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.247, - 2.059, - 6.526, - 10.806, - 13.79, - 15.383, - 15.617, - 13.259, - 7.312, - 5.248, - 1.5, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.233, - 2.128, - 6.553, - 10.882, - 13.936, - 15.505, - 15.74, - 14.7, - 12.001, - 7.754, - 2.23, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.222, - 2.069, - 6.622, - 11.275, - 14.564, - 16.468, - 17.003, - 16.056, - 13.67, - 9.295, - 3.168, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.183, - 1.82, - 6.82, - 11.631, - 14.793, - 16.41, - 16.642, - 15.643, - 13.252, - 9.113, - 3.114, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.168, - 1.803, - 6.723, - 11.505, - 14.63, - 16.209, - 16.416, - 15.225, - 12.787, - 8.652, - 2.824, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.17, - 1.702, - 6.454, - 11.054, - 14.151, - 15.717, - 15.991, - 14.928, - 12.536, - 8.39, - 2.594, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.135, - 1.58, - 6.265, - 10.822, - 13.762, - 15.256, - 15.45, - 10.438, - 11.008, - 6.52, - 2.401, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.121, - 1.505, - 6.123, - 8.593, - 13.301, - 14.898, - 15.278, - 14.395, - 12.195, - 8.089, - 0.868, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.111, - 1.472, - 6.093, - 10.785, - 12.562, - 10.557, - 8.411, - 14.887, - 9.297, - 7.386, - 1.712, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.179, - 1.506, - 6.017, - 10.54, - 13.771, - 15.338, - 15.607, - 14.734, - 12.395, - 8.181, - 2.167, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.142, - 1.336, - 6.163, - 11.013, - 14.4, - 16.15, - 16.417, - 15.313, - 12.699, - 8.309, - 2.045, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.141, - 1.287, - 5.928, - 10.61, - 13.878, - 15.557, - 15.833, - 14.746, - 12.27, - 7.838, - 1.754, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.102, - 1.2, - 5.552, - 10.171, - 13.398, - 15.098, - 15.38, - 14.352, - 11.872, - 7.655, - 1.627, - 0.0, - 0.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.192, - 5.463, - 9.989, - 13.084, - 14.6, - 14.84, - 13.821, - 11.551, - 7.531, - 1.552, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.065, - 1.098, - 5.31, - 9.761, - 12.764, - 14.369, - 14.708, - 13.77, - 11.458, - 7.348, - 1.466, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.118, - 1.097, - 5.239, - 9.699, - 12.782, - 14.311, - 14.504, - 13.489, - 11.117, - 6.982, - 1.239, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.048, - 1.058, - 5.113, - 9.334, - 12.293, - 14.013, - 11.369, - 13.571, - 11.24, - 7.031, - 1.249, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.991, - 5.151, - 9.727, - 13.067, - 14.741, - 15.09, - 14.026, - 11.551, - 7.148, - 1.165, - 0.0, - 0.0, - 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.426, - 5.125, - 9.344, - 12.694, - 14.345, - 14.673, - 10.178, - 10.766, - 6.377, - 0.096, - 0.0, - 0.0, - 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.354, - 4.257, - 9.266, - 12.606, - 14.296, - 14.652, - 13.697, - 11.265, - 6.974, - 1.145, - 0.0, - 0.0, - 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.414, - 4.228, - 9.115, - 12.36, - 12.066, - 11.27, - 9.55, - 8.293, - 4.602, - 0.094, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.703, - 4.76, - 7.068, - 12.597, - 14.373, - 14.796, - 13.834, - 11.338, - 6.902, - 0.414, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.977, - 4.69, - 9.164, - 12.483, - 14.209, - 14.572, - 13.541, - 11.019, - 6.674, - 0.883, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.804, - 4.882, - 9.83, - 13.423, - 15.217, - 15.523, - 14.472, - 11.874, - 7.243, - 1.037, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.775, - 4.611, - 9.296, - 12.773, - 14.529, - 14.88, - 13.781, - 11.262, - 5.69, - 0.257, - 0.0, - 0.0, - 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.241, - 3.94, - 9.123, - 10.222, - 12.105, - 8.463, - 6.546, - 3.106, - 5.548, - 0.219, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.706, - 3.666, - 8.615, - 9.429, - 10.587, - 4.992, - 13.362, - 10.813, - 6.42, - 0.63, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.677, - 4.259, - 8.734, - 12.135, - 11.94, - 10.773, - 9.796, - 5.035, - 1.991, - 0.032, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.629, - 4.179, - 8.69, - 12.064, - 13.803, - 14.112, - 13.074, - 10.561, - 6.274, - 0.642, - 0.0, - 0.0, - 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.101, - 3.672, - 6.884, - 11.654, - 13.541, - 13.947, - 13.023, - 10.51, - 4.382, - 0.22, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.553, - 4.089, - 8.824, - 12.437, - 14.38, - 14.769, - 13.728, - 11.075, - 6.625, - 0.241, - 0.0, - 0.0, - 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.027, - 3.974, - 8.603, - 12.067, - 14.006, - 14.454, - 13.528, - 11.003, - 6.614, - 0.705, - 0.0, - 0.0, - 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.005, - 3.926, - 8.391, - 11.687, - 13.608, - 14.052, - 13.091, - 10.524, - 6.307, - 0.657, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.908, - 3.724, - 8.181, - 11.471, - 13.114, - 13.431, - 12.646, - 10.251, - 6.229, - 0.693, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.915, - 3.314, - 6.466, - 9.691, - 10.496, - 10.391, - 12.058, - 9.914, - 5.922, - 0.522, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.889, - 3.232, - 7.967, - 11.418, - 13.435, - 13.909, - 13.096, - 10.551, - 6.356, - 0.67, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.52, - 3.551, - 7.944, - 11.419, - 13.43, - 13.871, - 12.987, - 10.381, - 2.878, - 0.03, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.443, - 2.876, - 4.849, - 0.354, - 1.992, - 0.751, - 0.942, - 2.574, - 1.65, - 0.543, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.554, - 3.381, - 6.793, - 9.543, - 10.257, - 11.143, - 8.451, - 3.824, - 0.593, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.854, - 2.342, - 2.337, - 3.643, - 8.76, - 8.732, - 10.009, - 7.794, - 5.709, - 0.241, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.557, - 0.145, - 7.728, - 7.342, - 9.138, - 10.195, - 5.521, - 0.164, - 6.093, - 0.142, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.48, - 3.32, - 7.935, - 11.682, - 13.876, - 14.39, - 13.502, - 10.83, - 6.286, - 0.162, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.47, - 3.17, - 7.579, - 11.132, - 13.232, - 11.375, - 12.873, - 7.425, - 4.595, - 0.449, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.437, - 3.079, - 7.605, - 11.165, - 13.297, - 13.787, - 9.367, - 10.283, - 6.038, - 0.485, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.411, - 3.036, - 7.642, - 11.385, - 13.593, - 14.08, - 13.195, - 10.555, - 6.145, - 0.496, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.49, - 3.095, - 7.721, - 10.412, - 11.919, - 13.988, - 10.748, - 10.481, - 6.267, - 0.556, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.475, - 2.981, - 7.414, - 11.128, - 13.392, - 14.092, - 5.793, - 4.005, - 6.107, - 0.484, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.502, - 2.994, - 6.4, - 7.555, - 13.228, - 0.801, - 5.287, - 2.176, - 3.272, - 0.36, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.415, - 2.886, - 7.502, - 11.257, - 13.597, - 14.182, - 13.254, - 10.638, - 6.314, - 0.574, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.372, - 2.766, - 7.414, - 11.238, - 13.517, - 14.064, - 13.199, - 10.6, - 6.303, - 0.615, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.417, - 2.642, - 7.145, - 10.707, - 12.731, - 13.351, - 12.591, - 10.189, - 6.081, - 0.566, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.458, - 2.669, - 7.102, - 8.705, - 9.881, - 9.776, - 2.218, - 7.864, - 6.198, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.401, - 2.659, - 7.286, - 11.197, - 13.609, - 14.296, - 13.513, - 10.936, - 6.591, - 0.797, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.352, - 2.586, - 7.15, - 10.886, - 13.129, - 13.713, - 12.934, - 10.497, - 6.375, - 0.233, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.439, - 1.949, - 6.876, - 8.98, - 10.403, - 13.54, - 11.709, - 10.438, - 6.297, - 0.767, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.376, - 2.557, - 7.09, - 10.814, - 13.056, - 13.666, - 12.866, - 10.478, - 6.403, - 0.756, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.372, - 2.487, - 6.886, - 10.409, - 12.436, - 13.149, - 12.439, - 10.102, - 6.096, - 0.614, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.507, - 2.446, - 5.095, - 9.256, - 12.797, - 11.032, - 13.187, - 10.791, - 6.558, - 0.635, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.376, - 2.419, - 6.796, - 10.496, - 10.211, - 13.576, - 12.843, - 10.421, - 6.308, - 0.778, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.356, - 2.382, - 6.789, - 10.469, - 12.75, - 13.427, - 8.013, - 8.719, - 2.638, - 0.105, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.311, - 2.301, - 6.637, - 10.413, - 12.734, - 13.434, - 12.775, - 9.332, - 6.309, - 0.359, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.306, - 2.319, - 7.011, - 10.981, - 13.37, - 11.537, - 9.378, - 7.642, - 3.299, - 0.181, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.308, - 2.287, - 6.929, - 10.787, - 11.146, - 12.41, - 13.238, - 10.903, - 6.899, - 1.16, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.281, - 2.17, - 6.615, - 8.633, - 10.351, - 10.293, - 9.033, - 6.916, - 3.347, - 0.195, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.456, - 2.167, - 3.647, - 6.588, - 9.624, - 11.181, - 8.516, - 4.996, - 6.492, - 0.482, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.24, - 2.23, - 5.558, - 6.605, - 4.181, - 3.942, - 1.209, - 2.744, - 2.219, - 0.117, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.428, - 0.21, - 3.639, - 2.308, - 3.387, - 1.377, - 3.014, - 8.037, - 1.641, - 0.99, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.346, - 1.164, - 4.272, - 1.481, - 4.055, - 4.134, - 3.569, - 2.565, - 2.221, - 0.151, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.343, - 2.189, - 6.472, - 10.372, - 12.8, - 10.716, - 9.662, - 10.852, - 5.067, - 1.576, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "size_kw": 30.0, - "lifecycle_om_cost_after_tax_bau": 4692.0, - "name": "roof_west", - "annual_energy_produced_kwh": 45938.58, - "year_one_energy_produced_kwh_bau": 48062.0, - "year_one_energy_produced_kwh": 48062.0, - "annual_energy_exported_kwh": 0.0, - "electric_to_storage_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "electric_curtailed_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "lifecycle_om_cost_after_tax": 4692.0, - "lcoe_per_kwh": 0.0 - }, - { - "electric_to_grid_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "production_factor_series": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022978000000000002, - 0.27288999999999997, - 0.445854, - 0.5465420000000001, - 0.591682, - 0.583673, - 0.5242279999999999, - 0.411019, - 0.236401, - 0.034754, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022653, - 0.276824, - 0.45223599999999997, - 0.5536369999999999, - 0.5995119999999999, - 0.592028, - 0.528977, - 0.416471, - 0.241361, - 0.008482, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022562000000000002, - 0.145619, - 0.4562, - 0.564461, - 0.6166470000000001, - 0.6099439999999999, - 0.5502720000000001, - 0.434185, - 0.254059, - 0.039703, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.06387, - 0.280279, - 0.45767, - 0.5616319999999999, - 0.60687, - 0.599073, - 0.539341, - 0.425978, - 0.250363, - 0.039555, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022278, - 0.270249, - 0.443043, - 0.544181, - 0.589649, - 0.582188, - 0.430776, - 0.289503, - 0.24606299999999998, - 0.023436, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024863, - 0.26920299999999997, - 0.433961, - 0.385355, - 0.38497000000000003, - 0.45489999999999997, - 0.5196219999999999, - 0.414036, - 0.247006, - 0.042544, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.058472, - 0.260633, - 0.426284, - 0.527544, - 0.576386, - 0.573664, - 0.52089, - 0.413633, - 0.245071, - 0.044734, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.061723999999999994, - 0.275969, - 0.457096, - 0.567693, - 0.62141, - 0.616001, - 0.556507, - 0.445408, - 0.265272, - 0.052107, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021593, - 0.150088, - 0.449024, - 0.550481, - 0.59936, - 0.594076, - 0.5386559999999999, - 0.43105099999999996, - 0.260469, - 0.054509999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028431, - 0.269183, - 0.441416, - 0.465824, - 0.44329700000000005, - 0.5058670000000001, - 0.363678, - 0.324168, - 0.17225, - 0.024745, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005305, - 0.030978000000000002, - 0.16019, - 0.509293, - 0.5676509999999999, - 0.45764, - 0.415178, - 0.41879, - 0.231256, - 0.056825, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.056552, - 0.262899, - 0.437574, - 0.543254, - 0.594781, - 0.590759, - 0.533532, - 0.42827499999999996, - 0.26207400000000003, - 0.061966, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.058335, - 0.264675, - 0.434864, - 0.5330560000000001, - 0.58327, - 0.582414, - 0.531679, - 0.42980900000000005, - 0.26372500000000004, - 0.062804, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.062623, - 0.27475499999999997, - 0.450786, - 0.554461, - 0.508286, - 0.445257, - 0.39775099999999997, - 0.372865, - 0.218964, - 0.070658, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031313, - 0.256684, - 0.419742, - 0.399716, - 0.471709, - 0.308034, - 0.522432, - 0.199423, - 0.030479, - 0.019586, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.055816000000000004, - 0.253767, - 0.42849200000000004, - 0.5381670000000001, - 0.593552, - 0.5936520000000001, - 0.542314, - 0.43771899999999997, - 0.27098099999999997, - 0.07117, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.058152999999999996, - 0.255591, - 0.421735, - 0.5235449999999999, - 0.577455, - 0.467109, - 0.530111, - 0.430957, - 0.268392, - 0.073744, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.046487, - 0.202721, - 0.268911, - 0.43532499999999996, - 0.481805, - 0.469433, - 0.325589, - 0.286048, - 0.133246, - 0.020788, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.050829, - 0.046491, - 0.174156, - 0.276293, - 0.26412599999999997, - 0.5861580000000001, - 0.5381079999999999, - 0.27710199999999996, - 0.197701, - 0.020732, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0598, - 0.263193, - 0.442423, - 0.5485119999999999, - 0.605111, - 0.280431, - 0.063109, - 0.089338, - 0.009399, - 0.013535, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027816, - 0.137937, - 0.343021, - 0.447851, - 0.47796, - 0.489751, - 0.381742, - 0.287661, - 0.236998, - 0.08838700000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.067565, - 0.275725, - 0.442669, - 0.544751, - 0.602113, - 0.604465, - 0.5524640000000001, - 0.451336, - 0.291688, - 0.089422, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.064446, - 0.264971, - 0.434603, - 0.392749, - 0.482927, - 0.436721, - 0.400306, - 0.351462, - 0.207393, - 0.039549, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019105, - 0.131615, - 0.167436, - 0.24829900000000002, - 0.253054, - 0.266384, - 0.223674, - 0.087664, - 0.046837000000000004, - 0.018527000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0581, - 0.152072, - 0.107938, - 0.17790199999999998, - 0.005713, - 0.580141, - 0.474704, - 0.306535, - 0.09817000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.063698, - 0.17949, - 0.350516, - 0.027392, - 0.47311200000000003, - 0.467771, - 0.382824, - 0.013779999999999999, - 0.293421, - 0.09096299999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.074492, - 0.298854, - 0.489619, - 0.608819, - 0.665207, - 0.6645549999999999, - 0.6121449999999999, - 0.5077889999999999, - 0.33481299999999997, - 0.113911, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08497199999999999, - 0.308612, - 0.492224, - 0.60342, - 0.659079, - 0.658919, - 0.604468, - 0.497025, - 0.329534, - 0.115649, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.084618, - 0.304865, - 0.47912400000000005, - 0.581071, - 0.629161, - 0.625871, - 0.453515, - 0.409361, - 0.20354499999999998, - 0.054633, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036031, - 0.29087, - 0.46480099999999996, - 0.47569900000000004, - 0.519653, - 0.514759, - 0.458504, - 0.379313, - 0.24978, - 0.06993200000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026926, - 0.23562799999999998, - 0.3708, - 0.657019, - 0.661883, - 0.610007, - 0.503558, - 0.336935, - 0.108598, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.070821, - 0.27416199999999996, - 0.448975, - 0.552966, - 0.6066159999999999, - 0.615607, - 0.57377, - 0.481856, - 0.32558499999999996, - 0.11618600000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.090217, - 0.315563, - 0.49589, - 0.507509, - 0.5411180000000001, - 0.513334, - 0.601509, - 0.497702, - 0.340918, - 0.132905, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.096163, - 0.318058, - 0.492362, - 0.597247, - 0.6501760000000001, - 0.648783, - 0.596201, - 0.497319, - 0.341725, - 0.135519, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.092016, - 0.30680799999999997, - 0.479341, - 0.5877140000000001, - 0.640606, - 0.640903, - 0.588313, - 0.489339, - 0.33548300000000003, - 0.13215100000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034573, - 0.17678, - 0.308187, - 0.468813, - 0.514845, - 0.479311, - 0.406145, - 0.37342200000000003, - 0.22059, - 0.06787, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.093773, - 0.303268, - 0.46372800000000003, - 0.571534, - 0.630091, - 0.637439, - 0.503395, - 0.408197, - 0.28252, - 0.098532, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.061799999999999994, - 0.23228100000000002, - 0.36229700000000004, - 0.453062, - 0.547335, - 0.45193, - 0.418584, - 0.324337, - 0.265775, - 0.094868, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.056404, - 0.160153, - 0.310853, - 0.335241, - 0.28818299999999997, - 0.453737, - 0.466209, - 0.28936900000000004, - 0.229859, - 0.068694, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.090783, - 0.22418700000000003, - 0.358185, - 0.39674200000000004, - 0.49299, - 0.16425399999999998, - 0.181268, - 0.105452, - 0.08718600000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024269, - 0.15756299999999998, - 0.089691, - 0.192675, - 0.44923599999999997, - 0.41883, - 0.45, - 0.37295, - 0.27366500000000005, - 0.05136, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.311707, - 0.48760899999999996, - 0.600097, - 0.66269, - 0.669376, - 0.6187290000000001, - 0.520137, - 0.36028899999999997, - 0.148734, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10135, - 0.309293, - 0.33135000000000003, - 0.59323, - 0.6552250000000001, - 0.6597540000000001, - 0.6183529999999999, - 0.5171749999999999, - 0.358772, - 0.015945, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.110244, - 0.328564, - 0.504842, - 0.299254, - 0.673755, - 0.679768, - 0.633096, - 0.532873, - 0.299978, - 0.157957, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.118618, - 0.341825, - 0.5177039999999999, - 0.633687, - 0.694293, - 0.696429, - 0.645895, - 0.541791, - 0.38344799999999996, - 0.16831800000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.055966, - 0.347346, - 0.5123540000000001, - 0.614775, - 0.668671, - 0.66964, - 0.6170990000000001, - 0.517404, - 0.365716, - 0.1628, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.122723, - 0.33569, - 0.502521, - 0.609291, - 0.6653830000000001, - 0.6698500000000001, - 0.621625, - 0.521982, - 0.369787, - 0.162665, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.123127, - 0.338734, - 0.507713, - 0.617544, - 0.6720119999999999, - 0.671558, - 0.6212880000000001, - 0.5191180000000001, - 0.31151100000000004, - 0.053357, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.052573, - 0.227932, - 0.30947800000000003, - 0.40543799999999997, - 0.355527, - 0.22976, - 0.418706, - 0.401428, - 0.290085, - 0.125098, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030052, - 0.023899999999999998, - 0.031553, - 0.10711, - 0.527266, - 0.441151, - 0.5294500000000001, - 0.379682, - 0.17224, - 0.003104, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.13495400000000002, - 0.349676, - 0.510934, - 0.615754, - 0.672307, - 0.6774249999999999, - 0.632533, - 0.5383150000000001, - 0.385633, - 0.179666, - 0.003904, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.133584, - 0.34202899999999997, - 0.494431, - 0.595623, - 0.6588440000000001, - 0.670895, - 0.6317269999999999, - 0.5395890000000001, - 0.39056, - 0.183342, - 0.0050279999999999995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.135927, - 0.138305, - 0.141706, - 0.100103, - 0.45676, - 0.537517, - 0.490485, - 0.379, - 0.282707, - 0.124977, - 0.002519, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.157182, - 0.39447699999999997, - 0.571219, - 0.6866, - 0.7496090000000001, - 0.7556, - 0.70663, - 0.600432, - 0.43700900000000004, - 0.206917, - 0.008874, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.159547, - 0.387934, - 0.553624, - 0.657882, - 0.699131, - 0.6884629999999999, - 0.631644, - 0.542259, - 0.405862, - 0.19830099999999998, - 0.00926, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.15486000000000003, - 0.374213, - 0.543337, - 0.658105, - 0.717752, - 0.721236, - 0.5200309999999999, - 0.118714, - 0.03814, - 0.060388, - 0.008919999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.15516999999999997, - 0.374505, - 0.5353519999999999, - 0.6456989999999999, - 0.705025, - 0.7106079999999999, - 0.662566, - 0.56483, - 0.413461, - 0.198819, - 0.010156, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005118, - 0.396708, - 0.572284, - 0.556077, - 0.577016, - 0.75547, - 0.704306, - 0.597847, - 0.048753, - 0.057662, - 0.003065, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.177535, - 0.412158, - 0.58366, - 0.6958, - 0.756462, - 0.760168, - 0.71075, - 0.605949, - 0.44654000000000005, - 0.008179, - 0.010734, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030795000000000003, - 0.259217, - 0.23462, - 0.322512, - 0.461189, - 0.080301, - 0.445406, - 0.286831, - 0.092908, - 0.113111, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.069318, - 0.24738200000000002, - 0.325633, - 0.41318900000000003, - 0.517983, - 0.44802800000000004, - 0.41850099999999996, - 0.295938, - 0.202648, - 0.088953, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0012909999999999998, - 0.09683499999999999, - 0.251491, - 0.398411, - 0.5504049999999999, - 0.5691219999999999, - 0.543, - 0.6053160000000001, - 0.452526, - 0.269584, - 0.111288, - 0.005171, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006144, - 0.177758, - 0.39155, - 0.402166, - 0.531193, - 0.569882, - 0.589491, - 0.455673, - 0.395069, - 0.406826, - 0.203746, - 0.016051, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007905, - 0.184586, - 0.394318, - 0.534432, - 0.632212, - 0.476845, - 0.690689, - 0.648095, - 0.462375, - 0.40652699999999997, - 0.117973, - 0.016797, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003424, - 0.104625, - 0.250387, - 0.33493, - 0.638423, - 0.690736, - 0.564935, - 0.656146, - 0.556631, - 0.407584, - 0.20638399999999998, - 0.018708, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009958, - 0.19759800000000002, - 0.419371, - 0.576944, - 0.565112, - 0.599621, - 0.5453640000000001, - 0.5308630000000001, - 0.492223, - 0.345253, - 0.221903, - 0.008977, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012955, - 0.21387299999999998, - 0.43934300000000004, - 0.599375, - 0.70153, - 0.7471939999999999, - 0.740663, - 0.6875330000000001, - 0.5877169999999999, - 0.436877, - 0.182532, - 0.018968, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008298, - 0.163119, - 0.421695, - 0.572865, - 0.6701459999999999, - 0.708371, - 0.6888529999999999, - 0.6266649999999999, - 0.544385, - 0.32863, - 0.175871, - 0.02361, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015291, - 0.209602, - 0.32827100000000003, - 0.571808, - 0.673644, - 0.722773, - 0.7194940000000001, - 0.671988, - 0.570326, - 0.42275, - 0.218978, - 0.027053, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017005, - 0.14236000000000001, - 0.30988600000000005, - 0.5986480000000001, - 0.581332, - 0.571936, - 0.620871, - 0.520115, - 0.453101, - 0.295776, - 0.171549, - 0.022775, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020716000000000002, - 0.222038, - 0.440744, - 0.597726, - 0.702284, - 0.7506849999999999, - 0.746171, - 0.6891889999999999, - 0.586337, - 0.435887, - 0.22781200000000001, - 0.031432, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023548, - 0.222624, - 0.436303, - 0.5883160000000001, - 0.691258, - 0.741501, - 0.743193, - 0.691493, - 0.588292, - 0.439447, - 0.232567, - 0.033536, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028154, - 0.23184200000000002, - 0.441818, - 0.5843440000000001, - 0.67253, - 0.7170230000000001, - 0.715776, - 0.6719360000000001, - 0.579322, - 0.434553, - 0.23178200000000002, - 0.034383000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.03032, - 0.234348, - 0.45109699999999997, - 0.602428, - 0.706098, - 0.752413, - 0.744544, - 0.692391, - 0.5860789999999999, - 0.436076, - 0.232815, - 0.035353, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.032142000000000004, - 0.226786, - 0.429745, - 0.559917, - 0.650331, - 0.685116, - 0.699664, - 0.663322, - 0.5753659999999999, - 0.43664400000000003, - 0.23805500000000002, - 0.037380000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.03741, - 0.249372, - 0.465603, - 0.6171760000000001, - 0.721192, - 0.772442, - 0.7699969999999999, - 0.71634, - 0.6148429999999999, - 0.41246499999999997, - 0.184438, - 0.032187, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.041436999999999995, - 0.258249, - 0.479285, - 0.633405, - 0.7324039999999999, - 0.77564, - 0.764101, - 0.7046720000000001, - 0.60539, - 0.45637900000000003, - 0.251317, - 0.042522, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.043442, - 0.261204, - 0.479028, - 0.628995, - 0.727423, - 0.7704249999999999, - 0.7588680000000001, - 0.695432, - 0.590086, - 0.44477, - 0.247013, - 0.043025, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023710000000000002, - 0.156916, - 0.290146, - 0.552496, - 0.615418, - 0.594812, - 0.589144, - 0.557578, - 0.423031, - 0.437151, - 0.241738, - 0.042901, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.046208, - 0.248043, - 0.44692200000000004, - 0.588581, - 0.682535, - 0.731596, - 0.732162, - 0.685685, - 0.585053, - 0.43715699999999996, - 0.236922, - 0.042259, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.048606, - 0.244159, - 0.438972, - 0.571936, - 0.645571, - 0.6850890000000001, - 0.701557, - 0.670985, - 0.583451, - 0.44072100000000003, - 0.24191300000000002, - 0.044289, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.052875, - 0.254266, - 0.3458, - 0.449639, - 0.6412279999999999, - 0.609991, - 0.596832, - 0.537481, - 0.495557, - 0.42534500000000003, - 0.179044, - 0.035669, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.05232, - 0.24854099999999998, - 0.341986, - 0.518261, - 0.686274, - 0.725561, - 0.714306, - 0.659125, - 0.420927, - 0.37704899999999997, - 0.185391, - 0.044886, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.055176, - 0.25230199999999997, - 0.44215, - 0.581354, - 0.693191, - 0.745133, - 0.746006, - 0.613351, - 0.5890650000000001, - 0.444975, - 0.24378, - 0.047523, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.062491, - 0.274924, - 0.48180900000000004, - 0.633382, - 0.737687, - 0.7884629999999999, - 0.188622, - 0.456774, - 0.45382, - 0.29539, - 0.114509, - 0.050733, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.064452, - 0.27839800000000003, - 0.481527, - 0.625073, - 0.7130850000000001, - 0.7543540000000001, - 0.759017, - 0.709175, - 0.607936, - 0.457104, - 0.12157899999999999, - 0.051923000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.06675, - 0.27018000000000003, - 0.45982799999999996, - 0.5907340000000001, - 0.6726, - 0.626512, - 0.625633, - 0.57292, - 0.52491, - 0.426621, - 0.238881, - 0.051368000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.06825400000000001, - 0.166576, - 0.337752, - 0.585789, - 0.692699, - 0.7125969999999999, - 0.5616319999999999, - 0.5876269999999999, - 0.5863590000000001, - 0.410388, - 0.17171899999999998, - 0.037293, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08026699999999999, - 0.311736, - 0.519514, - 0.66683, - 0.763806, - 0.8092659999999999, - 0.80059, - 0.740795, - 0.636042, - 0.481125, - 0.272969, - 0.05887, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.078956, - 0.29339, - 0.49027699999999996, - 0.6343759999999999, - 0.734832, - 0.7843730000000001, - 0.782467, - 0.735336, - 0.631993, - 0.477341, - 0.004889999999999999, - 0.0024980000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08752800000000001, - 0.32083999999999996, - 0.531154, - 0.680622, - 0.780645, - 0.8288110000000001, - 0.818589, - 0.760168, - 0.648649, - 0.491788, - 0.278853, - 0.062253, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.089488, - 0.315118, - 0.513361, - 0.654596, - 0.742654, - 0.778299, - 0.7636989999999999, - 0.593854, - 0.6107809999999999, - 0.46488, - 0.268236, - 0.062068, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08800100000000001, - 0.296363, - 0.401084, - 0.490665, - 0.657942, - 0.707991, - 0.720861, - 0.683225, - 0.594764, - 0.452683, - 0.26132, - 0.061418999999999994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09269, - 0.30482299999999996, - 0.339094, - 0.5310940000000001, - 0.7175549999999999, - 0.768336, - 0.7704589999999999, - 0.721499, - 0.622015, - 0.474979, - 0.27276100000000003, - 0.065489, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.099105, - 0.324137, - 0.527339, - 0.6756449999999999, - 0.768229, - 0.813423, - 0.8105209999999999, - 0.754867, - 0.647179, - 0.30854899999999996, - 0.2767, - 0.06858, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.105159, - 0.33068200000000003, - 0.532682, - 0.6793899999999999, - 0.778357, - 0.817264, - 0.807366, - 0.746788, - 0.638291, - 0.48389499999999996, - 0.277932, - 0.070545, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10826300000000001, - 0.33305599999999996, - 0.526687, - 0.664145, - 0.7474729999999999, - 0.7780739999999999, - 0.7610030000000001, - 0.705448, - 0.611265, - 0.473163, - 0.277534, - 0.070842, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07944, - 0.31741800000000003, - 0.495967, - 0.629851, - 0.720111, - 0.7658769999999999, - 0.761985, - 0.7114, - 0.609758, - 0.46101400000000003, - 0.271666, - 0.069745, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.109413, - 0.320778, - 0.500403, - 0.637115, - 0.7269450000000001, - 0.7744460000000001, - 0.775124, - 0.726168, - 0.621904, - 0.46916800000000003, - 0.247685, - 0.06397, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.116779, - 0.33581599999999995, - 0.5215660000000001, - 0.657805, - 0.753876, - 0.800246, - 0.799304, - 0.743024, - 0.638557, - 0.487832, - 0.287506, - 0.074242, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00039600000000000003, - 0.33508499999999997, - 0.315492, - 0.6711609999999999, - 0.15106299999999998, - 0.433596, - 0.8086810000000001, - 0.751201, - 0.5493049999999999, - 0.339786, - 0.061509, - 0.0025710000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.120556, - 0.33857, - 0.315758, - 0.669653, - 0.7632279999999999, - 0.8055739999999999, - 0.679415, - 0.735764, - 0.375935, - 0.190462, - 0.16362200000000002, - 0.036721, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00040100000000000004, - 0.33282, - 0.5311130000000001, - 0.16630899999999998, - 0.020974, - 0.067363, - 0.031985, - 0.12269100000000001, - 0.12139, - 0.221413, - 0.079731, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.085728, - 0.36663, - 0.56172, - 0.7031459999999999, - 0.788147, - 0.827765, - 0.814667, - 0.752943, - 0.645499, - 0.496529, - 0.294537, - 0.07916500000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0019850000000000002, - 0.12825299999999998, - 0.344555, - 0.521257, - 0.642079, - 0.704152, - 0.726666, - 0.734059, - 0.6994049999999999, - 0.6122089999999999, - 0.475781, - 0.282342, - 0.078566, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0024860000000000004, - 0.129666, - 0.341979, - 0.514204, - 0.637827, - 0.714459, - 0.7427659999999999, - 0.725581, - 0.682313, - 0.5966330000000001, - 0.462808, - 0.278949, - 0.078737, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002931, - 0.130802, - 0.341043, - 0.5051410000000001, - 0.61624, - 0.680727, - 0.714862, - 0.7262430000000001, - 0.693217, - 0.604402, - 0.466887, - 0.28166399999999997, - 0.078515, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005351, - 0.103737, - 0.340779, - 0.512291, - 0.533926, - 0.603131, - 0.750169, - 0.741364, - 0.6948049999999999, - 0.6015539999999999, - 0.464293, - 0.222612, - 0.07900700000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0048200000000000005, - 0.136212, - 0.348911, - 0.52075, - 0.638338, - 0.7057749999999999, - 0.728272, - 0.7036359999999999, - 0.64238, - 0.555282, - 0.433651, - 0.25991000000000003, - 0.077809, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0039169999999999995, - 0.132902, - 0.327289, - 0.49943099999999996, - 0.623662, - 0.714466, - 0.7379819999999999, - 0.7120019999999999, - 0.645931, - 0.547905, - 0.434427, - 0.269776, - 0.078567, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004395, - 0.140253, - 0.346389, - 0.506982, - 0.620054, - 0.6866369999999999, - 0.7093189999999999, - 0.700067, - 0.657883, - 0.5763400000000001, - 0.449305, - 0.276812, - 0.08149200000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0044800000000000005, - 0.14174799999999999, - 0.340475, - 0.49417500000000003, - 0.6169669999999999, - 0.705382, - 0.744146, - 0.741552, - 0.6948869999999999, - 0.6003229999999999, - 0.46051299999999995, - 0.284065, - 0.084875, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005914, - 0.14931999999999998, - 0.358197, - 0.526503, - 0.647513, - 0.730099, - 0.769931, - 0.762496, - 0.722365, - 0.624736, - 0.484547, - 0.299467, - 0.090544, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008154999999999999, - 0.08208700000000001, - 0.35286399999999996, - 0.503592, - 0.648299, - 0.626173, - 0.383484, - 0.446698, - 0.475339, - 0.178368, - 0.163679, - 0.104948, - 0.027759, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09802899999999999, - 0.259078, - 0.32610500000000003, - 0.381897, - 0.189616, - 0.476332, - 0.603183, - 0.537755, - 0.324527, - 0.35591500000000004, - 0.215447, - 0.08920499999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008484, - 0.155226, - 0.365468, - 0.537476, - 0.66938, - 0.755377, - 0.7961739999999999, - 0.78983, - 0.380897, - 0.472947, - 0.205452, - 0.120952, - 0.021072, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010284000000000001, - 0.16378600000000001, - 0.379092, - 0.549883, - 0.674282, - 0.7544270000000001, - 0.784396, - 0.763225, - 0.704767, - 0.604391, - 0.470884, - 0.28860800000000003, - 0.092624, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011672, - 0.16034, - 0.368438, - 0.539048, - 0.6661180000000001, - 0.7510399999999999, - 0.771501, - 0.7412880000000001, - 0.676354, - 0.577233, - 0.45210300000000003, - 0.28647500000000004, - 0.093061, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013548, - 0.162237, - 0.36579, - 0.53099, - 0.649633, - 0.718287, - 0.735898, - 0.709253, - 0.6583920000000001, - 0.574806, - 0.452233, - 0.278528, - 0.09145099999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014098000000000001, - 0.16071100000000002, - 0.355671, - 0.501487, - 0.6196309999999999, - 0.7067129999999999, - 0.748565, - 0.746015, - 0.698871, - 0.602509, - 0.463026, - 0.299421, - 0.096711, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014199, - 0.168587, - 0.37761399999999995, - 0.541717, - 0.658953, - 0.730346, - 0.7464299999999999, - 0.709284, - 0.651704, - 0.587295, - 0.465312, - 0.29039499999999996, - 0.095122, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015702999999999998, - 0.16558799999999999, - 0.367365, - 0.526586, - 0.6380309999999999, - 0.7057559999999999, - 0.7220610000000001, - 0.6947129999999999, - 0.65732, - 0.5859650000000001, - 0.460868, - 0.285677, - 0.094719, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015663, - 0.160244, - 0.360363, - 0.518244, - 0.630502, - 0.7020270000000001, - 0.721552, - 0.704256, - 0.647636, - 0.566264, - 0.443056, - 0.27703300000000003, - 0.094347, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017818, - 0.161547, - 0.348586, - 0.48762900000000003, - 0.594683, - 0.6775890000000001, - 0.717635, - 0.718139, - 0.674953, - 0.588174, - 0.45766199999999996, - 0.28566199999999997, - 0.09751699999999999, - 0.000884, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019586, - 0.171746, - 0.371196, - 0.505783, - 0.570112, - 0.6657609999999999, - 0.666184, - 0.766402, - 0.7146330000000001, - 0.5055149999999999, - 0.42571800000000004, - 0.264512, - 0.09479800000000001, - 0.001592, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023765, - 0.168226, - 0.314747, - 0.48953199999999997, - 0.6566609999999999, - 0.733024, - 0.775652, - 0.294155, - 0.34824099999999997, - 0.638282, - 0.498584, - 0.22563, - 0.111778, - 0.001849, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027780000000000003, - 0.17932900000000002, - 0.384343, - 0.281111, - 0.682115, - 0.768111, - 0.807403, - 0.712447, - 0.364597, - 0.082512, - 0.42072000000000004, - 0.228365, - 0.110783, - 0.002996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024001, - 0.187811, - 0.39814499999999997, - 0.563, - 0.491871, - 0.760876, - 0.787202, - 0.770135, - 0.511757, - 0.503337, - 0.470674, - 0.294127, - 0.104197, - 0.00276, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025634, - 0.17385599999999998, - 0.360719, - 0.511978, - 0.628001, - 0.7070660000000001, - 0.749035, - 0.745674, - 0.699461, - 0.60202, - 0.46660700000000005, - 0.290762, - 0.106836, - 0.002242, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030077000000000003, - 0.177895, - 0.368394, - 0.527759, - 0.65099, - 0.739336, - 0.78059, - 0.774771, - 0.7191230000000001, - 0.624389, - 0.48478, - 0.304426, - 0.10920099999999999, - 0.003985, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02982, - 0.182881, - 0.377786, - 0.532938, - 0.655054, - 0.738601, - 0.777452, - 0.770897, - 0.721355, - 0.6283719999999999, - 0.491968, - 0.31301, - 0.112516, - 0.0045780000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027966, - 0.188729, - 0.390241, - 0.549544, - 0.669653, - 0.7602380000000001, - 0.7978310000000001, - 0.78787, - 0.734248, - 0.637231, - 0.498815, - 0.316668, - 0.114202, - 0.0031269999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.029353, - 0.209994, - 0.429993, - 0.5952569999999999, - 0.712356, - 0.7816649999999999, - 0.811209, - 0.794807, - 0.735446, - 0.643344, - 0.506985, - 0.325111, - 0.120192, - 0.004144999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.032761000000000005, - 0.197406, - 0.405572, - 0.565692, - 0.6842050000000001, - 0.762223, - 0.798749, - 0.7916799999999999, - 0.7388790000000001, - 0.643138, - 0.5050520000000001, - 0.322899, - 0.120985, - 0.0054, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036361, - 0.193815, - 0.398789, - 0.564962, - 0.693448, - 0.7761849999999999, - 0.812235, - 0.712507, - 0.167505, - 0.48988299999999996, - 0.503308, - 0.317582, - 0.11928, - 0.005496, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.035205, - 0.19121000000000002, - 0.389172, - 0.548788, - 0.6688390000000001, - 0.747393, - 0.78587, - 0.7790860000000001, - 0.7334189999999999, - 0.637138, - 0.406315, - 0.27494, - 0.108342, - 0.007724, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034149, - 0.190958, - 0.391731, - 0.559068, - 0.688788, - 0.774586, - 0.81349, - 0.807757, - 0.750432, - 0.6541119999999999, - 0.514418, - 0.331288, - 0.12529099999999999, - 0.005084, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031354, - 0.199011, - 0.403476, - 0.558457, - 0.664685, - 0.7215069999999999, - 0.742147, - 0.728673, - 0.6881799999999999, - 0.6027830000000001, - 0.47908300000000004, - 0.312613, - 0.120687, - 0.004825, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031899000000000004, - 0.201569, - 0.40648700000000004, - 0.560793, - 0.672029, - 0.739583, - 0.761017, - 0.7408250000000001, - 0.682249, - 0.585124, - 0.467391, - 0.312076, - 0.121537, - 0.00521, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.032219000000000005, - 0.196378, - 0.39269400000000004, - 0.5413490000000001, - 0.652509, - 0.713539, - 0.7286950000000001, - 0.7007380000000001, - 0.6407999999999999, - 0.5752970000000001, - 0.46989600000000004, - 0.308466, - 0.120066, - 0.005534, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031833, - 0.191333, - 0.37551999999999996, - 0.514594, - 0.6312989999999999, - 0.711431, - 0.751192, - 0.7492859999999999, - 0.703858, - 0.614596, - 0.48463799999999996, - 0.314851, - 0.12098600000000001, - 0.004995, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031925, - 0.197052, - 0.38814800000000005, - 0.524762, - 0.626928, - 0.692374, - 0.716143, - 0.7076140000000001, - 0.661907, - 0.584851, - 0.469053, - 0.306459, - 0.121005, - 0.005863, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.033595, - 0.18772, - 0.371257, - 0.515101, - 0.626413, - 0.7079650000000001, - 0.7441380000000001, - 0.7432519999999999, - 0.698558, - 0.611916, - 0.485512, - 0.319841, - 0.126107, - 0.005994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.03284, - 0.19814400000000001, - 0.290743, - 0.547235, - 0.668337, - 0.5950030000000001, - 0.781571, - 0.7700779999999999, - 0.720268, - 0.63188, - 0.49784300000000004, - 0.326458, - 0.128452, - 0.0070599999999999994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.037232999999999995, - 0.203264, - 0.40596699999999997, - 0.5646939999999999, - 0.6863239999999999, - 0.766539, - 0.802354, - 0.79383, - 0.7449990000000001, - 0.6507580000000001, - 0.5147419999999999, - 0.33799, - 0.13438, - 0.007757, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.041719, - 0.205837, - 0.403714, - 0.562225, - 0.68536, - 0.770467, - 0.8036190000000001, - 0.794658, - 0.741831, - 0.646501, - 0.511359, - 0.334588, - 0.1348, - 0.009633, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.04112, - 0.200904, - 0.39056799999999997, - 0.53426, - 0.642923, - 0.719899, - 0.747913, - 0.737051, - 0.695397, - 0.611998, - 0.490318, - 0.326181, - 0.13218000000000002, - 0.009722, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.037342, - 0.199108, - 0.386202, - 0.529931, - 0.63807, - 0.70993, - 0.734398, - 0.719234, - 0.675148, - 0.594846, - 0.474974, - 0.313772, - 0.129152, - 0.009791000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038433, - 0.196039, - 0.375925, - 0.517062, - 0.630891, - 0.7089249999999999, - 0.743894, - 0.738548, - 0.55279, - 0.606056, - 0.479606, - 0.285516, - 0.126634, - 0.011359, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036768, - 0.15032900000000002, - 0.38269600000000004, - 0.525587, - 0.633947, - 0.710306, - 0.7484339999999999, - 0.74164, - 0.696926, - 0.611206, - 0.48445900000000003, - 0.322266, - 0.133146, - 0.011651, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.035557000000000005, - 0.140129, - 0.275218, - 0.281443, - 0.555212, - 0.6315449999999999, - 0.538423, - 0.37727999999999995, - 0.13103, - 0.4337, - 0.204493, - 0.322255, - 0.12813999999999998, - 0.013416, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036653, - 0.182499, - 0.368115, - 0.527369, - 0.6296029999999999, - 0.699947, - 0.7440410000000001, - 0.678689, - 0.5085149999999999, - 0.525531, - 0.44005099999999997, - 0.255466, - 0.109786, - 0.014183999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036136, - 0.14699500000000001, - 0.288489, - 0.24065799999999998, - 0.49988900000000003, - 0.578037, - 0.650356, - 0.63781, - 0.596899, - 0.30871699999999996, - 0.27147000000000004, - 0.195782, - 0.079908, - 0.01413, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038274, - 0.18654300000000001, - 0.370752, - 0.51515, - 0.626788, - 0.691193, - 0.7007329999999999, - 0.6703049999999999, - 0.622845, - 0.5563400000000001, - 0.45074400000000003, - 0.298825, - 0.13105799999999998, - 0.014851000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038943, - 0.189664, - 0.370415, - 0.510782, - 0.621888, - 0.698824, - 0.73695, - 0.736352, - 0.69389, - 0.608862, - 0.48343, - 0.32593700000000003, - 0.138957, - 0.015052, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025207, - 0.086544, - 0.2025, - 0.14699500000000001, - 0.178921, - 0.595679, - 0.511918, - 0.746797, - 0.712818, - 0.496055, - 0.49797, - 0.328073, - 0.142975, - 0.016474, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.041927, - 0.198898, - 0.393727, - 0.550537, - 0.6721630000000001, - 0.752691, - 0.791807, - 0.78639, - 0.738726, - 0.645733, - 0.5130410000000001, - 0.34267200000000003, - 0.146853, - 0.017783999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.042822000000000006, - 0.218983, - 0.42624900000000004, - 0.585924, - 0.714679, - 0.796581, - 0.833333, - 0.825641, - 0.768677, - 0.673288, - 0.537254, - 0.365889, - 0.158408, - 0.016905999999999997, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.04112, - 0.222062, - 0.43511500000000003, - 0.5996760000000001, - 0.723688, - 0.800942, - 0.823935, - 0.770372, - 0.7555660000000001, - 0.6604990000000001, - 0.5272519999999999, - 0.356379, - 0.154811, - 0.016048, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.039738, - 0.211647, - 0.410432, - 0.561813, - 0.668283, - 0.731834, - 0.7558980000000001, - 0.7365499999999999, - 0.680978, - 0.5893010000000001, - 0.475823, - 0.331582, - 0.146741, - 0.01765, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.040382, - 0.205578, - 0.396413, - 0.54189, - 0.649263, - 0.7105090000000001, - 0.7303, - 0.715977, - 0.676191, - 0.603606, - 0.488602, - 0.335844, - 0.148165, - 0.017107, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038153, - 0.195684, - 0.380589, - 0.527771, - 0.645433, - 0.726718, - 0.766889, - 0.765923, - 0.72449, - 0.6376000000000001, - 0.510811, - 0.348852, - 0.153234, - 0.017542000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.040301000000000003, - 0.21276499999999998, - 0.397152, - 0.5613859999999999, - 0.657985, - 0.736112, - 0.799551, - 0.793873, - 0.743774, - 0.653672, - 0.52134, - 0.354842, - 0.15535, - 0.019489, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.041442, - 0.20097900000000002, - 0.40434800000000004, - 0.555787, - 0.6736019999999999, - 0.7528590000000001, - 0.7892509999999999, - 0.783377, - 0.734248, - 0.642808, - 0.512617, - 0.349675, - 0.15282099999999998, - 0.018852, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.040202, - 0.20501499999999998, - 0.39755, - 0.540271, - 0.639068, - 0.692349, - 0.700532, - 0.688028, - 0.6645460000000001, - 0.602483, - 0.488937, - 0.33738999999999997, - 0.149673, - 0.020681, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.040042, - 0.197246, - 0.37905399999999995, - 0.5143049999999999, - 0.6287820000000001, - 0.707105, - 0.7448049999999999, - 0.743107, - 0.7003659999999999, - 0.616591, - 0.486174, - 0.33345400000000003, - 0.143232, - 0.018938, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038765999999999995, - 0.197042, - 0.387881, - 0.538791, - 0.657811, - 0.7370359999999999, - 0.774551, - 0.770784, - 0.7249329999999999, - 0.63695, - 0.509798, - 0.34986900000000004, - 0.154938, - 0.019857, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.041406, - 0.19886099999999998, - 0.388235, - 0.535121, - 0.6438630000000001, - 0.705975, - 0.725391, - 0.714668, - 0.678412, - 0.606443, - 0.491455, - 0.340374, - 0.152591, - 0.021883, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.040060000000000005, - 0.19684100000000002, - 0.387821, - 0.5342619999999999, - 0.637538, - 0.692408, - 0.7136520000000001, - 0.7049460000000001, - 0.6715800000000001, - 0.602635, - 0.4875, - 0.337202, - 0.15294999999999997, - 0.021945, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.043266, - 0.192819, - 0.37493400000000005, - 0.514085, - 0.619599, - 0.692432, - 0.731464, - 0.731559, - 0.690725, - 0.602467, - 0.48736399999999996, - 0.33621100000000004, - 0.15224100000000002, - 0.021474, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.039131, - 0.191453, - 0.37524, - 0.5184489999999999, - 0.624524, - 0.693374, - 0.721629, - 0.719843, - 0.684012, - 0.6048920000000001, - 0.486957, - 0.333826, - 0.151323, - 0.020812999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.037859000000000004, - 0.19366999999999998, - 0.381596, - 0.526567, - 0.638955, - 0.714146, - 0.751456, - 0.748071, - 0.7045220000000001, - 0.620471, - 0.498634, - 0.343065, - 0.154632, - 0.020844, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.035847000000000004, - 0.19053299999999998, - 0.376516, - 0.517941, - 0.626421, - 0.7018220000000001, - 0.739202, - 0.738702, - 0.6984400000000001, - 0.61653, - 0.495889, - 0.343176, - 0.155891, - 0.020914000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034868, - 0.189607, - 0.373081, - 0.512719, - 0.619819, - 0.676603, - 0.7242970000000001, - 0.730967, - 0.692896, - 0.613929, - 0.48014, - 0.328728, - 0.152944, - 0.019939, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.033680999999999996, - 0.16467400000000001, - 0.319664, - 0.461029, - 0.618574, - 0.6915159999999999, - 0.7179, - 0.716426, - 0.605262, - 0.549984, - 0.431166, - 0.26499, - 0.14321199999999998, - 0.021338, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.033055, - 0.158804, - 0.333644, - 0.475215, - 0.588523, - 0.71125, - 0.725481, - 0.70569, - 0.695136, - 0.6300159999999999, - 0.506945, - 0.351519, - 0.159383, - 0.020635999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.033642000000000005, - 0.180592, - 0.35109199999999996, - 0.478918, - 0.5865560000000001, - 0.660199, - 0.6980270000000001, - 0.696112, - 0.655494, - 0.37572300000000003, - 0.231172, - 0.316745, - 0.14757900000000002, - 0.022646, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.033409999999999995, - 0.178671, - 0.357849, - 0.50072, - 0.609645, - 0.686665, - 0.724547, - 0.725538, - 0.685388, - 0.605172, - 0.485137, - 0.33492, - 0.153879, - 0.022616, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.034295, - 0.18945099999999998, - 0.3822, - 0.536862, - 0.659258, - 0.744155, - 0.783871, - 0.7787029999999999, - 0.7316630000000001, - 0.6435420000000001, - 0.515283, - 0.35550099999999996, - 0.161887, - 0.021529, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.037520000000000005, - 0.197154, - 0.39357400000000003, - 0.5398099999999999, - 0.642197, - 0.699843, - 0.730161, - 0.732009, - 0.6996359999999999, - 0.627283, - 0.509817, - 0.35464999999999997, - 0.161286, - 0.02129, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031948, - 0.188439, - 0.37681, - 0.513817, - 0.614227, - 0.689768, - 0.733209, - 0.738884, - 0.702857, - 0.624936, - 0.505193, - 0.35572699999999996, - 0.162479, - 0.017716000000000003, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028822, - 0.195447, - 0.393019, - 0.5397329999999999, - 0.645183, - 0.704693, - 0.73956, - 0.739881, - 0.7017279999999999, - 0.6262190000000001, - 0.50915, - 0.355665, - 0.16354400000000002, - 0.018168, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028170999999999998, - 0.195689, - 0.39605399999999996, - 0.546616, - 0.65837, - 0.729157, - 0.766378, - 0.763892, - 0.722227, - 0.640786, - 0.51985, - 0.362557, - 0.165882, - 0.017826, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027849, - 0.193765, - 0.39143700000000003, - 0.5340499999999999, - 0.627211, - 0.6825249999999999, - 0.711657, - 0.7111559999999999, - 0.676004, - 0.6043440000000001, - 0.494711, - 0.346157, - 0.15918100000000002, - 0.016695, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.026806, - 0.187631, - 0.374859, - 0.503897, - 0.586672, - 0.656679, - 0.5724859999999999, - 0.700259, - 0.640009, - 0.5685119999999999, - 0.45714499999999997, - 0.325433, - 0.149855, - 0.021518000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.029771000000000002, - 0.167203, - 0.34266800000000003, - 0.480284, - 0.585948, - 0.657707, - 0.692002, - 0.689659, - 0.587314, - 0.587776, - 0.473223, - 0.323367, - 0.147375, - 0.021834, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.033407, - 0.159736, - 0.335692, - 0.47524099999999997, - 0.5831069999999999, - 0.658111, - 0.699041, - 0.61314, - 0.583372, - 0.585461, - 0.470721, - 0.322364, - 0.14804900000000001, - 0.023818000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028475, - 0.169211, - 0.356615, - 0.506901, - 0.622581, - 0.7033579999999999, - 0.742394, - 0.7405900000000001, - 0.704444, - 0.6230289999999999, - 0.501395, - 0.346339, - 0.156408, - 0.017728999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024974, - 0.175667, - 0.368088, - 0.521645, - 0.640152, - 0.719812, - 0.7597849999999999, - 0.758857, - 0.716019, - 0.6316, - 0.509522, - 0.356269, - 0.161958, - 0.017498, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0265, - 0.171648, - 0.358034, - 0.504274, - 0.61488, - 0.6888540000000001, - 0.7294039999999999, - 0.7289439999999999, - 0.693065, - 0.610286, - 0.48495499999999997, - 0.332512, - 0.152704, - 0.023977000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022515999999999998, - 0.084023, - 0.277282, - 0.204399, - 0.533362, - 0.5530109999999999, - 0.496407, - 0.536986, - 0.506528, - 0.290825, - 0.377672, - 0.273443, - 0.10129200000000001, - 0.020077, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.029623999999999998, - 0.169984, - 0.35880900000000004, - 0.519102, - 0.644633, - 0.735249, - 0.774864, - 0.7689239999999999, - 0.7279500000000001, - 0.646058, - 0.52147, - 0.361056, - 0.163673, - 0.016846, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022645, - 0.174845, - 0.371355, - 0.523745, - 0.636038, - 0.711097, - 0.749275, - 0.747565, - 0.709711, - 0.631049, - 0.510715, - 0.3525, - 0.15849000000000002, - 0.015778, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020832999999999997, - 0.17463900000000002, - 0.368286, - 0.5166069999999999, - 0.6230829999999999, - 0.69323, - 0.733054, - 0.730793, - 0.6929460000000001, - 0.614465, - 0.49593400000000004, - 0.341185, - 0.152788, - 0.016417, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.006144, - 0.07465000000000001, - 0.270973, - 0.37614, - 0.463733, - 0.323115, - 0.416686, - 0.418754, - 0.47887799999999997, - 0.5608730000000001, - 0.455164, - 0.325289, - 0.14563900000000002, - 0.017425, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008376, - 0.096971, - 0.333249, - 0.47708300000000003, - 0.5870700000000001, - 0.667234, - 0.705943, - 0.7063740000000001, - 0.6654779999999999, - 0.589662, - 0.472858, - 0.320355, - 0.14424700000000001, - 0.017287, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.020425000000000002, - 0.15854, - 0.34454, - 0.49261900000000003, - 0.607958, - 0.687275, - 0.727647, - 0.726949, - 0.689226, - 0.6100140000000001, - 0.49165499999999995, - 0.338763, - 0.150404, - 0.015352000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018639, - 0.165161, - 0.359976, - 0.511953, - 0.6245689999999999, - 0.700379, - 0.740152, - 0.7385900000000001, - 0.6966950000000001, - 0.616583, - 0.496722, - 0.341349, - 0.15143299999999998, - 0.015276999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017901, - 0.16643799999999997, - 0.363272, - 0.517631, - 0.635094, - 0.713886, - 0.755038, - 0.752393, - 0.7103630000000001, - 0.62615, - 0.502616, - 0.34526100000000004, - 0.151745, - 0.013311, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016861, - 0.16393100000000002, - 0.357118, - 0.510175, - 0.627952, - 0.712211, - 0.755189, - 0.755255, - 0.71515, - 0.633672, - 0.51157, - 0.353733, - 0.15578399999999998, - 0.012785999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016267, - 0.166452, - 0.36075, - 0.5108469999999999, - 0.628792, - 0.711665, - 0.7528210000000001, - 0.7519710000000001, - 0.71325, - 0.6281749999999999, - 0.504735, - 0.348151, - 0.152898, - 0.012986000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016765000000000002, - 0.16118700000000002, - 0.350588, - 0.5028210000000001, - 0.6194550000000001, - 0.6994199999999999, - 0.738958, - 0.7347469999999999, - 0.697543, - 0.6142029999999999, - 0.491095, - 0.334322, - 0.14533000000000001, - 0.013602, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017179, - 0.150042, - 0.332447, - 0.478684, - 0.5913390000000001, - 0.669427, - 0.710054, - 0.706696, - 0.6671119999999999, - 0.585976, - 0.46509500000000004, - 0.315475, - 0.132756, - 0.008747, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002205, - 0.060121, - 0.06674200000000001, - 0.061644, - 0.5719059999999999, - 0.574131, - 0.665625, - 0.057652999999999996, - 0.18019200000000002, - 0.15434, - 0.020325, - 0.11923600000000001, - 0.014959, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016055, - 0.14385499999999998, - 0.32550999999999997, - 0.468585, - 0.5821810000000001, - 0.6652619999999999, - 0.707637, - 0.709312, - 0.671417, - 0.59437, - 0.47650400000000004, - 0.323766, - 0.13886, - 0.012132, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013907, - 0.15060300000000001, - 0.338698, - 0.490125, - 0.6058819999999999, - 0.687158, - 0.7290249999999999, - 0.728403, - 0.692297, - 0.609715, - 0.487755, - 0.326013, - 0.13918799999999998, - 0.011949, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013433, - 0.147872, - 0.33881, - 0.490784, - 0.6050829999999999, - 0.68032, - 0.7208, - 0.723591, - 0.6853440000000001, - 0.60637, - 0.487599, - 0.328384, - 0.139934, - 0.010964, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.01367, - 0.143287, - 0.32917599999999997, - 0.479076, - 0.5934510000000001, - 0.6749120000000001, - 0.715701, - 0.714788, - 0.679074, - 0.5981029999999999, - 0.476885, - 0.319809, - 0.134625, - 0.009939, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013558, - 0.144707, - 0.331373, - 0.48279700000000003, - 0.598018, - 0.67574, - 0.7144149999999999, - 0.714332, - 0.677572, - 0.5981799999999999, - 0.47788099999999994, - 0.31953699999999996, - 0.133824, - 0.00968, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011961000000000001, - 0.142739, - 0.332787, - 0.485333, - 0.5991409999999999, - 0.673432, - 0.713125, - 0.711305, - 0.66795, - 0.5905549999999999, - 0.473401, - 0.31971, - 0.13300399999999998, - 0.008078, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011664999999999998, - 0.142928, - 0.329692, - 0.481033, - 0.594195, - 0.672692, - 0.713345, - 0.713251, - 0.678145, - 0.596621, - 0.47567200000000004, - 0.318065, - 0.131356, - 0.007741, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010717, - 0.141215, - 0.32306999999999997, - 0.472989, - 0.5841989999999999, - 0.663044, - 0.702528, - 0.700881, - 0.658143, - 0.5762480000000001, - 0.455995, - 0.306647, - 0.12728799999999998, - 0.0070739999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.051, - 0.008494, - 0.39469099999999996, - 0.592891, - 0.5977140000000001, - 0.625775, - 0.633501, - 0.666396, - 0.587482, - 0.466099, - 0.312025, - 0.127938, - 0.006742, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.010239000000000002, - 0.136447, - 0.321606, - 0.47143799999999997, - 0.584718, - 0.666158, - 0.711609, - 0.7137279999999999, - 0.673858, - 0.5951799999999999, - 0.474097, - 0.318847, - 0.128992, - 0.005772, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008298, - 0.141035, - 0.331121, - 0.481951, - 0.5919260000000001, - 0.66831, - 0.703824, - 0.704922, - 0.66969, - 0.591263, - 0.470706, - 0.31249099999999996, - 0.124811, - 0.00512, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008267, - 0.13709100000000002, - 0.324084, - 0.47602300000000003, - 0.590712, - 0.6668339999999999, - 0.707945, - 0.705119, - 0.5290860000000001, - 0.582878, - 0.460252, - 0.304499, - 0.12271800000000001, - 0.005093, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008072, - 0.133481, - 0.320299, - 0.47744600000000004, - 0.5994700000000001, - 0.686033, - 0.731494, - 0.7350220000000001, - 0.690578, - 0.6070180000000001, - 0.480834, - 0.321745, - 0.126792, - 0.004812, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.00779, - 0.144517, - 0.34993599999999997, - 0.5198740000000001, - 0.646922, - 0.735993, - 0.777798, - 0.7723669999999999, - 0.727992, - 0.6371749999999999, - 0.504147, - 0.33224400000000004, - 0.128842, - 0.0031720000000000003, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005487, - 0.143456, - 0.34610599999999997, - 0.5088360000000001, - 0.6307910000000001, - 0.7117910000000001, - 0.75539, - 0.754596, - 0.7095990000000001, - 0.6220979999999999, - 0.492528, - 0.325678, - 0.125438, - 0.00323, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.005373, - 0.143227, - 0.347498, - 0.507187, - 0.623888, - 0.698751, - 0.743804, - 0.7470289999999999, - 0.7061799999999999, - 0.621328, - 0.49452999999999997, - 0.327817, - 0.12532, - 0.002697, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004726, - 0.140213, - 0.342374, - 0.503129, - 0.623875, - 0.705729, - 0.750364, - 0.7530359999999999, - 0.708913, - 0.623654, - 0.494181, - 0.32613400000000003, - 0.124193, - 0.002797, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004099, - 0.138907, - 0.33822199999999997, - 0.49629399999999996, - 0.6172190000000001, - 0.699663, - 0.744261, - 0.7467849999999999, - 0.7037709999999999, - 0.618878, - 0.49122699999999997, - 0.322232, - 0.12040000000000001, - 0.004202, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004652999999999999, - 0.13662100000000002, - 0.335481, - 0.500767, - 0.628244, - 0.71245, - 0.754878, - 0.750611, - 0.7082430000000001, - 0.6189020000000001, - 0.488597, - 0.318644, - 0.117093, - 0.003629, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004006, - 0.12913999999999998, - 0.322255, - 0.47945299999999996, - 0.598459, - 0.6774779999999999, - 0.715392, - 0.712467, - 0.671119, - 0.583727, - 0.45869600000000005, - 0.29936399999999996, - 0.108293, - 0.0029519999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003899, - 0.12675799999999998, - 0.31815499999999997, - 0.47454399999999997, - 0.587348, - 0.665582, - 0.70674, - 0.706788, - 0.6687759999999999, - 0.585743, - 0.46137599999999995, - 0.296981, - 0.105639, - 0.002359, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003335, - 0.12366200000000001, - 0.312546, - 0.465404, - 0.559199, - 0.5404, - 0.70363, - 0.70052, - 0.5617179999999999, - 0.439291, - 0.400668, - 0.265927, - 0.091641, - 0.001224, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002798, - 0.1184, - 0.31002199999999996, - 0.46475900000000003, - 0.579596, - 0.654808, - 0.694721, - 0.69426, - 0.653168, - 0.570881, - 0.44455700000000004, - 0.27406400000000003, - 0.09713899999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002406, - 0.11888800000000001, - 0.306836, - 0.458847, - 0.5712240000000001, - 0.640745, - 0.679603, - 0.678552, - 0.6374, - 0.555199, - 0.42962, - 0.265231, - 0.092832, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003706, - 0.11653400000000001, - 0.303732, - 0.457692, - 0.5733769999999999, - 0.6570170000000001, - 0.697658, - 0.698473, - 0.658043, - 0.573277, - 0.445885, - 0.278466, - 0.095026, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0037029999999999997, - 0.119132, - 0.310663, - 0.471481, - 0.5915940000000001, - 0.675332, - 0.7174109999999999, - 0.717658, - 0.673609, - 0.586452, - 0.459546, - 0.28980399999999995, - 0.09557500000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004319, - 0.103644, - 0.32169099999999995, - 0.487144, - 0.551172, - 0.69414, - 0.673451, - 0.7319589999999999, - 0.687357, - 0.596832, - 0.466117, - 0.29257299999999997, - 0.094847, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.003241, - 0.125825, - 0.32913600000000004, - 0.491283, - 0.608404, - 0.685315, - 0.726881, - 0.727384, - 0.67992, - 0.592128, - 0.46148, - 0.287145, - 0.090999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002592, - 0.121434, - 0.31897699999999996, - 0.481742, - 0.599483, - 0.674786, - 0.710134, - 0.7068369999999999, - 0.6632129999999999, - 0.575431, - 0.44741699999999995, - 0.275254, - 0.08604300000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.002052, - 0.11815600000000001, - 0.316576, - 0.481294, - 0.60136, - 0.6816319999999999, - 0.719354, - 0.711635, - 0.66908, - 0.577789, - 0.445101, - 0.274327, - 0.08402899999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0021469999999999996, - 0.119984, - 0.325624, - 0.496, - 0.621972, - 0.7033809999999999, - 0.745115, - 0.739527, - 0.690571, - 0.597995, - 0.463714, - 0.285745, - 0.0858, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0015609999999999999, - 0.118184, - 0.31664299999999995, - 0.475954, - 0.59654, - 0.678072, - 0.717777, - 0.713781, - 0.671649, - 0.580697, - 0.448352, - 0.27414499999999997, - 0.080693, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.000907, - 0.10832699999999999, - 0.293983, - 0.45682799999999996, - 0.5807089999999999, - 0.663621, - 0.704661, - 0.703154, - 0.570496, - 0.490773, - 0.372096, - 0.251903, - 0.073857, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.103695, - 0.284952, - 0.414459, - 0.514033, - 0.646885, - 0.600637, - 0.5662229999999999, - 0.5573210000000001, - 0.162833, - 0.100768, - 0.22199100000000002, - 0.071107, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.103206, - 0.29133499999999996, - 0.44874200000000003, - 0.5677380000000001, - 0.652242, - 0.693485, - 0.6906359999999999, - 0.6478160000000001, - 0.5596810000000001, - 0.427318, - 0.255113, - 0.069294, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.105546, - 0.297691, - 0.44755399999999995, - 0.55668, - 0.636774, - 0.678643, - 0.6782229999999999, - 0.636747, - 0.550224, - 0.42310899999999996, - 0.25056, - 0.066012, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.104811, - 0.293671, - 0.43728500000000003, - 0.542678, - 0.613101, - 0.644374, - 0.641531, - 0.605519, - 0.38060000000000005, - 0.248685, - 0.218975, - 0.062952, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.041209, - 0.287834, - 0.44327999999999995, - 0.560703, - 0.646821, - 0.688198, - 0.6843769999999999, - 0.319996, - 0.033862, - 0.411325, - 0.061418999999999994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09678, - 0.273964, - 0.42163799999999996, - 0.531984, - 0.616543, - 0.6516109999999999, - 0.649445, - 0.610274, - 0.463975, - 0.349865, - 0.24739, - 0.060881, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10677800000000001, - 0.30363, - 0.457733, - 0.575913, - 0.655412, - 0.697217, - 0.6968300000000001, - 0.651571, - 0.56072, - 0.425363, - 0.244651, - 0.058516, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10578, - 0.305517, - 0.45350599999999996, - 0.5525890000000001, - 0.6343880000000001, - 0.674273, - 0.18954300000000002, - 0.02104, - 0.016468, - 0.41572699999999996, - 0.237429, - 0.055146, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.100547, - 0.294126, - 0.453463, - 0.573006, - 0.651343, - 0.687822, - 0.681296, - 0.24521700000000002, - 0.20402099999999998, - 0.049485, - 0.165898, - 0.053232999999999996, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09804399999999999, - 0.29430700000000004, - 0.44932, - 0.5666599999999999, - 0.64324, - 0.676222, - 0.668314, - 0.620078, - 0.527533, - 0.39703, - 0.220797, - 0.049773000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.095766, - 0.285087, - 0.443277, - 0.555987, - 0.630669, - 0.662021, - 0.653458, - 0.604665, - 0.5159790000000001, - 0.160728, - 0.21544300000000002, - 0.019963, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.094664, - 0.283039, - 0.445112, - 0.560492, - 0.642205, - 0.680275, - 0.676956, - 0.6302150000000001, - 0.536471, - 0.40004399999999996, - 0.219795, - 0.04439, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.094322, - 0.284843, - 0.44501999999999997, - 0.564142, - 0.646529, - 0.685341, - 0.6824349999999999, - 0.634381, - 0.5359539999999999, - 0.39334800000000003, - 0.21319, - 0.04134, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.100071, - 0.30755200000000005, - 0.484047, - 0.609601, - 0.692317, - 0.728324, - 0.719368, - 0.6709210000000001, - 0.570039, - 0.425938, - 0.228274, - 0.042527, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.100576, - 0.310529, - 0.490254, - 0.617924, - 0.700704, - 0.738758, - 0.725837, - 0.670923, - 0.569414, - 0.423811, - 0.22773400000000002, - 0.040129, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.096688, - 0.296982, - 0.462267, - 0.584386, - 0.6715220000000001, - 0.7120700000000001, - 0.705865, - 0.654162, - 0.55788, - 0.417105, - 0.222715, - 0.037112, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.094015, - 0.297892, - 0.463688, - 0.580667, - 0.65659, - 0.683769, - 0.664187, - 0.603245, - 0.507748, - 0.381339, - 0.204911, - 0.032825, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.089437, - 0.288495, - 0.450819, - 0.563432, - 0.6369450000000001, - 0.663785, - 0.646377, - 0.584783, - 0.495367, - 0.371068, - 0.19668, - 0.030812000000000003, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.085122, - 0.280087, - 0.443914, - 0.56216, - 0.640024, - 0.6776599999999999, - 0.672249, - 0.617878, - 0.517169, - 0.37389100000000003, - 0.18049, - 0.024440999999999997, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.082076, - 0.262995, - 0.430628, - 0.557104, - 0.653967, - 0.690711, - 0.6798630000000001, - 0.6282920000000001, - 0.519812, - 0.36776299999999995, - 0.19318100000000002, - 0.026951, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.093292, - 0.30844099999999997, - 0.49885199999999996, - 0.6368590000000001, - 0.7314550000000001, - 0.770456, - 0.755887, - 0.695492, - 0.581945, - 0.424542, - 0.21530000000000002, - 0.02658, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.097021, - 0.321579, - 0.512035, - 0.650868, - 0.737379, - 0.774154, - 0.7584919999999999, - 0.692058, - 0.580783, - 0.42652999999999996, - 0.214105, - 0.02451, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.094604, - 0.314513, - 0.501854, - 0.631984, - 0.716062, - 0.748725, - 0.72917, - 0.666026, - 0.558239, - 0.407743, - 0.20517, - 0.020307, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.090443, - 0.30183, - 0.47558, - 0.59437, - 0.6673680000000001, - 0.695031, - 0.6782619999999999, - 0.617726, - 0.523592, - 0.386385, - 0.191911, - 0.016558, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.083661, - 0.28184, - 0.462051, - 0.594452, - 0.6847190000000001, - 0.722514, - 0.713658, - 0.6546770000000001, - 0.5496449999999999, - 0.395652, - 0.190338, - 0.013626, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08790600000000001, - 0.302577, - 0.485401, - 0.608275, - 0.6831430000000001, - 0.709656, - 0.68916, - 0.6254829999999999, - 0.5240739999999999, - 0.379986, - 0.185525, - 0.011703, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08412900000000001, - 0.288859, - 0.46193599999999996, - 0.588503, - 0.669823, - 0.706303, - 0.694404, - 0.631456, - 0.524109, - 0.37300599999999995, - 0.174322, - 0.010048999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.076842, - 0.26517, - 0.43738499999999997, - 0.572268, - 0.680645, - 0.7228920000000001, - 0.7130230000000001, - 0.652085, - 0.54532, - 0.392127, - 0.183145, - 0.009888999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.084713, - 0.30424799999999996, - 0.495755, - 0.6296470000000001, - 0.7134429999999999, - 0.746826, - 0.728238, - 0.6620940000000001, - 0.54926, - 0.390058, - 0.178299, - 0.008067999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08281699999999999, - 0.297822, - 0.484236, - 0.61248, - 0.6902010000000001, - 0.719336, - 0.69736, - 0.631652, - 0.522306, - 0.371261, - 0.16936400000000001, - 0.00624, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.079842, - 0.293498, - 0.47559199999999996, - 0.600124, - 0.6790470000000001, - 0.7072419999999999, - 0.685289, - 0.619202, - 0.514371, - 0.364967, - 0.164196, - 0.005873000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.073725, - 0.27306400000000003, - 0.44398200000000004, - 0.566296, - 0.650169, - 0.686335, - 0.675346, - 0.621106, - 0.517038, - 0.36465, - 0.160661, - 0.004835, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.076723, - 0.28345800000000004, - 0.45745800000000003, - 0.578323, - 0.654049, - 0.68402, - 0.667159, - 0.6094579999999999, - 0.507566, - 0.357259, - 0.156128, - 0.00347, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.059387, - 0.245905, - 0.371063, - 0.577198, - 0.5749890000000001, - 0.545766, - 0.563027, - 0.40292700000000004, - 0.200211, - 0.35852, - 0.154666, - 0.002508, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.068218, - 0.263673, - 0.43150900000000003, - 0.547331, - 0.577388, - 0.6052240000000001, - 0.5845009999999999, - 0.504705, - 0.376124, - 0.24774600000000002, - 0.080129, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.067448, - 0.26474000000000003, - 0.439631, - 0.501317, - 0.587448, - 0.558698, - 0.356151, - 0.425711, - 0.257269, - 0.24675299999999997, - 0.047415, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.066188, - 0.260146, - 0.423949, - 0.546438, - 0.626352, - 0.662018, - 0.6532720000000001, - 0.594037, - 0.48781599999999997, - 0.333895, - 0.135472, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038423, - 0.232245, - 0.428281, - 0.54857, - 0.628002, - 0.662551, - 0.6523669999999999, - 0.593091, - 0.485763, - 0.3312, - 0.132563, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.062842, - 0.259795, - 0.439276, - 0.564822, - 0.6496430000000001, - 0.68271, - 0.671639, - 0.606659, - 0.493876, - 0.331801, - 0.129773, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.061281999999999996, - 0.26401100000000005, - 0.45386000000000004, - 0.588178, - 0.6725760000000001, - 0.706539, - 0.690717, - 0.625009, - 0.38653899999999997, - 0.245025, - 0.012269, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.054775, - 0.054612, - 0.217751, - 0.598576, - 0.347933, - 0.7161660000000001, - 0.6978, - 0.147157, - 0.207529, - 0.348006, - 0.003243, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.064946, - 0.284012, - 0.480082, - 0.6123999999999999, - 0.692093, - 0.724176, - 0.10127, - 0.227502, - 0.013538999999999999, - 0.020867, - 0.079705, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.063347, - 0.27813, - 0.472509, - 0.6014640000000001, - 0.678023, - 0.704911, - 0.681207, - 0.6102179999999999, - 0.497005, - 0.328104, - 0.120082, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.059893999999999996, - 0.267918, - 0.45728199999999997, - 0.5822780000000001, - 0.659768, - 0.684342, - 0.6632140000000001, - 0.596789, - 0.487321, - 0.325628, - 0.11706100000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.057939, - 0.266401, - 0.450442, - 0.570547, - 0.6335230000000001, - 0.6497179999999999, - 0.62914, - 0.568915, - 0.46653, - 0.313031, - 0.112288, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.054674, - 0.256502, - 0.436181, - 0.560947, - 0.5430510000000001, - 0.5617759999999999, - 0.646557, - 0.576778, - 0.462645, - 0.29918599999999995, - 0.103493, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.052175, - 0.253827, - 0.441199, - 0.565236, - 0.636888, - 0.660554, - 0.639398, - 0.572006, - 0.462787, - 0.30038400000000004, - 0.100241, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.05171, - 0.255584, - 0.441209, - 0.5668150000000001, - 0.6413070000000001, - 0.668728, - 0.6488740000000001, - 0.5809030000000001, - 0.466656, - 0.30166699999999996, - 0.100827, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.050858, - 0.253434, - 0.43593, - 0.554246, - 0.620658, - 0.636805, - 0.607407, - 0.542194, - 0.44450599999999996, - 0.291452, - 0.09598999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.048127, - 0.243536, - 0.416502, - 0.45360500000000004, - 0.537848, - 0.6210370000000001, - 0.5384840000000001, - 0.44772500000000004, - 0.447344, - 0.251609, - 0.088078, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.043531, - 0.219894, - 0.398851, - 0.524128, - 0.598099, - 0.6264109999999999, - 0.608898, - 0.557902, - 0.44674, - 0.28036700000000003, - 0.08276900000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.043183, - 0.236495, - 0.416605, - 0.5397150000000001, - 0.62014, - 0.6529969999999999, - 0.635564, - 0.570061, - 0.45686200000000005, - 0.286976, - 0.084994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.042483, - 0.24319300000000002, - 0.430652, - 0.557433, - 0.634103, - 0.65854, - 0.632051, - 0.559492, - 0.446678, - 0.279265, - 0.08178, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.041898000000000005, - 0.244881, - 0.436876, - 0.562731, - 0.6375449999999999, - 0.660394, - 0.633298, - 0.5588719999999999, - 0.447255, - 0.28070100000000003, - 0.080154, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038862, - 0.240059, - 0.423147, - 0.538959, - 0.618309, - 0.651651, - 0.636895, - 0.568049, - 0.453351, - 0.280725, - 0.07465000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.035768, - 0.235137, - 0.422114, - 0.545661, - 0.618355, - 0.642042, - 0.616854, - 0.551388, - 0.442795, - 0.273832, - 0.070149, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.032957, - 0.230689, - 0.418208, - 0.539057, - 0.606037, - 0.6251019999999999, - 0.599024, - 0.534023, - 0.426995, - 0.262783, - 0.066952, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030677, - 0.229981, - 0.421015, - 0.546366, - 0.623522, - 0.650821, - 0.628068, - 0.558356, - 0.44204899999999997, - 0.26723399999999997, - 0.068591, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028468, - 0.22783799999999998, - 0.419799, - 0.541416, - 0.614899, - 0.63891, - 0.61291, - 0.5444289999999999, - 0.431063, - 0.260906, - 0.063857, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023306, - 0.20844900000000002, - 0.392553, - 0.5177609999999999, - 0.5979629999999999, - 0.6250439999999999, - 0.601333, - 0.481858, - 0.251106, - 0.163836, - 0.038179000000000005, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021533999999999998, - 0.206279, - 0.392372, - 0.523848, - 0.603898, - 0.63189, - 0.6067659999999999, - 0.5359109999999999, - 0.408934, - 0.233927, - 0.051175, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021013999999999998, - 0.210345, - 0.409751, - 0.54832, - 0.635013, - 0.6729080000000001, - 0.657267, - 0.586643, - 0.465536, - 0.27495800000000004, - 0.06324, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023575, - 0.232213, - 0.438413, - 0.570172, - 0.648104, - 0.6710900000000001, - 0.643169, - 0.571905, - 0.45200999999999997, - 0.26927100000000004, - 0.060287999999999994, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.022057, - 0.229532, - 0.432834, - 0.564585, - 0.6408769999999999, - 0.663053, - 0.634691, - 0.556892, - 0.43673700000000004, - 0.25705399999999995, - 0.0555, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019889, - 0.22059600000000001, - 0.418784, - 0.544142, - 0.621509, - 0.644906, - 0.620247, - 0.547282, - 0.428476, - 0.248886, - 0.050881, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.018111000000000002, - 0.215781, - 0.41248599999999996, - 0.536329, - 0.6052390000000001, - 0.625668, - 0.598826, - 0.378624, - 0.37693, - 0.196311, - 0.046908, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017030999999999998, - 0.21016200000000002, - 0.40384800000000004, - 0.398018, - 0.5812350000000001, - 0.60954, - 0.592482, - 0.528775, - 0.417814, - 0.23981899999999998, - 0.023097000000000003, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.014684, - 0.2049, - 0.402571, - 0.5423429999999999, - 0.547418, - 0.4093, - 0.30870299999999995, - 0.547997, - 0.319856, - 0.220202, - 0.036376, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.011456, - 0.19670500000000002, - 0.39527100000000004, - 0.528978, - 0.60876, - 0.6316799999999999, - 0.6076480000000001, - 0.5428339999999999, - 0.42582, - 0.242606, - 0.040801000000000004, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.013673999999999999, - 0.214113, - 0.420834, - 0.5597430000000001, - 0.6427039999999999, - 0.67048, - 0.642612, - 0.565605, - 0.4367, - 0.24651599999999999, - 0.038451, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012035, - 0.20561600000000002, - 0.40593599999999996, - 0.54108, - 0.6207, - 0.647239, - 0.6209779999999999, - 0.545631, - 0.42242, - 0.23296899999999998, - 0.033108, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008978, - 0.192532, - 0.388581, - 0.521621, - 0.60124, - 0.629786, - 0.6043350000000001, - 0.531867, - 0.409298, - 0.227534, - 0.029854, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007753, - 0.187654, - 0.38234199999999996, - 0.511464, - 0.585287, - 0.60662, - 0.581268, - 0.511805, - 0.398883, - 0.224148, - 0.02818, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.007053, - 0.185805, - 0.375927, - 0.500037, - 0.56963, - 0.597468, - 0.5773830000000001, - 0.510872, - 0.39615, - 0.219048, - 0.026705, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004099, - 0.18094200000000002, - 0.37263, - 0.5011909999999999, - 0.574722, - 0.597499, - 0.570586, - 0.501077, - 0.384611, - 0.20900200000000002, - 0.02296, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004468, - 0.175241, - 0.364012, - 0.478192, - 0.5475460000000001, - 0.583438, - 0.439335, - 0.504962, - 0.389358, - 0.21044300000000002, - 0.022756000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.177291, - 0.373799, - 0.507509, - 0.591043, - 0.6192960000000001, - 0.597124, - 0.52324, - 0.400737, - 0.21434, - 0.021555, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.150385, - 0.338997, - 0.4818, - 0.572628, - 0.6017469999999999, - 0.580009, - 0.373573, - 0.37421, - 0.194152, - 0.003354, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.14979699999999999, - 0.228929, - 0.481213, - 0.568846, - 0.600154, - 0.580215, - 0.51209, - 0.392079, - 0.20922900000000003, - 0.020467, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08083199999999999, - 0.232099, - 0.482801, - 0.5627190000000001, - 0.498164, - 0.435174, - 0.351072, - 0.28915199999999996, - 0.14305199999999998, - 0.003283, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024513, - 0.346494, - 0.32615, - 0.573357, - 0.607205, - 0.588825, - 0.51916, - 0.39595800000000003, - 0.20794900000000002, - 0.012917999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.151341, - 0.34754599999999997, - 0.489064, - 0.571661, - 0.602927, - 0.581693, - 0.509258, - 0.385441, - 0.201382, - 0.016177, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.17056100000000002, - 0.383116, - 0.534518, - 0.6196240000000001, - 0.647965, - 0.620694, - 0.5450839999999999, - 0.41609199999999996, - 0.218616, - 0.018501, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.160016, - 0.363435, - 0.506499, - 0.590881, - 0.619033, - 0.595371, - 0.5193369999999999, - 0.395272, - 0.17350200000000002, - 0.008966, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07596800000000001, - 0.241744, - 0.49944700000000003, - 0.455626, - 0.50849, - 0.320034, - 0.23671999999999999, - 0.108423, - 0.16964400000000002, - 0.007622, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.14062799999999998, - 0.189454, - 0.4714, - 0.408132, - 0.430942, - 0.178798, - 0.504814, - 0.380819, - 0.19515000000000002, - 0.011653, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.14677199999999999, - 0.33975700000000003, - 0.47808999999999996, - 0.56304, - 0.502155, - 0.41929099999999997, - 0.36426, - 0.176563, - 0.067291, - 0.001113, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.14144800000000002, - 0.338646, - 0.485058, - 0.563625, - 0.5907749999999999, - 0.56692, - 0.494998, - 0.373198, - 0.191473, - 0.011846, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.06433499999999999, - 0.231017, - 0.335453, - 0.5473830000000001, - 0.5823740000000001, - 0.562813, - 0.494665, - 0.37210899999999997, - 0.137154, - 0.007687, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.143591, - 0.349757, - 0.499045, - 0.5885560000000001, - 0.621398, - 0.597831, - 0.522635, - 0.39282999999999996, - 0.202256, - 0.008407, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0635, - 0.34009100000000003, - 0.486976, - 0.569596, - 0.603739, - 0.584653, - 0.515358, - 0.390985, - 0.20262, - 0.012493, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.06314800000000001, - 0.33870100000000003, - 0.475841, - 0.549922, - 0.585296, - 0.5681620000000001, - 0.49886, - 0.374455, - 0.193519, - 0.011385, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.06573999999999999, - 0.330195, - 0.468435, - 0.5446190000000001, - 0.56514, - 0.542883, - 0.482128, - 0.365375, - 0.191405, - 0.011933999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.05315400000000001, - 0.20283299999999999, - 0.33069299999999996, - 0.45095100000000005, - 0.440981, - 0.41150099999999995, - 0.458339, - 0.353757, - 0.183159, - 0.009366, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.053342, - 0.208784, - 0.453227, - 0.543203, - 0.5821689999999999, - 0.565639, - 0.501481, - 0.37741399999999997, - 0.196145, - 0.011381, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.120463, - 0.314512, - 0.46050599999999997, - 0.546219, - 0.583488, - 0.565106, - 0.49794499999999997, - 0.371956, - 0.094087, - 0.001062, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015433, - 0.131639, - 0.20315799999999998, - 0.012362, - 0.06952599999999999, - 0.02618, - 0.032836, - 0.08994100000000001, - 0.056783, - 0.010027, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10819100000000001, - 0.29938400000000004, - 0.364867, - 0.43964, - 0.42477699999999996, - 0.445087, - 0.31572100000000003, - 0.13458699999999998, - 0.020681, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.036859, - 0.08828100000000001, - 0.08282099999999999, - 0.130786, - 0.351127, - 0.336097, - 0.379638, - 0.27890699999999996, - 0.17896, - 0.005429000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10466800000000001, - 0.00507, - 0.457807, - 0.307574, - 0.372399, - 0.401781, - 0.200015, - 0.005702, - 0.190623, - 0.00495, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.107344, - 0.314921, - 0.476922, - 0.569009, - 0.607897, - 0.590093, - 0.520841, - 0.39121, - 0.197143, - 0.00566, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10728, - 0.303464, - 0.45329899999999995, - 0.5405570000000001, - 0.5793339999999999, - 0.45904700000000004, - 0.49782499999999996, - 0.266731, - 0.146287, - 0.008859, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.100965, - 0.30238400000000004, - 0.45943599999999996, - 0.547574, - 0.584808, - 0.566751, - 0.35568299999999997, - 0.372574, - 0.190185, - 0.009074, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.101205, - 0.307601, - 0.466706, - 0.561849, - 0.600324, - 0.5808289999999999, - 0.511471, - 0.383149, - 0.193938, - 0.009578, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.10023, - 0.31065699999999996, - 0.471208, - 0.515823, - 0.5230130000000001, - 0.575727, - 0.414311, - 0.380789, - 0.198157, - 0.010682, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.09473999999999999, - 0.29558, - 0.45243, - 0.546573, - 0.5901810000000001, - 0.5813189999999999, - 0.21108600000000002, - 0.141643, - 0.193686, - 0.009659000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08902800000000001, - 0.294024, - 0.357752, - 0.324027, - 0.582724, - 0.027924, - 0.19164599999999998, - 0.076059, - 0.10757, - 0.007665, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.092065, - 0.298016, - 0.46426, - 0.560408, - 0.6031369999999999, - 0.587172, - 0.515438, - 0.388034, - 0.20076, - 0.011305999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.091671, - 0.29983, - 0.463589, - 0.560024, - 0.5989779999999999, - 0.5815359999999999, - 0.5132749999999999, - 0.387034, - 0.20096899999999998, - 0.012029, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.085336, - 0.158522, - 0.444445, - 0.5304840000000001, - 0.559742, - 0.549946, - 0.48927499999999996, - 0.372391, - 0.194496, - 0.011257999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07577500000000001, - 0.17056100000000002, - 0.446291, - 0.40341899999999997, - 0.413005, - 0.38709899999999997, - 0.077582, - 0.285616, - 0.19878800000000002, - 0.006972000000000001, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08317400000000001, - 0.293077, - 0.46144, - 0.562736, - 0.607542, - 0.59468, - 0.527851, - 0.400974, - 0.211105, - 0.01591, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.085075, - 0.291786, - 0.45381299999999997, - 0.546158, - 0.583913, - 0.568297, - 0.504597, - 0.385032, - 0.20467500000000002, - 0.008119999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.061225999999999996, - 0.07191, - 0.43544, - 0.433187, - 0.44755700000000004, - 0.56165, - 0.45692099999999997, - 0.383309, - 0.2027, - 0.015527, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.079315, - 0.288259, - 0.45148, - 0.544455, - 0.582112, - 0.56726, - 0.502379, - 0.38518, - 0.206497, - 0.015752000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.075518, - 0.279343, - 0.43961500000000003, - 0.5184160000000001, - 0.5501860000000001, - 0.5440470000000001, - 0.485947, - 0.371241, - 0.19733799999999999, - 0.013205999999999999, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.030548, - 0.149894, - 0.250506, - 0.453637, - 0.57217, - 0.448015, - 0.516853, - 0.397627, - 0.212008, - 0.014402, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.067276, - 0.263601, - 0.43258300000000005, - 0.526889, - 0.437587, - 0.5638, - 0.502197, - 0.383875, - 0.204656, - 0.016835999999999997, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.068893, - 0.269957, - 0.43371499999999996, - 0.5284310000000001, - 0.570666, - 0.558982, - 0.302652, - 0.32002600000000003, - 0.08913, - 0.003676, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.065553, - 0.262365, - 0.432004, - 0.527038, - 0.570743, - 0.560129, - 0.500919, - 0.343792, - 0.205208, - 0.011622, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.07253799999999999, - 0.285231, - 0.458283, - 0.559757, - 0.600951, - 0.475324, - 0.35981, - 0.27920100000000003, - 0.110406, - 0.006163, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.071065, - 0.282051, - 0.45328399999999996, - 0.549851, - 0.493921, - 0.5162519999999999, - 0.518815, - 0.402447, - 0.224782, - 0.024914000000000002, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.06468, - 0.26617799999999997, - 0.431159, - 0.41487999999999997, - 0.448781, - 0.41622899999999996, - 0.344767, - 0.25162799999999996, - 0.112171, - 0.006654, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.017875, - 0.099539, - 0.147631, - 0.280245, - 0.409477, - 0.459101, - 0.323611, - 0.179341, - 0.212308, - 0.015411, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.008386, - 0.179917, - 0.319699, - 0.281781, - 0.150833, - 0.14043799999999998, - 0.04218, - 0.096152, - 0.076027, - 0.004096, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.016027, - 0.007328, - 0.146984, - 0.081163, - 0.120132, - 0.048034999999999994, - 0.105957, - 0.293942, - 0.05697, - 0.022897999999999998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.051933999999999994, - 0.040779, - 0.191251, - 0.051662, - 0.145851, - 0.147685, - 0.12615, - 0.089821, - 0.07617600000000001, - 0.005256, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.052993000000000005, - 0.24642, - 0.416819, - 0.526861, - 0.574294, - 0.43489, - 0.371593, - 0.401469, - 0.167606, - 0.035059, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "electric_to_load_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.22, - 2.608, - 4.262, - 5.224, - 5.655, - 5.579, - 5.011, - 3.929, - 2.26, - 0.332, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.217, - 2.646, - 4.323, - 5.292, - 5.73, - 5.659, - 5.056, - 3.981, - 2.307, - 0.081, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.216, - 1.392, - 4.36, - 5.395, - 5.894, - 5.83, - 5.26, - 4.15, - 2.428, - 0.379, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.61, - 2.679, - 4.374, - 5.368, - 5.801, - 5.726, - 5.155, - 4.072, - 2.393, - 0.378, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.213, - 2.583, - 4.235, - 5.201, - 5.636, - 5.565, - 4.117, - 2.767, - 2.352, - 0.224, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.238, - 2.573, - 4.148, - 3.683, - 3.68, - 4.348, - 4.967, - 3.957, - 2.361, - 0.407, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.559, - 2.491, - 4.075, - 5.042, - 5.509, - 5.483, - 4.979, - 3.954, - 2.342, - 0.428, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.59, - 2.638, - 4.369, - 5.426, - 5.94, - 5.888, - 5.319, - 4.257, - 2.536, - 0.498, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.206, - 1.435, - 4.292, - 5.262, - 5.729, - 5.678, - 5.149, - 4.12, - 2.49, - 0.521, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.272, - 2.573, - 4.219, - 4.452, - 4.237, - 4.835, - 3.476, - 3.098, - 1.646, - 0.237, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.051, - 0.296, - 1.531, - 4.868, - 5.426, - 4.374, - 3.968, - 4.003, - 2.21, - 0.543, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.541, - 2.513, - 4.182, - 5.193, - 5.685, - 5.647, - 5.1, - 4.094, - 2.505, - 0.592, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.558, - 2.53, - 4.157, - 5.095, - 5.575, - 5.567, - 5.082, - 4.108, - 2.521, - 0.6, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.599, - 2.626, - 4.309, - 5.3, - 4.858, - 4.256, - 3.802, - 3.564, - 2.093, - 0.675, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.299, - 2.453, - 4.012, - 3.821, - 4.509, - 2.944, - 4.994, - 1.906, - 0.291, - 0.187, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.533, - 2.426, - 4.096, - 5.144, - 5.673, - 5.674, - 5.184, - 4.184, - 2.59, - 0.68, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.556, - 2.443, - 4.031, - 5.004, - 5.519, - 4.465, - 5.067, - 4.119, - 2.565, - 0.705, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.444, - 1.938, - 2.57, - 4.161, - 4.605, - 4.487, - 3.112, - 2.734, - 1.274, - 0.199, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.486, - 0.444, - 1.665, - 2.641, - 2.525, - 5.603, - 5.143, - 2.649, - 1.89, - 0.198, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.572, - 2.516, - 4.229, - 5.243, - 5.784, - 2.68, - 0.603, - 0.854, - 0.09, - 0.129, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.266, - 1.318, - 3.279, - 4.281, - 4.568, - 4.681, - 3.649, - 2.75, - 2.265, - 0.845, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.646, - 2.635, - 4.231, - 5.207, - 5.755, - 5.778, - 5.281, - 4.314, - 2.788, - 0.855, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.616, - 2.533, - 4.154, - 3.754, - 4.616, - 4.174, - 3.826, - 3.359, - 1.982, - 0.378, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.183, - 1.258, - 1.6, - 2.373, - 2.419, - 2.546, - 2.138, - 0.838, - 0.448, - 0.177, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.555, - 1.454, - 1.032, - 1.7, - 0.055, - 5.545, - 4.537, - 2.93, - 0.938, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.609, - 1.716, - 3.35, - 0.262, - 4.522, - 4.471, - 3.659, - 0.132, - 2.805, - 0.869, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.712, - 2.857, - 4.68, - 5.819, - 6.358, - 6.352, - 5.851, - 4.854, - 3.2, - 1.089, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.812, - 2.95, - 4.705, - 5.768, - 6.3, - 6.298, - 5.778, - 4.751, - 3.15, - 1.105, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.809, - 2.914, - 4.58, - 5.554, - 6.014, - 5.982, - 4.335, - 3.913, - 1.946, - 0.522, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.344, - 2.78, - 4.443, - 4.547, - 4.967, - 4.92, - 4.382, - 3.626, - 2.387, - 0.668, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.257, - 2.252, - 3.544, - 6.28, - 6.326, - 5.831, - 4.813, - 3.22, - 1.038, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.677, - 2.62, - 4.291, - 5.285, - 5.798, - 5.884, - 5.484, - 4.606, - 3.112, - 1.111, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.862, - 3.016, - 4.74, - 4.851, - 5.172, - 4.907, - 5.749, - 4.757, - 3.259, - 1.27, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.919, - 3.04, - 4.706, - 5.709, - 6.215, - 6.201, - 5.699, - 4.753, - 3.266, - 1.295, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.88, - 2.933, - 4.582, - 5.617, - 6.123, - 6.126, - 5.623, - 4.677, - 3.207, - 1.263, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.33, - 1.69, - 2.946, - 4.481, - 4.921, - 4.581, - 3.882, - 3.569, - 2.108, - 0.649, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.896, - 2.899, - 4.432, - 5.463, - 6.023, - 6.093, - 4.812, - 3.902, - 2.7, - 0.942, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.591, - 2.22, - 3.463, - 4.33, - 5.232, - 4.32, - 4.001, - 3.1, - 2.54, - 0.907, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.539, - 1.531, - 2.971, - 3.204, - 2.755, - 4.337, - 4.456, - 2.766, - 2.197, - 0.657, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.868, - 2.143, - 3.424, - 3.792, - 4.712, - 1.57, - 1.733, - 1.008, - 0.833, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.232, - 1.506, - 0.857, - 1.842, - 4.294, - 4.003, - 4.301, - 3.565, - 2.616, - 0.491, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 2.979, - 4.661, - 5.736, - 6.334, - 6.398, - 5.914, - 4.972, - 3.444, - 1.422, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.969, - 2.956, - 3.167, - 5.67, - 6.263, - 6.306, - 5.91, - 4.943, - 3.429, - 0.152, - 0.0, - 0.0, - 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.054, - 3.14, - 4.825, - 2.86, - 6.44, - 6.497, - 6.051, - 5.093, - 2.867, - 1.51, - 0.0, - 0.0, - 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.134, - 3.267, - 4.948, - 6.057, - 6.636, - 6.657, - 6.174, - 5.179, - 3.665, - 1.609, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.535, - 3.32, - 4.897, - 5.876, - 6.391, - 6.401, - 5.898, - 4.945, - 3.496, - 1.556, - 0.0, - 0.0, - 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.173, - 3.209, - 4.803, - 5.824, - 6.36, - 6.403, - 5.942, - 4.989, - 3.534, - 1.555, - 0.0, - 0.0, - 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.177, - 3.238, - 4.853, - 5.903, - 6.423, - 6.419, - 5.938, - 4.962, - 2.977, - 0.51, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.503, - 2.179, - 2.958, - 3.875, - 3.398, - 2.196, - 4.002, - 3.837, - 2.773, - 1.196, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.287, - 0.228, - 0.302, - 1.024, - 5.04, - 4.217, - 5.061, - 3.629, - 1.646, - 0.03, - 0.0, - 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.29, - 3.342, - 4.884, - 5.885, - 6.426, - 6.475, - 6.046, - 5.145, - 3.686, - 1.717, - 0.037, - 0.0, - 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.277, - 3.269, - 4.726, - 5.693, - 6.297, - 6.413, - 6.038, - 5.157, - 3.733, - 1.752, - 0.048, - 0.0, - 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.299, - 1.322, - 1.354, - 0.957, - 4.366, - 5.138, - 4.688, - 3.623, - 2.702, - 1.195, - 0.024, - 0.0, - 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.502, - 3.77, - 5.46, - 6.563, - 7.165, - 7.222, - 6.754, - 5.739, - 4.177, - 1.978, - 0.085, - 0.0, - 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.525, - 3.708, - 5.292, - 6.288, - 6.682, - 6.58, - 6.037, - 5.183, - 3.879, - 1.895, - 0.089, - 0.0, - 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.48, - 3.577, - 5.193, - 6.29, - 6.86, - 6.894, - 4.971, - 1.135, - 0.365, - 0.577, - 0.085, - 0.0, - 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.483, - 3.58, - 5.117, - 6.172, - 6.739, - 6.792, - 6.333, - 5.399, - 3.952, - 1.9, - 0.097, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.049, - 3.792, - 5.47, - 5.315, - 5.515, - 7.221, - 6.732, - 5.714, - 0.466, - 0.551, - 0.029, - 0.0, - 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.697, - 3.939, - 5.579, - 6.651, - 7.23, - 7.266, - 6.793, - 5.792, - 4.268, - 0.078, - 0.103, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.294, - 2.478, - 2.243, - 3.083, - 4.408, - 0.768, - 4.257, - 2.742, - 0.888, - 1.081, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.663, - 2.365, - 3.112, - 3.949, - 4.951, - 4.282, - 4.0, - 2.829, - 1.937, - 0.85, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.012, - 0.926, - 2.404, - 3.808, - 5.261, - 5.44, - 5.19, - 5.786, - 4.325, - 2.577, - 1.064, - 0.049, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.059, - 1.699, - 3.743, - 3.844, - 5.077, - 5.447, - 5.634, - 4.355, - 3.776, - 3.889, - 1.947, - 0.153, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.076, - 1.764, - 3.769, - 5.108, - 6.043, - 4.558, - 6.602, - 6.195, - 4.419, - 3.886, - 1.128, - 0.161, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.033, - 1.0, - 2.393, - 3.201, - 6.102, - 6.602, - 5.4, - 6.272, - 5.32, - 3.896, - 1.973, - 0.179, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.095, - 1.889, - 4.008, - 5.515, - 5.401, - 5.731, - 5.213, - 5.074, - 4.705, - 3.3, - 2.121, - 0.086, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.124, - 2.044, - 4.199, - 5.729, - 6.705, - 7.142, - 7.079, - 6.572, - 5.618, - 4.176, - 1.745, - 0.181, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.079, - 1.559, - 4.031, - 5.476, - 6.405, - 6.771, - 6.584, - 5.99, - 5.203, - 3.141, - 1.681, - 0.226, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.146, - 2.003, - 3.138, - 5.465, - 6.439, - 6.908, - 6.877, - 6.423, - 5.451, - 4.041, - 2.093, - 0.259, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.163, - 1.361, - 2.962, - 5.722, - 5.556, - 5.467, - 5.934, - 4.971, - 4.331, - 2.827, - 1.64, - 0.218, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.198, - 2.122, - 4.213, - 5.713, - 6.713, - 7.175, - 7.132, - 6.587, - 5.604, - 4.166, - 2.177, - 0.3, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.225, - 2.128, - 4.17, - 5.623, - 6.607, - 7.087, - 7.104, - 6.609, - 5.623, - 4.2, - 2.223, - 0.321, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.269, - 2.216, - 4.223, - 5.585, - 6.428, - 6.853, - 6.842, - 6.422, - 5.537, - 4.154, - 2.215, - 0.329, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.29, - 2.24, - 4.312, - 5.758, - 6.749, - 7.192, - 7.116, - 6.618, - 5.602, - 4.168, - 2.225, - 0.338, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.307, - 2.168, - 4.108, - 5.352, - 6.216, - 6.548, - 6.688, - 6.34, - 5.499, - 4.174, - 2.275, - 0.357, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.358, - 2.384, - 4.45, - 5.899, - 6.893, - 7.383, - 7.36, - 6.847, - 5.877, - 3.942, - 1.763, - 0.308, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.396, - 2.468, - 4.581, - 6.054, - 7.0, - 7.414, - 7.303, - 6.735, - 5.786, - 4.362, - 2.402, - 0.406, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.415, - 2.497, - 4.579, - 6.012, - 6.953, - 7.364, - 7.253, - 6.647, - 5.64, - 4.251, - 2.361, - 0.411, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.227, - 1.5, - 2.773, - 5.281, - 5.882, - 5.685, - 5.631, - 5.329, - 4.043, - 4.178, - 2.311, - 0.41, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.442, - 2.371, - 4.272, - 5.626, - 6.524, - 6.993, - 6.998, - 6.554, - 5.592, - 4.178, - 2.265, - 0.404, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.465, - 2.334, - 4.196, - 5.467, - 6.17, - 6.548, - 6.706, - 6.413, - 5.577, - 4.212, - 2.312, - 0.423, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.505, - 2.43, - 3.305, - 4.298, - 6.129, - 5.83, - 5.705, - 5.137, - 4.737, - 4.066, - 1.711, - 0.341, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.5, - 2.376, - 3.269, - 4.954, - 6.56, - 6.935, - 6.827, - 6.3, - 4.023, - 3.604, - 1.772, - 0.429, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.527, - 2.412, - 4.226, - 5.557, - 6.626, - 7.122, - 7.13, - 5.863, - 5.63, - 4.253, - 2.33, - 0.454, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.597, - 2.628, - 4.605, - 6.054, - 7.051, - 7.536, - 1.803, - 4.366, - 4.338, - 2.823, - 1.094, - 0.485, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.616, - 2.661, - 4.603, - 5.975, - 6.816, - 7.21, - 7.255, - 6.778, - 5.811, - 4.369, - 1.162, - 0.496, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.638, - 2.582, - 4.395, - 5.646, - 6.429, - 5.988, - 5.98, - 5.476, - 5.017, - 4.078, - 2.283, - 0.491, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.652, - 1.592, - 3.228, - 5.599, - 6.621, - 6.811, - 5.368, - 5.617, - 5.605, - 3.923, - 1.641, - 0.356, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.767, - 2.98, - 4.966, - 6.374, - 7.301, - 7.735, - 7.652, - 7.081, - 6.079, - 4.599, - 2.609, - 0.563, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.755, - 2.804, - 4.686, - 6.063, - 7.024, - 7.497, - 7.479, - 7.028, - 6.041, - 4.563, - 0.047, - 0.024, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.837, - 3.067, - 5.077, - 6.506, - 7.462, - 7.922, - 7.824, - 7.266, - 6.2, - 4.701, - 2.665, - 0.595, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.855, - 3.012, - 4.907, - 6.257, - 7.098, - 7.439, - 7.3, - 5.676, - 5.838, - 4.443, - 2.564, - 0.593, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.841, - 2.833, - 3.834, - 4.69, - 6.289, - 6.767, - 6.89, - 6.53, - 5.685, - 4.327, - 2.498, - 0.587, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.886, - 2.914, - 3.241, - 5.076, - 6.859, - 7.344, - 7.364, - 6.896, - 5.945, - 4.54, - 2.607, - 0.626, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.947, - 3.098, - 5.04, - 6.458, - 7.343, - 7.775, - 7.747, - 7.215, - 6.186, - 2.949, - 2.645, - 0.656, - 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.005, - 3.161, - 5.091, - 6.494, - 7.44, - 7.812, - 7.717, - 7.138, - 6.101, - 4.625, - 2.657, - 0.674, - 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.035, - 3.183, - 5.034, - 6.348, - 7.144, - 7.437, - 7.274, - 6.743, - 5.843, - 4.523, - 2.653, - 0.677, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.759, - 3.034, - 4.741, - 6.02, - 6.883, - 7.32, - 7.283, - 6.8, - 5.828, - 4.406, - 2.597, - 0.667, - 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.046, - 3.066, - 4.783, - 6.09, - 6.948, - 7.402, - 7.409, - 6.941, - 5.944, - 4.484, - 2.367, - 0.611, - 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.116, - 3.21, - 4.985, - 6.287, - 7.206, - 7.649, - 7.64, - 7.102, - 6.103, - 4.663, - 2.748, - 0.71, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004, - 3.203, - 3.016, - 6.415, - 1.444, - 4.144, - 7.73, - 7.18, - 5.25, - 3.248, - 0.588, - 0.025, - 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.152, - 3.236, - 3.018, - 6.401, - 7.295, - 7.7, - 6.494, - 7.033, - 3.593, - 1.82, - 1.564, - 0.351, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.004, - 3.181, - 5.076, - 1.59, - 0.2, - 0.644, - 0.306, - 1.173, - 1.16, - 2.116, - 0.762, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.819, - 3.504, - 5.369, - 6.721, - 7.533, - 7.912, - 7.787, - 7.197, - 6.17, - 4.746, - 2.815, - 0.757, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.019, - 1.226, - 3.293, - 4.982, - 6.137, - 6.73, - 6.946, - 7.016, - 6.685, - 5.852, - 4.548, - 2.699, - 0.751, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.024, - 1.239, - 3.269, - 4.915, - 6.096, - 6.829, - 7.099, - 6.935, - 6.522, - 5.703, - 4.424, - 2.666, - 0.753, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.028, - 1.25, - 3.26, - 4.828, - 5.89, - 6.507, - 6.833, - 6.942, - 6.626, - 5.777, - 4.463, - 2.692, - 0.75, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.051, - 0.992, - 3.257, - 4.897, - 5.103, - 5.765, - 7.17, - 7.086, - 6.641, - 5.75, - 4.438, - 2.128, - 0.755, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.046, - 1.302, - 3.335, - 4.977, - 6.101, - 6.746, - 6.961, - 6.725, - 6.14, - 5.307, - 4.145, - 2.484, - 0.744, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.037, - 1.27, - 3.128, - 4.774, - 5.961, - 6.829, - 7.054, - 6.805, - 6.174, - 5.237, - 4.152, - 2.579, - 0.751, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.042, - 1.341, - 3.311, - 4.846, - 5.927, - 6.563, - 6.78, - 6.691, - 6.288, - 5.509, - 4.295, - 2.646, - 0.779, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.043, - 1.355, - 3.254, - 4.723, - 5.897, - 6.742, - 7.113, - 7.088, - 6.642, - 5.738, - 4.402, - 2.715, - 0.811, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.057, - 1.427, - 3.424, - 5.032, - 6.189, - 6.978, - 7.359, - 7.288, - 6.905, - 5.971, - 4.631, - 2.862, - 0.865, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.078, - 0.785, - 3.373, - 4.813, - 6.197, - 5.985, - 3.665, - 4.27, - 4.543, - 1.705, - 1.564, - 1.003, - 0.265, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.937, - 2.476, - 3.117, - 3.65, - 1.812, - 4.553, - 5.765, - 5.14, - 3.102, - 3.402, - 2.059, - 0.853, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.081, - 1.484, - 3.493, - 5.137, - 6.398, - 7.22, - 7.61, - 7.549, - 3.641, - 4.521, - 1.964, - 1.156, - 0.201, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.098, - 1.565, - 3.623, - 5.256, - 6.445, - 7.211, - 7.497, - 7.295, - 6.736, - 5.777, - 4.501, - 2.759, - 0.885, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.112, - 1.533, - 3.522, - 5.152, - 6.367, - 7.179, - 7.374, - 7.085, - 6.465, - 5.517, - 4.321, - 2.738, - 0.889, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.129, - 1.551, - 3.496, - 5.075, - 6.209, - 6.866, - 7.034, - 6.779, - 6.293, - 5.494, - 4.323, - 2.662, - 0.874, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.135, - 1.536, - 3.4, - 4.793, - 5.923, - 6.755, - 7.155, - 7.131, - 6.68, - 5.759, - 4.426, - 2.862, - 0.924, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.136, - 1.611, - 3.609, - 5.178, - 6.298, - 6.981, - 7.135, - 6.779, - 6.229, - 5.613, - 4.448, - 2.776, - 0.909, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.15, - 1.583, - 3.511, - 5.033, - 6.098, - 6.746, - 6.902, - 6.64, - 6.283, - 5.601, - 4.405, - 2.731, - 0.905, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.15, - 1.532, - 3.444, - 4.953, - 6.026, - 6.71, - 6.897, - 6.731, - 6.19, - 5.412, - 4.235, - 2.648, - 0.902, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.17, - 1.544, - 3.332, - 4.661, - 5.684, - 6.477, - 6.859, - 6.864, - 6.451, - 5.622, - 4.374, - 2.73, - 0.932, - 0.008, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.187, - 1.642, - 3.548, - 4.834, - 5.449, - 6.363, - 6.368, - 7.325, - 6.831, - 4.832, - 4.069, - 2.528, - 0.906, - 0.015, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.227, - 1.608, - 3.008, - 4.679, - 6.276, - 7.006, - 7.414, - 2.812, - 3.329, - 6.101, - 4.766, - 2.157, - 1.068, - 0.018, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.266, - 1.714, - 3.674, - 2.687, - 6.52, - 7.342, - 7.717, - 6.81, - 3.485, - 0.789, - 4.021, - 2.183, - 1.059, - 0.029, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.229, - 1.795, - 3.806, - 5.381, - 4.701, - 7.273, - 7.524, - 7.361, - 4.891, - 4.811, - 4.499, - 2.811, - 0.996, - 0.026, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.245, - 1.662, - 3.448, - 4.894, - 6.003, - 6.758, - 7.159, - 7.127, - 6.686, - 5.754, - 4.46, - 2.779, - 1.021, - 0.021, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.287, - 1.7, - 3.521, - 5.044, - 6.222, - 7.067, - 7.461, - 7.405, - 6.874, - 5.968, - 4.634, - 2.91, - 1.044, - 0.038, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.285, - 1.748, - 3.611, - 5.094, - 6.261, - 7.06, - 7.431, - 7.368, - 6.895, - 6.006, - 4.702, - 2.992, - 1.075, - 0.044, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.267, - 1.804, - 3.73, - 5.253, - 6.401, - 7.267, - 7.626, - 7.531, - 7.018, - 6.091, - 4.768, - 3.027, - 1.092, - 0.03, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.281, - 2.007, - 4.11, - 5.69, - 6.809, - 7.471, - 7.754, - 7.597, - 7.03, - 6.149, - 4.846, - 3.107, - 1.149, - 0.04, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.313, - 1.887, - 3.877, - 5.407, - 6.54, - 7.285, - 7.635, - 7.567, - 7.062, - 6.147, - 4.827, - 3.086, - 1.156, - 0.052, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.348, - 1.853, - 3.812, - 5.4, - 6.628, - 7.419, - 7.763, - 6.81, - 1.601, - 4.682, - 4.811, - 3.036, - 1.14, - 0.053, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.336, - 1.828, - 3.72, - 5.245, - 6.393, - 7.144, - 7.511, - 7.447, - 7.01, - 6.09, - 3.884, - 2.628, - 1.036, - 0.074, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.326, - 1.825, - 3.744, - 5.344, - 6.584, - 7.404, - 7.775, - 7.721, - 7.173, - 6.252, - 4.917, - 3.167, - 1.198, - 0.049, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.3, - 1.902, - 3.857, - 5.338, - 6.353, - 6.896, - 7.094, - 6.965, - 6.578, - 5.762, - 4.579, - 2.988, - 1.154, - 0.046, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.305, - 1.927, - 3.885, - 5.36, - 6.423, - 7.069, - 7.274, - 7.081, - 6.521, - 5.593, - 4.467, - 2.983, - 1.162, - 0.05, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.308, - 1.877, - 3.753, - 5.174, - 6.237, - 6.82, - 6.965, - 6.698, - 6.125, - 5.499, - 4.491, - 2.948, - 1.148, - 0.053, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.304, - 1.829, - 3.589, - 4.919, - 6.034, - 6.8, - 7.18, - 7.162, - 6.728, - 5.874, - 4.632, - 3.009, - 1.156, - 0.048, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.305, - 1.883, - 3.71, - 5.016, - 5.992, - 6.618, - 6.845, - 6.764, - 6.327, - 5.59, - 4.483, - 2.929, - 1.157, - 0.056, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.321, - 1.794, - 3.549, - 4.923, - 5.987, - 6.767, - 7.113, - 7.104, - 6.677, - 5.849, - 4.641, - 3.057, - 1.205, - 0.057, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.314, - 1.894, - 2.779, - 5.231, - 6.388, - 5.687, - 7.47, - 7.361, - 6.884, - 6.04, - 4.758, - 3.12, - 1.228, - 0.067, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.356, - 1.943, - 3.88, - 5.397, - 6.56, - 7.327, - 7.669, - 7.588, - 7.121, - 6.22, - 4.92, - 3.231, - 1.284, - 0.074, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.399, - 1.967, - 3.859, - 5.374, - 6.551, - 7.364, - 7.681, - 7.595, - 7.091, - 6.179, - 4.888, - 3.198, - 1.288, - 0.092, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.393, - 1.92, - 3.733, - 5.107, - 6.145, - 6.881, - 7.149, - 7.045, - 6.647, - 5.85, - 4.687, - 3.118, - 1.263, - 0.093, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.357, - 1.903, - 3.691, - 5.065, - 6.099, - 6.786, - 7.02, - 6.875, - 6.453, - 5.686, - 4.54, - 2.999, - 1.234, - 0.094, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.367, - 1.874, - 3.593, - 4.942, - 6.03, - 6.776, - 7.11, - 7.059, - 5.284, - 5.793, - 4.584, - 2.729, - 1.21, - 0.109, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.351, - 1.437, - 3.658, - 5.024, - 6.059, - 6.789, - 7.154, - 7.089, - 6.661, - 5.842, - 4.631, - 3.08, - 1.273, - 0.111, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.34, - 1.339, - 2.631, - 2.69, - 5.307, - 6.036, - 5.146, - 3.606, - 1.252, - 4.145, - 1.955, - 3.08, - 1.225, - 0.128, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.35, - 1.744, - 3.519, - 5.041, - 6.018, - 6.69, - 7.112, - 6.487, - 4.86, - 5.023, - 4.206, - 2.442, - 1.049, - 0.136, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.345, - 1.405, - 2.757, - 2.3, - 4.778, - 5.525, - 6.216, - 6.096, - 5.705, - 2.951, - 2.595, - 1.871, - 0.764, - 0.135, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.366, - 1.783, - 3.544, - 4.924, - 5.991, - 6.607, - 6.698, - 6.407, - 5.953, - 5.318, - 4.308, - 2.856, - 1.253, - 0.142, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.372, - 1.813, - 3.54, - 4.882, - 5.944, - 6.679, - 7.044, - 7.038, - 6.632, - 5.82, - 4.621, - 3.115, - 1.328, - 0.144, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.241, - 0.827, - 1.936, - 1.405, - 1.71, - 5.694, - 4.893, - 7.138, - 6.813, - 4.741, - 4.76, - 3.136, - 1.367, - 0.157, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.401, - 1.901, - 3.763, - 5.262, - 6.425, - 7.194, - 7.568, - 7.516, - 7.061, - 6.172, - 4.904, - 3.275, - 1.404, - 0.17, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.409, - 2.093, - 4.074, - 5.6, - 6.831, - 7.614, - 7.965, - 7.892, - 7.347, - 6.435, - 5.135, - 3.497, - 1.514, - 0.162, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.393, - 2.123, - 4.159, - 5.732, - 6.917, - 7.656, - 7.875, - 7.363, - 7.222, - 6.313, - 5.04, - 3.406, - 1.48, - 0.153, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.38, - 2.023, - 3.923, - 5.37, - 6.388, - 6.995, - 7.225, - 7.04, - 6.509, - 5.633, - 4.548, - 3.169, - 1.403, - 0.169, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.386, - 1.965, - 3.789, - 5.179, - 6.206, - 6.791, - 6.98, - 6.843, - 6.463, - 5.769, - 4.67, - 3.21, - 1.416, - 0.164, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.365, - 1.87, - 3.638, - 5.045, - 6.169, - 6.946, - 7.33, - 7.321, - 6.925, - 6.094, - 4.882, - 3.334, - 1.465, - 0.168, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.385, - 2.034, - 3.796, - 5.366, - 6.289, - 7.036, - 7.642, - 7.588, - 7.109, - 6.248, - 4.983, - 3.392, - 1.485, - 0.186, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.396, - 1.921, - 3.865, - 5.312, - 6.438, - 7.196, - 7.544, - 7.488, - 7.018, - 6.144, - 4.9, - 3.342, - 1.461, - 0.18, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.384, - 1.96, - 3.8, - 5.164, - 6.108, - 6.618, - 6.696, - 6.576, - 6.352, - 5.759, - 4.673, - 3.225, - 1.431, - 0.198, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.383, - 1.885, - 3.623, - 4.916, - 6.01, - 6.759, - 7.119, - 7.103, - 6.694, - 5.893, - 4.647, - 3.187, - 1.369, - 0.181, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.371, - 1.883, - 3.707, - 5.15, - 6.287, - 7.045, - 7.403, - 7.367, - 6.929, - 6.088, - 4.873, - 3.344, - 1.481, - 0.19, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.396, - 1.901, - 3.711, - 5.115, - 6.154, - 6.748, - 6.933, - 6.831, - 6.484, - 5.796, - 4.697, - 3.253, - 1.458, - 0.209, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.383, - 1.881, - 3.707, - 5.107, - 6.094, - 6.618, - 6.821, - 6.738, - 6.419, - 5.76, - 4.66, - 3.223, - 1.462, - 0.21, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.414, - 1.843, - 3.584, - 4.914, - 5.922, - 6.618, - 6.991, - 6.992, - 6.602, - 5.758, - 4.658, - 3.214, - 1.455, - 0.205, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.374, - 1.83, - 3.587, - 4.955, - 5.969, - 6.627, - 6.897, - 6.88, - 6.538, - 5.782, - 4.654, - 3.191, - 1.446, - 0.199, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.362, - 1.851, - 3.647, - 5.033, - 6.107, - 6.826, - 7.183, - 7.15, - 6.734, - 5.931, - 4.766, - 3.279, - 1.478, - 0.199, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.343, - 1.821, - 3.599, - 4.951, - 5.987, - 6.708, - 7.065, - 7.061, - 6.676, - 5.893, - 4.74, - 3.28, - 1.49, - 0.2, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.333, - 1.812, - 3.566, - 4.901, - 5.924, - 6.467, - 6.923, - 6.987, - 6.623, - 5.868, - 4.589, - 3.142, - 1.462, - 0.191, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.322, - 1.574, - 3.055, - 4.407, - 5.912, - 6.61, - 6.862, - 6.848, - 5.785, - 5.257, - 4.121, - 2.533, - 1.369, - 0.204, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.316, - 1.518, - 3.189, - 4.542, - 5.625, - 6.798, - 6.934, - 6.745, - 6.644, - 6.022, - 4.845, - 3.36, - 1.523, - 0.197, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.322, - 1.726, - 3.356, - 4.578, - 5.606, - 6.31, - 6.672, - 6.654, - 6.265, - 3.591, - 2.21, - 3.028, - 1.411, - 0.216, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.319, - 1.708, - 3.42, - 4.786, - 5.827, - 6.563, - 6.925, - 6.935, - 6.551, - 5.784, - 4.637, - 3.201, - 1.471, - 0.216, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.328, - 1.811, - 3.653, - 5.131, - 6.301, - 7.113, - 7.492, - 7.443, - 6.993, - 6.151, - 4.925, - 3.398, - 1.547, - 0.206, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.359, - 1.884, - 3.762, - 5.16, - 6.138, - 6.689, - 6.979, - 6.997, - 6.687, - 5.996, - 4.873, - 3.39, - 1.542, - 0.203, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.305, - 1.801, - 3.602, - 4.911, - 5.871, - 6.593, - 7.008, - 7.062, - 6.718, - 5.973, - 4.829, - 3.4, - 1.553, - 0.169, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.275, - 1.868, - 3.757, - 5.159, - 6.167, - 6.736, - 7.069, - 7.072, - 6.707, - 5.986, - 4.867, - 3.4, - 1.563, - 0.174, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.269, - 1.87, - 3.786, - 5.225, - 6.293, - 6.969, - 7.325, - 7.301, - 6.903, - 6.125, - 4.969, - 3.465, - 1.586, - 0.17, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.266, - 1.852, - 3.741, - 5.105, - 5.995, - 6.524, - 6.802, - 6.797, - 6.461, - 5.776, - 4.729, - 3.309, - 1.521, - 0.16, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.256, - 1.793, - 3.583, - 4.816, - 5.608, - 6.277, - 5.472, - 6.693, - 6.117, - 5.434, - 4.369, - 3.111, - 1.432, - 0.206, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.285, - 1.598, - 3.275, - 4.591, - 5.601, - 6.286, - 6.614, - 6.592, - 5.614, - 5.618, - 4.523, - 3.091, - 1.409, - 0.209, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.319, - 1.527, - 3.209, - 4.542, - 5.573, - 6.29, - 6.682, - 5.861, - 5.576, - 5.596, - 4.499, - 3.081, - 1.415, - 0.228, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.272, - 1.617, - 3.409, - 4.845, - 5.951, - 6.723, - 7.096, - 7.079, - 6.733, - 5.955, - 4.792, - 3.31, - 1.495, - 0.169, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.239, - 1.679, - 3.518, - 4.986, - 6.119, - 6.88, - 7.262, - 7.253, - 6.844, - 6.037, - 4.87, - 3.405, - 1.548, - 0.167, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.253, - 1.641, - 3.422, - 4.82, - 5.877, - 6.584, - 6.972, - 6.967, - 6.624, - 5.833, - 4.635, - 3.178, - 1.46, - 0.229, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.215, - 0.803, - 2.65, - 1.954, - 5.098, - 5.286, - 4.745, - 5.133, - 4.841, - 2.78, - 3.61, - 2.614, - 0.968, - 0.192, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.283, - 1.625, - 3.43, - 4.962, - 6.162, - 7.028, - 7.406, - 7.35, - 6.958, - 6.175, - 4.984, - 3.451, - 1.564, - 0.161, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.216, - 1.671, - 3.549, - 5.006, - 6.079, - 6.797, - 7.162, - 7.145, - 6.784, - 6.032, - 4.882, - 3.369, - 1.515, - 0.151, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.199, - 1.669, - 3.52, - 4.938, - 5.956, - 6.626, - 7.007, - 6.985, - 6.623, - 5.873, - 4.74, - 3.261, - 1.46, - 0.157, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.059, - 0.714, - 2.59, - 3.595, - 4.432, - 3.088, - 3.983, - 4.003, - 4.577, - 5.361, - 4.351, - 3.109, - 1.392, - 0.167, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08, - 0.927, - 3.185, - 4.56, - 5.611, - 6.378, - 6.748, - 6.752, - 6.361, - 5.636, - 4.52, - 3.062, - 1.379, - 0.165, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.195, - 1.515, - 3.293, - 4.709, - 5.811, - 6.569, - 6.955, - 6.948, - 6.588, - 5.831, - 4.699, - 3.238, - 1.438, - 0.147, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.178, - 1.579, - 3.441, - 4.893, - 5.97, - 6.694, - 7.075, - 7.06, - 6.659, - 5.893, - 4.748, - 3.263, - 1.447, - 0.146, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.171, - 1.591, - 3.472, - 4.948, - 6.07, - 6.823, - 7.217, - 7.192, - 6.79, - 5.985, - 4.804, - 3.3, - 1.45, - 0.127, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.161, - 1.567, - 3.413, - 4.876, - 6.002, - 6.807, - 7.218, - 7.219, - 6.836, - 6.057, - 4.89, - 3.381, - 1.489, - 0.122, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.155, - 1.591, - 3.448, - 4.883, - 6.01, - 6.802, - 7.196, - 7.187, - 6.817, - 6.004, - 4.824, - 3.328, - 1.461, - 0.124, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.16, - 1.541, - 3.351, - 4.806, - 5.921, - 6.685, - 7.063, - 7.023, - 6.667, - 5.871, - 4.694, - 3.196, - 1.389, - 0.13, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.164, - 1.434, - 3.178, - 4.575, - 5.652, - 6.399, - 6.787, - 6.755, - 6.376, - 5.601, - 4.445, - 3.015, - 1.269, - 0.084, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021, - 0.575, - 0.638, - 0.589, - 5.466, - 5.488, - 6.362, - 0.551, - 1.722, - 1.475, - 0.194, - 1.14, - 0.143, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.153, - 1.375, - 3.111, - 4.479, - 5.565, - 6.359, - 6.764, - 6.78, - 6.418, - 5.681, - 4.555, - 3.095, - 1.327, - 0.116, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.133, - 1.439, - 3.237, - 4.685, - 5.791, - 6.568, - 6.968, - 6.962, - 6.617, - 5.828, - 4.662, - 3.116, - 1.33, - 0.114, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.128, - 1.413, - 3.238, - 4.691, - 5.783, - 6.503, - 6.89, - 6.916, - 6.551, - 5.796, - 4.661, - 3.139, - 1.338, - 0.105, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.131, - 1.37, - 3.146, - 4.579, - 5.672, - 6.451, - 6.841, - 6.832, - 6.491, - 5.717, - 4.558, - 3.057, - 1.287, - 0.095, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.13, - 1.383, - 3.167, - 4.615, - 5.716, - 6.459, - 6.829, - 6.828, - 6.476, - 5.718, - 4.568, - 3.054, - 1.279, - 0.093, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.114, - 1.364, - 3.181, - 4.639, - 5.727, - 6.437, - 6.816, - 6.799, - 6.384, - 5.645, - 4.525, - 3.056, - 1.271, - 0.077, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.111, - 1.366, - 3.151, - 4.598, - 5.679, - 6.43, - 6.818, - 6.817, - 6.482, - 5.703, - 4.547, - 3.04, - 1.256, - 0.074, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.102, - 1.35, - 3.088, - 4.521, - 5.584, - 6.338, - 6.715, - 6.699, - 6.291, - 5.508, - 4.358, - 2.931, - 1.217, - 0.068, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.487, - 0.081, - 3.773, - 5.667, - 5.713, - 5.981, - 6.055, - 6.37, - 5.615, - 4.455, - 2.982, - 1.223, - 0.064, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.098, - 1.304, - 3.074, - 4.506, - 5.589, - 6.367, - 6.802, - 6.822, - 6.441, - 5.689, - 4.532, - 3.048, - 1.233, - 0.055, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.079, - 1.348, - 3.165, - 4.607, - 5.658, - 6.388, - 6.727, - 6.738, - 6.401, - 5.651, - 4.499, - 2.987, - 1.193, - 0.049, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.079, - 1.31, - 3.098, - 4.55, - 5.646, - 6.374, - 6.767, - 6.74, - 5.057, - 5.571, - 4.399, - 2.91, - 1.173, - 0.049, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.077, - 1.276, - 3.061, - 4.564, - 5.73, - 6.557, - 6.992, - 7.025, - 6.601, - 5.802, - 4.596, - 3.075, - 1.212, - 0.046, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.074, - 1.381, - 3.345, - 4.969, - 6.183, - 7.035, - 7.434, - 7.382, - 6.958, - 6.09, - 4.819, - 3.176, - 1.231, - 0.03, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.052, - 1.371, - 3.308, - 4.864, - 6.029, - 6.803, - 7.22, - 7.213, - 6.782, - 5.946, - 4.708, - 3.113, - 1.199, - 0.031, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.051, - 1.369, - 3.321, - 4.848, - 5.963, - 6.679, - 7.109, - 7.14, - 6.75, - 5.939, - 4.727, - 3.133, - 1.198, - 0.026, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.045, - 1.34, - 3.272, - 4.809, - 5.963, - 6.745, - 7.172, - 7.198, - 6.776, - 5.961, - 4.723, - 3.117, - 1.187, - 0.027, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.039, - 1.328, - 3.233, - 4.744, - 5.899, - 6.688, - 7.114, - 7.138, - 6.727, - 5.915, - 4.695, - 3.08, - 1.151, - 0.04, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.044, - 1.306, - 3.207, - 4.786, - 6.005, - 6.81, - 7.215, - 7.174, - 6.77, - 5.916, - 4.67, - 3.046, - 1.119, - 0.035, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.038, - 1.234, - 3.08, - 4.583, - 5.72, - 6.475, - 6.838, - 6.81, - 6.415, - 5.579, - 4.384, - 2.861, - 1.035, - 0.028, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.037, - 1.212, - 3.041, - 4.536, - 5.614, - 6.362, - 6.755, - 6.756, - 6.392, - 5.599, - 4.41, - 2.839, - 1.01, - 0.023, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.032, - 1.182, - 2.987, - 4.448, - 5.345, - 5.165, - 6.725, - 6.696, - 5.369, - 4.199, - 3.83, - 2.542, - 0.876, - 0.012, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.027, - 1.132, - 2.963, - 4.442, - 5.54, - 6.259, - 6.64, - 6.636, - 6.243, - 5.457, - 4.249, - 2.62, - 0.928, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.023, - 1.136, - 2.933, - 4.386, - 5.46, - 6.124, - 6.496, - 6.486, - 6.092, - 5.307, - 4.106, - 2.535, - 0.887, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.035, - 1.114, - 2.903, - 4.375, - 5.48, - 6.28, - 6.668, - 6.676, - 6.29, - 5.479, - 4.262, - 2.662, - 0.908, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.035, - 1.139, - 2.969, - 4.507, - 5.655, - 6.455, - 6.857, - 6.86, - 6.438, - 5.605, - 4.392, - 2.77, - 0.914, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.041, - 0.991, - 3.075, - 4.656, - 5.268, - 6.635, - 6.437, - 6.996, - 6.57, - 5.705, - 4.455, - 2.796, - 0.907, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.031, - 1.203, - 3.146, - 4.696, - 5.815, - 6.55, - 6.948, - 6.952, - 6.499, - 5.66, - 4.411, - 2.745, - 0.87, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.025, - 1.161, - 3.049, - 4.605, - 5.73, - 6.45, - 6.788, - 6.756, - 6.339, - 5.5, - 4.276, - 2.631, - 0.822, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.02, - 1.129, - 3.026, - 4.6, - 5.748, - 6.515, - 6.876, - 6.802, - 6.395, - 5.523, - 4.254, - 2.622, - 0.803, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.021, - 1.147, - 3.112, - 4.741, - 5.945, - 6.723, - 7.122, - 7.069, - 6.601, - 5.716, - 4.432, - 2.731, - 0.82, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.015, - 1.13, - 3.027, - 4.549, - 5.702, - 6.481, - 6.861, - 6.822, - 6.42, - 5.55, - 4.285, - 2.62, - 0.771, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.009, - 1.035, - 2.81, - 4.366, - 5.551, - 6.343, - 6.735, - 6.721, - 5.453, - 4.691, - 3.557, - 2.408, - 0.706, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.991, - 2.724, - 3.961, - 4.913, - 6.183, - 5.741, - 5.412, - 5.327, - 1.556, - 0.963, - 2.122, - 0.68, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.986, - 2.785, - 4.289, - 5.427, - 6.234, - 6.628, - 6.601, - 6.192, - 5.35, - 4.084, - 2.438, - 0.662, - 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.009, - 2.845, - 4.278, - 5.321, - 6.086, - 6.487, - 6.483, - 6.086, - 5.259, - 4.044, - 2.395, - 0.631, - 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.002, - 2.807, - 4.18, - 5.187, - 5.86, - 6.159, - 6.132, - 5.788, - 3.638, - 2.377, - 2.093, - 0.602, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.394, - 2.751, - 4.237, - 5.359, - 6.182, - 6.578, - 6.541, - 3.059, - 0.324, - 3.932, - 0.587, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.925, - 2.619, - 4.03, - 5.085, - 5.893, - 6.228, - 6.208, - 5.833, - 4.435, - 3.344, - 2.365, - 0.582, - 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.021, - 2.902, - 4.375, - 5.505, - 6.265, - 6.664, - 6.66, - 6.228, - 5.359, - 4.066, - 2.338, - 0.559, - 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.011, - 2.92, - 4.335, - 5.282, - 6.064, - 6.445, - 1.812, - 0.201, - 0.157, - 3.974, - 2.269, - 0.527, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.961, - 2.811, - 4.334, - 5.477, - 6.226, - 6.574, - 6.512, - 2.344, - 1.95, - 0.473, - 1.586, - 0.509, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.937, - 2.813, - 4.295, - 5.416, - 6.148, - 6.463, - 6.388, - 5.927, - 5.042, - 3.795, - 2.11, - 0.476, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.915, - 2.725, - 4.237, - 5.314, - 6.028, - 6.328, - 6.246, - 5.78, - 4.932, - 1.536, - 2.059, - 0.191, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.905, - 2.705, - 4.254, - 5.357, - 6.138, - 6.502, - 6.47, - 6.024, - 5.128, - 3.824, - 2.101, - 0.424, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.902, - 2.723, - 4.254, - 5.392, - 6.18, - 6.551, - 6.523, - 6.064, - 5.123, - 3.76, - 2.038, - 0.395, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.956, - 2.94, - 4.627, - 5.827, - 6.617, - 6.961, - 6.876, - 6.413, - 5.449, - 4.071, - 2.182, - 0.406, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.961, - 2.968, - 4.686, - 5.906, - 6.697, - 7.061, - 6.938, - 6.413, - 5.443, - 4.051, - 2.177, - 0.384, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.924, - 2.839, - 4.418, - 5.586, - 6.419, - 6.806, - 6.747, - 6.253, - 5.332, - 3.987, - 2.129, - 0.355, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.899, - 2.847, - 4.432, - 5.55, - 6.276, - 6.536, - 6.348, - 5.766, - 4.853, - 3.645, - 1.959, - 0.314, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.855, - 2.757, - 4.309, - 5.385, - 6.088, - 6.345, - 6.178, - 5.589, - 4.735, - 3.547, - 1.88, - 0.295, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.814, - 2.677, - 4.243, - 5.373, - 6.117, - 6.477, - 6.425, - 5.906, - 4.943, - 3.574, - 1.725, - 0.234, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.784, - 2.514, - 4.116, - 5.325, - 6.251, - 6.602, - 6.498, - 6.005, - 4.968, - 3.515, - 1.846, - 0.258, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.892, - 2.948, - 4.768, - 6.087, - 6.991, - 7.364, - 7.225, - 6.648, - 5.562, - 4.058, - 2.058, - 0.254, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.927, - 3.074, - 4.894, - 6.221, - 7.048, - 7.4, - 7.25, - 6.615, - 5.551, - 4.077, - 2.046, - 0.234, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.904, - 3.006, - 4.797, - 6.041, - 6.844, - 7.156, - 6.97, - 6.366, - 5.336, - 3.897, - 1.961, - 0.194, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.864, - 2.885, - 4.546, - 5.681, - 6.379, - 6.643, - 6.483, - 5.904, - 5.005, - 3.693, - 1.834, - 0.158, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.8, - 2.694, - 4.416, - 5.682, - 6.545, - 6.906, - 6.821, - 6.258, - 5.254, - 3.782, - 1.819, - 0.13, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.84, - 2.892, - 4.64, - 5.814, - 6.53, - 6.783, - 6.587, - 5.978, - 5.009, - 3.632, - 1.773, - 0.112, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.804, - 2.761, - 4.415, - 5.625, - 6.402, - 6.751, - 6.637, - 6.036, - 5.01, - 3.565, - 1.666, - 0.096, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.734, - 2.535, - 4.181, - 5.47, - 6.506, - 6.91, - 6.815, - 6.233, - 5.212, - 3.748, - 1.751, - 0.095, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.81, - 2.908, - 4.739, - 6.018, - 6.819, - 7.138, - 6.961, - 6.328, - 5.25, - 3.728, - 1.704, - 0.077, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.792, - 2.847, - 4.628, - 5.854, - 6.597, - 6.876, - 6.666, - 6.037, - 4.992, - 3.549, - 1.619, - 0.06, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.763, - 2.805, - 4.546, - 5.736, - 6.49, - 6.76, - 6.55, - 5.918, - 4.916, - 3.488, - 1.569, - 0.056, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.705, - 2.61, - 4.244, - 5.413, - 6.214, - 6.56, - 6.455, - 5.937, - 4.942, - 3.485, - 1.536, - 0.046, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.733, - 2.709, - 4.372, - 5.528, - 6.252, - 6.538, - 6.377, - 5.825, - 4.851, - 3.415, - 1.492, - 0.033, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.568, - 2.35, - 3.547, - 5.517, - 5.496, - 5.217, - 5.382, - 3.851, - 1.914, - 3.427, - 1.478, - 0.024, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.652, - 2.52, - 4.124, - 5.231, - 5.519, - 5.785, - 5.587, - 4.824, - 3.595, - 2.368, - 0.766, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.645, - 2.53, - 4.202, - 4.792, - 5.615, - 5.34, - 3.404, - 4.069, - 2.459, - 2.359, - 0.453, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.633, - 2.487, - 4.052, - 5.223, - 5.987, - 6.328, - 6.244, - 5.678, - 4.663, - 3.191, - 1.295, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.367, - 2.22, - 4.094, - 5.243, - 6.003, - 6.333, - 6.235, - 5.669, - 4.643, - 3.166, - 1.267, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.601, - 2.483, - 4.199, - 5.399, - 6.209, - 6.525, - 6.42, - 5.799, - 4.721, - 3.171, - 1.24, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.586, - 2.523, - 4.338, - 5.622, - 6.429, - 6.753, - 6.602, - 5.974, - 3.695, - 2.342, - 0.117, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.524, - 0.522, - 2.081, - 5.721, - 3.326, - 6.845, - 6.67, - 1.407, - 1.984, - 3.326, - 0.031, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.621, - 2.715, - 4.589, - 5.853, - 6.615, - 6.922, - 0.968, - 2.175, - 0.129, - 0.199, - 0.762, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.605, - 2.658, - 4.516, - 5.749, - 6.481, - 6.738, - 6.511, - 5.833, - 4.75, - 3.136, - 1.148, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.572, - 2.561, - 4.371, - 5.566, - 6.306, - 6.541, - 6.339, - 5.704, - 4.658, - 3.112, - 1.119, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.554, - 2.546, - 4.305, - 5.453, - 6.055, - 6.21, - 6.013, - 5.438, - 4.459, - 2.992, - 1.073, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.523, - 2.452, - 4.169, - 5.362, - 5.191, - 5.37, - 6.18, - 5.513, - 4.422, - 2.86, - 0.989, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.499, - 2.426, - 4.217, - 5.403, - 6.087, - 6.314, - 6.111, - 5.467, - 4.423, - 2.871, - 0.958, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.494, - 2.443, - 4.217, - 5.418, - 6.13, - 6.392, - 6.202, - 5.552, - 4.46, - 2.883, - 0.964, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.486, - 2.422, - 4.167, - 5.298, - 5.932, - 6.087, - 5.806, - 5.182, - 4.249, - 2.786, - 0.917, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.46, - 2.328, - 3.981, - 4.336, - 5.141, - 5.936, - 5.147, - 4.279, - 4.276, - 2.405, - 0.842, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.416, - 2.102, - 3.812, - 5.01, - 5.717, - 5.987, - 5.82, - 5.333, - 4.27, - 2.68, - 0.791, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.413, - 2.26, - 3.982, - 5.159, - 5.927, - 6.241, - 6.075, - 5.449, - 4.367, - 2.743, - 0.812, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.406, - 2.324, - 4.116, - 5.328, - 6.061, - 6.294, - 6.041, - 5.348, - 4.269, - 2.669, - 0.782, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.4, - 2.341, - 4.176, - 5.379, - 6.094, - 6.312, - 6.053, - 5.342, - 4.275, - 2.683, - 0.766, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.371, - 2.295, - 4.045, - 5.151, - 5.91, - 6.229, - 6.088, - 5.43, - 4.333, - 2.683, - 0.714, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.342, - 2.247, - 4.035, - 5.216, - 5.91, - 6.137, - 5.896, - 5.27, - 4.232, - 2.617, - 0.67, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.315, - 2.205, - 3.997, - 5.152, - 5.793, - 5.975, - 5.726, - 5.104, - 4.081, - 2.512, - 0.64, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.293, - 2.198, - 4.024, - 5.222, - 5.96, - 6.221, - 6.003, - 5.337, - 4.225, - 2.554, - 0.656, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.272, - 2.178, - 4.013, - 5.175, - 5.877, - 6.107, - 5.858, - 5.204, - 4.12, - 2.494, - 0.61, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.223, - 1.992, - 3.752, - 4.949, - 5.715, - 5.974, - 5.748, - 4.606, - 2.4, - 1.566, - 0.365, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.206, - 1.972, - 3.75, - 5.007, - 5.772, - 6.04, - 5.8, - 5.122, - 3.909, - 2.236, - 0.489, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.201, - 2.011, - 3.916, - 5.241, - 6.07, - 6.432, - 6.282, - 5.607, - 4.45, - 2.628, - 0.604, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.225, - 2.22, - 4.19, - 5.45, - 6.195, - 6.414, - 6.148, - 5.466, - 4.32, - 2.574, - 0.576, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.211, - 2.194, - 4.137, - 5.396, - 6.126, - 6.338, - 6.066, - 5.323, - 4.174, - 2.457, - 0.53, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.19, - 2.108, - 4.003, - 5.201, - 5.941, - 6.164, - 5.928, - 5.231, - 4.095, - 2.379, - 0.486, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.173, - 2.062, - 3.943, - 5.126, - 5.785, - 5.98, - 5.724, - 3.619, - 3.603, - 1.876, - 0.448, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.163, - 2.009, - 3.86, - 3.804, - 5.556, - 5.826, - 5.663, - 5.054, - 3.994, - 2.292, - 0.221, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.14, - 1.958, - 3.848, - 5.184, - 5.232, - 3.912, - 2.951, - 5.238, - 3.057, - 2.105, - 0.348, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.109, - 1.88, - 3.778, - 5.056, - 5.819, - 6.038, - 5.808, - 5.189, - 4.07, - 2.319, - 0.39, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.131, - 2.047, - 4.022, - 5.35, - 6.143, - 6.409, - 6.142, - 5.406, - 4.174, - 2.356, - 0.368, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.115, - 1.965, - 3.88, - 5.172, - 5.933, - 6.186, - 5.935, - 5.215, - 4.038, - 2.227, - 0.316, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.086, - 1.84, - 3.714, - 4.986, - 5.747, - 6.02, - 5.776, - 5.084, - 3.912, - 2.175, - 0.285, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.074, - 1.794, - 3.654, - 4.889, - 5.594, - 5.798, - 5.556, - 4.892, - 3.813, - 2.142, - 0.269, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.067, - 1.776, - 3.593, - 4.779, - 5.445, - 5.711, - 5.519, - 4.883, - 3.786, - 2.094, - 0.255, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.039, - 1.729, - 3.562, - 4.79, - 5.493, - 5.711, - 5.454, - 4.789, - 3.676, - 1.998, - 0.219, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.043, - 1.675, - 3.479, - 4.571, - 5.234, - 5.577, - 4.199, - 4.827, - 3.722, - 2.011, - 0.218, - 0.0, - 0.0, - 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.695, - 3.573, - 4.851, - 5.649, - 5.919, - 5.707, - 5.001, - 3.83, - 2.049, - 0.206, - 0.0, - 0.0, - 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.437, - 3.24, - 4.605, - 5.473, - 5.752, - 5.544, - 3.571, - 3.577, - 1.856, - 0.032, - 0.0, - 0.0, - 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.432, - 2.188, - 4.6, - 5.437, - 5.736, - 5.546, - 4.895, - 3.748, - 2.0, - 0.196, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.773, - 2.218, - 4.615, - 5.379, - 4.762, - 4.159, - 3.356, - 2.764, - 1.367, - 0.031, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.234, - 3.312, - 3.117, - 5.48, - 5.804, - 5.628, - 4.962, - 3.785, - 1.988, - 0.123, - 0.0, - 0.0, - 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.447, - 3.322, - 4.675, - 5.464, - 5.763, - 5.56, - 4.868, - 3.684, - 1.925, - 0.155, - 0.0, - 0.0, - 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.63, - 3.662, - 5.109, - 5.922, - 6.193, - 5.933, - 5.21, - 3.977, - 2.09, - 0.177, - 0.0, - 0.0, - 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.529, - 3.474, - 4.841, - 5.648, - 5.917, - 5.691, - 4.964, - 3.778, - 1.658, - 0.086, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.726, - 2.311, - 4.774, - 4.355, - 4.86, - 3.059, - 2.263, - 1.036, - 1.621, - 0.073, - 0.0, - 0.0, - 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.344, - 1.811, - 4.506, - 3.901, - 4.119, - 1.709, - 4.825, - 3.64, - 1.865, - 0.111, - 0.0, - 0.0, - 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.403, - 3.247, - 4.57, - 5.382, - 4.8, - 4.008, - 3.482, - 1.688, - 0.643, - 0.011, - 0.0, - 0.0, - 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.352, - 3.237, - 4.636, - 5.387, - 5.647, - 5.419, - 4.731, - 3.567, - 1.83, - 0.113, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.615, - 2.208, - 3.206, - 5.232, - 5.566, - 5.379, - 4.728, - 3.557, - 1.311, - 0.073, - 0.0, - 0.0, - 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.372, - 3.343, - 4.77, - 5.626, - 5.939, - 5.714, - 4.995, - 3.755, - 1.933, - 0.08, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.607, - 3.251, - 4.655, - 5.444, - 5.771, - 5.588, - 4.926, - 3.737, - 1.937, - 0.119, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.604, - 3.237, - 4.548, - 5.256, - 5.594, - 5.431, - 4.768, - 3.579, - 1.85, - 0.109, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.628, - 3.156, - 4.477, - 5.206, - 5.402, - 5.189, - 4.608, - 3.492, - 1.829, - 0.114, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.508, - 1.939, - 3.161, - 4.31, - 4.215, - 3.933, - 4.381, - 3.381, - 1.751, - 0.09, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.51, - 1.996, - 4.332, - 5.192, - 5.564, - 5.406, - 4.793, - 3.607, - 1.875, - 0.109, - 0.0, - 0.0, - 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.151, - 3.006, - 4.402, - 5.221, - 5.577, - 5.401, - 4.759, - 3.555, - 0.899, - 0.01, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.148, - 1.258, - 1.942, - 0.118, - 0.665, - 0.25, - 0.314, - 0.86, - 0.543, - 0.096, - 0.0, - 0.0, - 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.034, - 2.862, - 3.487, - 4.202, - 4.06, - 4.254, - 3.018, - 1.286, - 0.198, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.352, - 0.844, - 0.792, - 1.25, - 3.356, - 3.212, - 3.629, - 2.666, - 1.711, - 0.052, - 0.0, - 0.0, - 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.0, - 0.048, - 4.376, - 2.94, - 3.559, - 3.84, - 1.912, - 0.055, - 1.822, - 0.047, - 0.0, - 0.0, - 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.026, - 3.01, - 4.559, - 5.439, - 5.81, - 5.64, - 4.978, - 3.739, - 1.884, - 0.054, - 0.0, - 0.0, - 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.025, - 2.901, - 4.333, - 5.167, - 5.537, - 4.388, - 4.758, - 2.549, - 1.398, - 0.085, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.965, - 2.89, - 4.391, - 5.234, - 5.59, - 5.417, - 3.4, - 3.561, - 1.818, - 0.087, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.967, - 2.94, - 4.461, - 5.37, - 5.738, - 5.552, - 4.889, - 3.662, - 1.854, - 0.092, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.958, - 2.969, - 4.504, - 4.93, - 4.999, - 5.503, - 3.96, - 3.64, - 1.894, - 0.102, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.906, - 2.825, - 4.324, - 5.224, - 5.641, - 5.556, - 2.018, - 1.354, - 1.851, - 0.092, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.851, - 2.81, - 3.419, - 3.097, - 5.57, - 0.267, - 1.832, - 0.727, - 1.028, - 0.073, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.88, - 2.848, - 4.437, - 5.356, - 5.765, - 5.612, - 4.927, - 3.709, - 1.919, - 0.108, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.876, - 2.866, - 4.431, - 5.353, - 5.725, - 5.558, - 4.906, - 3.699, - 1.921, - 0.115, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.816, - 1.515, - 4.248, - 5.07, - 5.35, - 5.256, - 4.677, - 3.559, - 1.859, - 0.108, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.724, - 1.63, - 4.266, - 3.856, - 3.948, - 3.7, - 0.742, - 2.73, - 1.9, - 0.067, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.795, - 2.801, - 4.411, - 5.379, - 5.807, - 5.684, - 5.045, - 3.833, - 2.018, - 0.152, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.813, - 2.789, - 4.338, - 5.22, - 5.581, - 5.432, - 4.823, - 3.68, - 1.956, - 0.078, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.585, - 0.687, - 4.162, - 4.14, - 4.278, - 5.368, - 4.367, - 3.664, - 1.937, - 0.148, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.758, - 2.755, - 4.315, - 5.204, - 5.564, - 5.422, - 4.802, - 3.682, - 1.974, - 0.151, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.722, - 2.67, - 4.202, - 4.955, - 5.259, - 5.2, - 4.645, - 3.548, - 1.886, - 0.126, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.292, - 1.433, - 2.394, - 4.336, - 5.469, - 4.282, - 4.94, - 3.801, - 2.026, - 0.138, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.643, - 2.52, - 4.135, - 5.036, - 4.183, - 5.389, - 4.8, - 3.669, - 1.956, - 0.161, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.658, - 2.58, - 4.146, - 5.051, - 5.455, - 5.343, - 2.893, - 3.059, - 0.852, - 0.035, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.627, - 2.508, - 4.129, - 5.038, - 5.455, - 5.354, - 4.788, - 3.286, - 1.961, - 0.111, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.693, - 2.726, - 4.38, - 5.35, - 5.744, - 4.543, - 3.439, - 2.669, - 1.055, - 0.059, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.679, - 2.696, - 4.333, - 5.256, - 4.721, - 4.934, - 4.959, - 3.847, - 2.149, - 0.238, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.618, - 2.544, - 4.121, - 3.966, - 4.29, - 3.978, - 3.295, - 2.405, - 1.072, - 0.064, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.171, - 0.951, - 1.411, - 2.679, - 3.914, - 4.388, - 3.093, - 1.714, - 2.029, - 0.147, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.08, - 1.72, - 3.056, - 2.693, - 1.442, - 1.342, - 0.403, - 0.919, - 0.727, - 0.039, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.153, - 0.07, - 1.405, - 0.776, - 1.148, - 0.459, - 1.013, - 2.81, - 0.545, - 0.219, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.496, - 0.39, - 1.828, - 0.494, - 1.394, - 1.412, - 1.206, - 0.859, - 0.728, - 0.05, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.507, - 2.355, - 3.984, - 5.036, - 5.489, - 4.157, - 3.552, - 3.837, - 1.602, - 0.335, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "size_kw": 10.0, - "name": "roof_east", - "annual_energy_produced_kwh": 16714.41, - "year_one_energy_produced_kwh": 17487.0, - "annual_energy_exported_kwh": 0.0, - "electric_to_storage_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "electric_curtailed_series_kw": [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0 - ], - "lifecycle_om_cost_after_tax": 1564.0, - "lcoe_per_kwh": 0.0594 - } - ], - "Financial": { - "net_present_cost": 0.0, - "lcc": 2.428401357e6, - "year_one_om_costs_before_tax": 1946.6667, - "lifecycle_generation_tech_capital_costs": 45554.4483, - "lifecycle_offgrid_other_annual_costs_after_tax": 0.0, - "initial_capital_costs_after_incentives": 111136.229, - "lifecycle_MG_upgrade_and_fuel_cost": 0.0, - "lifecycle_elecbill_after_tax": 2.2304499547e6, - "lifecycle_offgrid_other_capital_costs": 0.0, - "om_and_replacement_present_cost_after_tax": 48907.9073, - "replacements_future_cost_after_tax": 89626.194, - "developer_annual_free_cashflows": [], - "initial_capital_costs": 207302.2781, - "lifecycle_om_costs_after_tax_bau": 10947.5032, - "offtaker_annual_free_cashflows_bau": [ - 0.0, - -200094.22, - -204698.09, - -209407.89, - -214226.05, - -219155.08, - -224197.53, - -229355.99, - -234633.15, - -240031.73, - -245554.53, - -251204.41, - -256984.28, - -262897.15, - -268946.07, - -275134.17, - -281464.66, - -287940.81, - -294565.97, - -301343.57, - -308277.12, - -315370.21, - -322626.51, - -330049.77, - -337643.84, - -345412.65 - ], - "lifecycle_capital_costs": 141016.3332, - "lifecycle_production_incentive_after_tax": 0.0, - "internal_rate_of_return": 0.19, - "lifecycle_elecbill_after_tax_bau": 2.5219879993e6, - "lifecycle_chp_standby_cost_after_tax": 0.0, - "lifecycle_om_costs_before_tax_bau": 14793.9232, - "lifecycle_om_costs_after_tax": 19027.8031, - "replacements_present_cost_after_tax": 29880.1042, - "lifecycle_outage_cost": 38003.691, - "lifecycle_storage_capital_costs": 95461.8849, - "offtaker_annual_free_cashflows": [ - -207302.28, - -77281.59, - -180429.5, - -184999.06, - -189554.76, - -194129.64, - -198609.75, - -203191.87, - -208126.27, - -213168.04, - -284399.42, - -223093.9, - -228228.84, - -233481.98, - -238856.04, - -244353.8, - -249978.11, - -255731.88, - -261618.1, - -267639.81, - -273800.13, - -280102.26, - -286549.45, - -293145.04, - -299892.46, - -306795.2 - ], - "year_one_om_costs_before_tax_bau": 1120.0, - "lifecycle_emissions_cost_health_bau": 58407.13, - "lifecycle_fuel_costs_after_tax_bau": 0.0, - "developer_om_and_replacement_present_cost_after_tax": 48907.9073, - "offtaker_discounted_annual_free_cashflows": [ - -207302.28, - -71358.81, - -153833.4, - -145641.17, - -137791.01, - -130301.55, - -123092.0, - -116280.56, - -109976.34, - -104007.82, - -128128.03, - -92805.7, - -87665.57, - -82810.12, - -78223.61, - -73891.12, - -69798.59, - -65932.74, - -62281.0, - -58831.52, - -55573.09, - -52495.13, - -49587.65, - -46841.2, - -44246.87, - -41796.23 - ], - "lifecycle_emissions_cost_climate_bau": 350494.22, - "lcc_bau": 2.5988503738e6, - "lifecycle_capital_costs_plus_om_after_tax": 160044.1364, - "lifecycle_emissions_cost_health": 53261.03, - "lifecycle_om_costs_before_tax": 25713.2475, - "annualized_payment_to_third_party": 0.0, - "lifecycle_emissions_cost_climate": 320479.13, - "lifecycle_fuel_costs_after_tax": 0.0, - "lifecycle_chp_standby_cost_after_tax_bau": 0.0, - "lifecycle_production_incentive_after_tax_bau": 0.0, - "offtaker_discounted_annual_free_cashflows_bau": [ - 0.0, - -184759.21, - -174524.69, - -164857.1, - -155725.04, - -147098.85, - -138950.49, - -131253.5, - -123982.88, - -117115.01, - -110627.57, - -104499.5, - -98710.89, - -93242.94, - -88077.87, - -83198.92, - -78590.23, - -74236.84, - -70124.59, - -66240.14, - -62570.87, - -59104.84, - -55830.82, - -52738.16, - -49816.81, - -47057.28 - ], - "npv": 170449.02, - "lifecycle_MG_upgrade_and_fuel_cost_bau": 0.0, - "simple_payback_years": 4.45, - "year_one_om_costs_after_tax": 1440.5333, - "lifecycle_outage_cost_bau": 65914.3623 - } -} diff --git a/test/debugging_tests.jl b/test/debugging_tests.jl index 7f61299be..b637d5562 100644 --- a/test/debugging_tests.jl +++ b/test/debugging_tests.jl @@ -11,57 +11,10 @@ using DelimitedFiles inputs = JSON.parsefile("./scenarios/ac_dc_pvs.json") inputs["ElectricTariff"]["tou_energy_rates_per_kwh"] = repeat(cat(0.2*ones(15), 0.4*ones(5), 0.2*ones(4), dims=1), outer=365) - # results = run_reopt([m1,m2], inputs) - results = run_reopt(m2, inputs) + results = run_reopt([m1,m2], inputs) open("ac_dc_pvs_results.json","w") do f JSON.print(f, results, 4) end - # for (key, model) in Dict("OPT" => m2)#"BAU" => m1, - # println(key) - # # MOI.compute_conflict!(backend(model)) - # compute_conflict!(model) - # # if MOI.get(backend(model), MOI.ConflictStatus()) == MOI.CONFLICT_FOUND - # if get_attribute(model, MOI.ConflictStatus()) == MOI.CONFLICT_FOUND - # iis_model, _ = copy_conflict(model) - # print(iis_model) - # # println(keys(model.obj_dict)) - # # open("ac_dc_pvs_conflicts.json","w") do f - # # JSON.print(f, model.obj_dict, 4) - # # end - # # for (name, obj) in model.obj_dict - # # # println(typeof(obj)) - # # # if typeof(obj) <: ConstraintRef - # # # println(MOI.get(model, MOI.ConstraintConflictStatus(), obj)) - # # # if MOI.get(model, MOI.ConstraintConflictStatus(), obj) == MOI.IN_CONFLICT - # # # println(obj) - # # # end - # # println(name) - # # if typeof(obj) <: JuMP.Containers.DenseAxisArray || typeof(obj) <: JuMP.Containers.SparseAxisArray - # # for elem in obj - # # # if typeof(elem) <: ConstraintRef - # # try - # # println(MOI.get(model, MOI.ConstraintConflictStatus(), elem)) - # # # if MOI.get(model, MOI.ConstraintConflictStatus(), elem) == MOI.IN_CONFLICT - # # # println(elem) - # # # end - # # catch - # # # println(typeof(elem)) - # # end - # # end - # # else - # # try - # # # println(typeof(obj)) - # # println(MOI.get(model, MOI.ConstraintConflictStatus(), obj)) - # # # if MOI.get(model, MOI.ConstraintConflictStatus(), obj) == MOI.IN_CONFLICT - # # # println(obj) - # # # end - # # catch - # # # println(typeof(obj)) - # # end - # # end - # # end - # end - # end @test results["ElectricStorage"]["size_kw"] ≈ 31.88 atol=0.1 @test results["ElectricStorage"]["size_kwh"] ≈ 210.17 atol=0.1 diff --git a/test/scenarios/ac_dc_pvs.json b/test/scenarios/ac_dc_pvs.json index 6d0a7f6d9..41e85b7c1 100644 --- a/test/scenarios/ac_dc_pvs.json +++ b/test/scenarios/ac_dc_pvs.json @@ -1,7 +1,9 @@ { "Site": { "latitude": 34.5794343, - "longitude": -118.1164613 + "longitude": -118.1164613, + "land_acres": 0.25, + "roof_squarefeet": 1000.0 }, "Financial": { "om_cost_escalation_rate_fraction": 0.025, From 81b2b252c77673b732984869e6eb5e692b595786 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Wed, 14 Aug 2024 16:27:14 -0600 Subject: [PATCH 5/8] Revert "changing pv existing to min makes infeasible" This reverts commit 4aa97f5a2eff5fd27eae2c7322b630f541ea1f20. --- test/ac_dc_pvs_results.json | 202409 ++++++++++++++++++++++++++++++- test/scenarios/ac_dc_pvs.json | 6 +- 2 files changed, 202400 insertions(+), 15 deletions(-) diff --git a/test/ac_dc_pvs_results.json b/test/ac_dc_pvs_results.json index 5f76c6a42..a02126f0a 100644 --- a/test/ac_dc_pvs_results.json +++ b/test/ac_dc_pvs_results.json @@ -1,14 +1,64834 @@ { - "Messages": { - "errors": [ + "Site": { + "annual_emissions_from_fuelburn_tonnes_PM25": 0.0, + "lifecycle_emissions_tonnes_CO2_bau": 9358.12, + "annual_emissions_tonnes_CO2_bau": 434.86, + "lifecycle_emissions_reduction_CO2_fraction": 0.0974982154535314, + "lifecycle_emissions_tonnes_PM25": 0.48, + "lifecycle_emissions_tonnes_PM25_bau": 0.53, + "annual_emissions_from_fuelburn_tonnes_NOx_bau": 0.0, + "lifecycle_emissions_tonnes_SO2": 0.56, + "lifecycle_emissions_from_fuelburn_tonnes_PM25": 0.0, + "annual_emissions_tonnes_SO2_bau": 0.03, + "annual_emissions_from_fuelburn_tonnes_NOx": 0.0, + "lifecycle_emissions_from_fuelburn_tonnes_SO2_bau": 0.0, + "annual_emissions_tonnes_NOx": 0.12, + "renewable_electricity_fraction_bau": 0.045939, + "annual_emissions_tonnes_SO2": 0.03, + "annual_emissions_tonnes_PM25": 0.02, + "total_renewable_energy_fraction_bau": 0.045939, + "lifecycle_emissions_from_fuelburn_tonnes_CO2_bau": 0.0, + "lifecycle_emissions_tonnes_NOx": 2.49, + "annual_emissions_from_fuelburn_tonnes_CO2": 0.0, + "annual_emissions_from_fuelburn_tonnes_CO2_bau": 0.0, + "annual_emissions_tonnes_PM25_bau": 0.02, + "total_renewable_energy_fraction": 0.201207, + "annual_emissions_from_fuelburn_tonnes_SO2": 0.0, + "lifecycle_emissions_from_fuelburn_tonnes_NOx_bau": 0.0, + "lifecycle_emissions_from_fuelburn_tonnes_SO2": 0.0, + "annual_renewable_electricity_kwh_bau": 45938.78, + "renewable_electricity_fraction": 0.201207, + "lifecycle_emissions_tonnes_NOx_bau": 2.76, + "lifecycle_emissions_tonnes_SO2_bau": 0.62, + "lifecycle_emissions_from_fuelburn_tonnes_CO2": 0.0, + "annual_emissions_from_fuelburn_tonnes_PM25_bau": 0.0, + "annual_emissions_from_fuelburn_tonnes_SO2_bau": 0.0, + "lifecycle_emissions_from_fuelburn_tonnes_PM25_bau": 0.0, + "annual_emissions_tonnes_NOx_bau": 0.13, + "lifecycle_emissions_from_fuelburn_tonnes_NOx": 0.0, + "annual_renewable_electricity_kwh": 201206.67, + "annual_emissions_tonnes_CO2": 392.46, + "lifecycle_emissions_tonnes_CO2": 8445.72 + }, + "Outages": { + "expected_outage_cost": 38003.69101517182, + "electric_storage_microgrid_upgraded": true, + "unserved_load_per_outage_kwh": [ + [ + 2934.9 + ] + ], + "pv_microgrid_size_kw": 121.6667, + "pv_to_storage_series_kw": [ + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 2.467 + ] + ], + [ + [ + 7.593 + ] + ], + [ + [ + 27.479 + ] + ], + [ + [ + 14.63 + ] + ], + [ + [ + 21.782 + ] + ], + [ + [ + 4.668 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ] + ], + "critical_loads_per_outage_series_kw": [ + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 35.7032525087 + ] + ], + [ + [ + 39.13324098535 + ] + ], + [ + [ + 65.73176077400001 + ] + ], + [ + [ + 98.6273313215 + ] + ], + [ + [ + 98.5803765585 + ] + ], + [ + [ + 98.5217491685 + ] + ], + [ + [ + 98.5224687115 + ] + ], + [ + [ + 98.5364321545 + ] + ], + [ + [ + 98.536721342 + ] + ], + [ + [ + 98.3879792935 + ] + ], + [ + [ + 100.0259452265 + ] + ], + [ + [ + 108.680057484 + ] + ], + [ + [ + 84.6323553725 + ] + ], + [ + [ + 84.696616961 + ] + ], + [ + [ + 75.87522944749999 + ] + ], + [ + [ + 30.45418713595 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 16.06619674345 + ] + ], + [ + [ + 16.4401459875 + ] + ], + [ + [ + 16.42034179565 + ] + ], + [ + [ + 16.5319430043 + ] + ], + [ + [ + 35.5986135471 + ] + ], + [ + [ + 30.8088586586 + ] + ], + [ + [ + 47.996797263800005 + ] + ], + [ + [ + 74.0402767375 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 99.7876786385 + ] + ], + [ + [ + 108.353473262 + ] + ], + [ + [ + 75.3876981175 + ] + ], + [ + [ + 57.674028539999995 + ] + ], + [ + [ + 57.684197782999995 + ] + ], + [ + [ + 40.10646857055 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 16.0157476851 + ] + ], + [ + [ + 16.030614242 + ] + ], + [ + [ + 16.0572089538 + ] + ], + [ + [ + 5.697231791 + ] + ], + [ + [ + 30.045383660949998 + ] + ], + [ + [ + 29.6814054141 + ] + ], + [ + [ + 56.2519097805 + ] + ], + [ + [ + 56.2519097805 + ] + ], + [ + [ + 73.965579358 + ] + ], + [ + [ + 73.965579358 + ] + ], + [ + [ + 73.965579358 + ] + ], + [ + [ + 73.965579358 + ] + ], + [ + [ + 75.67873828249999 + ] + ], + [ + [ + 66.5308633285 + ] + ], + [ + [ + 48.817193751199994 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 35.793373751 + ] + ], + [ + [ + 39.14933736705 + ] + ], + [ + [ + 65.4495116485 + ] + ], + [ + [ + 98.08212518399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 98.07451971399999 + ] + ], + [ + [ + 99.7876786385 + ] + ], + [ + [ + 108.353473262 + ] + ], + [ + [ + 84.244532906 + ] + ], + [ + [ + 84.244532906 + ] + ], + [ + [ + 75.3876981175 + ] + ], + [ + [ + 30.45418713595 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ] + ], + "pv_microgrid_upgrade_cost": 0.0, + "max_outage_cost_per_outage_duration": [ + 38003.69101517182 + ], + "unserved_load_series_kw": [ + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 35.7032525087 + ] + ], + [ + [ + 4.4985749249905425 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 38.954240578951485 + ] + ], + [ + [ + 25.215782278447378 + ] + ], + [ + [ + 18.46897149460871 + ] + ], + [ + [ + 18.526527228529417 + ] + ], + [ + [ + 38.47081039497125 + ] + ], + [ + [ + 57.809153953554144 + ] + ], + [ + [ + 56.7607599028973 + ] + ], + [ + [ + 94.84041781498684 + ] + ], + [ + [ + 108.680057484 + ] + ], + [ + [ + 84.6323553725 + ] + ], + [ + [ + 84.696616961 + ] + ], + [ + [ + 43.99892355189999 + ] + ], + [ + [ + 30.45418713595 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 16.06619674345 + ] + ], + [ + [ + 16.4401459875 + ] + ], + [ + [ + 16.42034179565 + ] + ], + [ + [ + 16.5319430043 + ] + ], + [ + [ + 35.5986135471 + ] + ], + [ + [ + 27.545618904499626 + ] + ], + [ + [ + 8.992402886784191 + ] + ], + [ + [ + 15.780079410714663 + ] + ], + [ + [ + 47.66268221460136 + ] + ], + [ + [ + 48.483197172743154 + ] + ], + [ + [ + 4.671189229751718 + ] + ], + [ + [ + 25.114796075762854 + ] + ], + [ + [ + 37.42444801644768 + ] + ], + [ + [ + 56.47509076430239 + ] + ], + [ + [ + 88.85549108487504 + ] + ], + [ + [ + 108.353473262 + ] + ], + [ + [ + 75.3876981175 + ] + ], + [ + [ + 57.674028539999995 + ] + ], + [ + [ + 57.684197782999995 + ] + ], + [ + [ + 40.10646857055 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 16.0157476851 + ] + ], + [ + [ + 16.030614242 + ] + ], + [ + [ + 16.0572089538 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 3.552713678800501e-15 + ] + ], + [ + [ + 3.552713678800501e-15 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 13.438481755355632 + ] + ], + [ + [ + 32.833056897049744 + ] + ], + [ + [ + 64.50725185406851 + ] + ], + [ + [ + 66.5308633285 + ] + ], + [ + [ + 48.817193751199994 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 35.793373751 + ] + ], + [ + [ + 30.509936857109146 + ] + ], + [ + [ + 25.36579835636666 + ] + ], + [ + [ + 4.6415512077528405 + ] + ], + [ + [ + 21.587254811716633 + ] + ], + [ + [ + 13.769712185780705 + ] + ], + [ + [ + 13.496360661803237 + ] + ], + [ + [ + 19.900055645888102 + ] + ], + [ + [ + 32.82177591806004 + ] + ], + [ + [ + 53.41616690522776 + ] + ], + [ + [ + 86.83480344212165 + ] + ], + [ + [ + 108.353473262 + ] + ], + [ + [ + 84.244532906 + ] + ], + [ + [ + 84.244532906 + ] + ], + [ + [ + 49.25393091834653 + ] + ], + [ + [ + 30.45418713595 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 16.553543950349997 + ] + ] + ], + "soc_series_fraction": [ + [ + [ + 1.0 + ] + ], + [ + [ + 1.0 + ] + ], + [ + [ + 1.0 + ] + ], + [ + [ + 1.0 + ] + ], + [ + [ + 0.84 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.707 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.547 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.387 + ] + ], + [ + [ + 0.398 + ] + ], + [ + [ + 0.432 + ] + ], + [ + [ + 0.556 + ] + ], + [ + [ + 0.622 + ] + ], + [ + [ + 0.721 + ] + ], + [ + [ + 0.742 + ] + ], + [ + [ + 0.737 + ] + ], + [ + [ + 0.737 + ] + ], + [ + [ + 0.737 + ] + ], + [ + [ + 0.737 + ] + ], + [ + [ + 0.737 + ] + ], + [ + [ + 0.737 + ] + ], + [ + [ + 0.737 + ] + ], + [ + [ + 0.657 + ] + ], + [ + [ + 0.657 + ] + ], + [ + [ + 0.657 + ] + ], + [ + [ + 0.657 + ] + ], + [ + [ + 0.657 + ] + ], + [ + [ + 0.574 + ] + ], + [ + [ + 0.574 + ] + ], + [ + [ + 0.574 + ] + ], + [ + [ + 0.491 + ] + ], + [ + [ + 0.491 + ] + ], + [ + [ + 0.491 + ] + ], + [ + [ + 0.491 + ] + ], + [ + [ + 0.491 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.331 + ] + ], + [ + [ + 0.2 + ] + ], + [ + [ + 0.2 + ] + ], + [ + [ + 0.2 + ] + ], + [ + [ + 0.2 + ] + ], + [ + [ + 0.2 + ] + ], + [ + [ + 0.2 + ] + ], + [ + [ + 0.2 + ] + ] + ], + "pv_curtailed_series_kw": [ + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ] + ], + "storage_microgrid_upgrade_cost": 0.0, + "pv_to_load_series_kw": [ + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 2.758 + ] + ], + [ + [ + 39.255 + ] + ], + [ + [ + 59.673 + ] + ], + [ + [ + 73.365 + ] + ], + [ + [ + 80.053 + ] + ], + [ + [ + 79.996 + ] + ], + [ + [ + 60.066 + ] + ], + [ + [ + 40.728 + ] + ], + [ + [ + 41.627 + ] + ], + [ + [ + 5.186 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 3.263 + ] + ], + [ + [ + 39.004 + ] + ], + [ + [ + 58.26 + ] + ], + [ + [ + 50.412 + ] + ], + [ + [ + 49.591 + ] + ], + [ + [ + 61.527 + ] + ], + [ + [ + 72.96 + ] + ], + [ + [ + 60.65 + ] + ], + [ + [ + 41.599 + ] + ], + [ + [ + 10.932 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 5.697 + ] + ], + [ + [ + 30.045 + ] + ], + [ + [ + 29.681 + ] + ], + [ + [ + 56.252 + ] + ], + [ + [ + 56.252 + ] + ], + [ + [ + 73.966 + ] + ], + [ + [ + 73.101 + ] + ], + [ + [ + 60.527 + ] + ], + [ + [ + 41.133 + ] + ], + [ + [ + 11.171 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 8.639 + ] + ], + [ + [ + 40.084 + ] + ], + [ + [ + 61.564 + ] + ], + [ + [ + 76.487 + ] + ], + [ + [ + 84.305 + ] + ], + [ + [ + 84.578 + ] + ], + [ + [ + 78.174 + ] + ], + [ + [ + 65.253 + ] + ], + [ + [ + 44.658 + ] + ], + [ + [ + 12.953 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ] + ], + "storage_discharge_series_kw": [ + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 31.876305895599998 + ] + ], + [ + [ + 26.477048520759453 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 31.876305895599998 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 31.876305895599998 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], [ - "core_reopt.jl_149", [ - "REopt with-DERs scenario solved with non-optimal solution." + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.8641905819693108 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 15.938152947799999 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 16.553543950349997 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 31.876305895599998 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 26.13376719915346 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 + ] + ], + [ + [ + 0.0 ] ] ], - "has_stacktrace": false, + "microgrid_upgrade_capital_cost": 0.0 + }, + "ElectricStorage": { + "size_kw": 31.88, + "size_kwh": 210.17, + "initial_capital_cost": 124638.15, + "dc_couple_inverter_size_kw": 82.18, + "soc_series_fraction": [ + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5, + 0.51, + 0.654, + 0.798, + 0.941, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.21, + 0.354, + 0.497, + 0.641, + 0.785, + 0.929, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.21, + 0.28, + 0.424, + 0.567, + 0.711, + 0.855, + 0.999, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.236, + 0.38, + 0.523, + 0.667, + 0.811, + 0.955, + 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, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.212, + 0.356, + 0.5, + 0.643, + 0.787, + 0.931, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.377, + 0.521, + 0.664, + 0.808, + 0.952, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.235, + 0.379, + 0.523, + 0.666, + 0.81, + 0.954, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.282, + 0.425, + 0.569, + 0.713, + 0.857, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.214, + 0.358, + 0.502, + 0.645, + 0.789, + 0.933, + 1.0, + 1.0, + 0.851, + 0.691, + 0.531, + 0.371, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.213, + 0.222, + 0.281, + 0.425, + 0.569, + 0.712, + 0.856, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.232, + 0.376, + 0.519, + 0.663, + 0.807, + 0.951, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.377, + 0.521, + 0.665, + 0.808, + 0.952, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.236, + 0.38, + 0.524, + 0.668, + 0.811, + 0.955, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.216, + 0.359, + 0.503, + 0.647, + 0.791, + 0.912, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.232, + 0.373, + 0.517, + 0.661, + 0.804, + 0.948, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.234, + 0.376, + 0.52, + 0.664, + 0.807, + 0.951, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.226, + 0.332, + 0.448, + 0.591, + 0.735, + 0.879, + 1.0, + 1.0, + 0.922, + 0.762, + 0.602, + 0.442, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.31, + 0.324, + 0.388, + 0.497, + 0.594, + 0.738, + 0.882, + 1.0, + 0.88, + 0.72, + 0.56, + 0.4, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.274, + 0.418, + 0.562, + 0.706, + 0.849, + 0.954, + 0.972, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.212, + 0.272, + 0.416, + 0.559, + 0.703, + 0.847, + 0.991, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.24, + 0.384, + 0.528, + 0.671, + 0.815, + 0.959, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.238, + 0.382, + 0.525, + 0.669, + 0.813, + 0.957, + 1.0, + 1.0, + 1.0, + 0.969, + 0.809, + 0.649, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.495, + 0.55, + 0.611, + 0.703, + 0.795, + 0.892, + 0.973, + 1.0, + 1.0, + 1.0, + 0.869, + 0.709, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.567, + 0.62, + 0.653, + 0.711, + 0.712, + 0.856, + 1.0, + 0.934, + 0.774, + 0.614, + 0.454, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.329, + 0.413, + 0.557, + 0.565, + 0.709, + 0.852, + 0.996, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.244, + 0.388, + 0.532, + 0.676, + 0.819, + 0.963, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.253, + 0.396, + 0.54, + 0.684, + 0.828, + 0.972, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.253, + 0.396, + 0.54, + 0.684, + 0.828, + 0.971, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.216, + 0.36, + 0.503, + 0.647, + 0.791, + 0.935, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.3, + 0.443, + 0.587, + 0.731, + 0.875, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.239, + 0.375, + 0.519, + 0.663, + 0.807, + 0.95, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.256, + 0.399, + 0.543, + 0.687, + 0.831, + 0.975, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.261, + 0.405, + 0.549, + 0.692, + 0.836, + 0.98, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.258, + 0.402, + 0.546, + 0.689, + 0.833, + 0.977, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.213, + 0.289, + 0.418, + 0.561, + 0.705, + 0.849, + 0.993, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.259, + 0.403, + 0.547, + 0.691, + 0.834, + 0.978, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.34, + 0.484, + 0.628, + 0.771, + 0.915, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.292, + 0.42, + 0.55, + 0.654, + 0.797, + 0.941, + 1.0, + 0.908, + 0.748, + 0.588, + 0.428, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.323, + 0.425, + 0.569, + 0.713, + 0.856, + 0.909, + 0.967, + 1.0, + 0.905, + 0.745, + 0.585, + 0.425, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.272, + 0.334, + 0.362, + 0.425, + 0.569, + 0.712, + 0.856, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.344, + 0.488, + 0.631, + 0.775, + 0.919, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.256, + 0.4, + 0.535, + 0.679, + 0.823, + 0.966, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.264, + 0.408, + 0.552, + 0.66, + 0.804, + 0.948, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.269, + 0.413, + 0.557, + 0.701, + 0.844, + 0.988, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.223, + 0.366, + 0.51, + 0.654, + 0.798, + 0.941, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.271, + 0.415, + 0.559, + 0.703, + 0.847, + 0.99, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.27, + 0.413, + 0.557, + 0.701, + 0.845, + 0.988, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.219, + 0.314, + 0.434, + 0.578, + 0.709, + 0.784, + 0.928, + 1.0, + 1.0, + 0.991, + 0.831, + 0.671, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.52, + 0.527, + 0.536, + 0.569, + 0.712, + 0.856, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.273, + 0.416, + 0.56, + 0.704, + 0.848, + 0.991, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.269, + 0.413, + 0.557, + 0.701, + 0.844, + 0.988, + 1.0, + 1.0, + 0.874, + 0.714, + 0.554, + 0.394, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.303, + 0.35, + 0.395, + 0.425, + 0.569, + 0.712, + 0.856, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.283, + 0.426, + 0.57, + 0.714, + 0.858, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.283, + 0.427, + 0.571, + 0.714, + 0.858, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.279, + 0.422, + 0.566, + 0.71, + 0.854, + 0.998, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.277, + 0.421, + 0.565, + 0.708, + 0.852, + 0.996, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.345, + 0.489, + 0.633, + 0.776, + 0.92, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.287, + 0.431, + 0.575, + 0.719, + 0.863, + 1.0, + 1.0, + 1.0, + 0.925, + 0.765, + 0.605, + 0.445, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.294, + 0.395, + 0.475, + 0.588, + 0.731, + 0.756, + 0.899, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.223, + 0.318, + 0.438, + 0.582, + 0.726, + 0.87, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.236, + 0.333, + 0.477, + 0.621, + 0.764, + 0.908, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.283, + 0.427, + 0.571, + 0.715, + 0.858, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.286, + 0.43, + 0.574, + 0.717, + 0.861, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.24, + 0.334, + 0.457, + 0.601, + 0.745, + 0.888, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.293, + 0.437, + 0.58, + 0.724, + 0.868, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.302, + 0.446, + 0.59, + 0.733, + 0.877, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.203, + 0.271, + 0.415, + 0.559, + 0.703, + 0.846, + 0.99, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.299, + 0.428, + 0.571, + 0.715, + 0.859, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.262, + 0.38, + 0.524, + 0.667, + 0.811, + 0.955, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.21, + 0.303, + 0.447, + 0.591, + 0.735, + 0.878, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.21, + 0.303, + 0.447, + 0.59, + 0.734, + 0.878, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.212, + 0.308, + 0.452, + 0.596, + 0.74, + 0.883, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.213, + 0.309, + 0.453, + 0.597, + 0.74, + 0.884, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.213, + 0.303, + 0.447, + 0.591, + 0.735, + 0.879, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.215, + 0.316, + 0.46, + 0.604, + 0.748, + 0.891, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.216, + 0.319, + 0.463, + 0.607, + 0.751, + 0.894, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.217, + 0.32, + 0.464, + 0.608, + 0.752, + 0.895, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.263, + 0.368, + 0.512, + 0.656, + 0.799, + 0.943, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.217, + 0.313, + 0.457, + 0.601, + 0.745, + 0.888, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.217, + 0.31, + 0.453, + 0.597, + 0.741, + 0.885, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.218, + 0.315, + 0.443, + 0.586, + 0.73, + 0.874, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.218, + 0.311, + 0.434, + 0.578, + 0.722, + 0.866, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.219, + 0.313, + 0.456, + 0.6, + 0.744, + 0.888, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.221, + 0.323, + 0.467, + 0.611, + 0.755, + 0.898, + 0.957, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.221, + 0.324, + 0.467, + 0.611, + 0.755, + 0.899, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.221, + 0.32, + 0.464, + 0.607, + 0.751, + 0.895, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.222, + 0.278, + 0.397, + 0.541, + 0.685, + 0.829, + 0.972, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.225, + 0.338, + 0.482, + 0.626, + 0.769, + 0.913, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.225, + 0.33, + 0.474, + 0.618, + 0.761, + 0.905, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.341, + 0.485, + 0.629, + 0.773, + 0.916, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.339, + 0.482, + 0.626, + 0.77, + 0.914, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.226, + 0.331, + 0.474, + 0.618, + 0.762, + 0.906, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.333, + 0.451, + 0.594, + 0.738, + 0.882, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.341, + 0.485, + 0.629, + 0.772, + 0.916, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.23, + 0.344, + 0.488, + 0.631, + 0.775, + 0.919, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.345, + 0.489, + 0.632, + 0.776, + 0.92, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.223, + 0.331, + 0.475, + 0.619, + 0.762, + 0.906, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.377, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.248, + 0.357, + 0.501, + 0.644, + 0.788, + 0.932, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.232, + 0.345, + 0.489, + 0.633, + 0.777, + 0.92, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.312, + 0.416, + 0.56, + 0.607, + 0.75, + 0.894, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.346, + 0.45, + 0.594, + 0.738, + 0.881, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.905, + 0.745, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.695, + 0.839, + 0.89, + 0.896, + 0.916, + 0.926, + 0.963, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.224, + 0.345, + 0.489, + 0.632, + 0.776, + 0.92, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.234, + 0.347, + 0.491, + 0.635, + 0.778, + 0.922, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.377, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.218, + 0.251, + 0.363, + 0.506, + 0.65, + 0.794, + 0.938, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.233, + 0.344, + 0.488, + 0.632, + 0.776, + 0.919, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.229, + 0.339, + 0.483, + 0.627, + 0.771, + 0.914, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.235, + 0.346, + 0.49, + 0.634, + 0.778, + 0.921, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.234, + 0.339, + 0.483, + 0.626, + 0.77, + 0.914, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.235, + 0.345, + 0.489, + 0.632, + 0.776, + 0.92, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.235, + 0.343, + 0.487, + 0.631, + 0.775, + 0.918, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.394, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.236, + 0.272, + 0.385, + 0.529, + 0.673, + 0.816, + 0.96, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.226, + 0.337, + 0.48, + 0.624, + 0.768, + 0.893, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.308, + 0.414, + 0.54, + 0.599, + 0.743, + 0.887, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.238, + 0.351, + 0.495, + 0.639, + 0.782, + 0.926, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.203, + 0.24, + 0.357, + 0.501, + 0.645, + 0.789, + 0.932, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.203, + 0.241, + 0.354, + 0.498, + 0.642, + 0.785, + 0.929, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.242, + 0.354, + 0.497, + 0.641, + 0.785, + 0.929, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.412, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.255, + 0.293, + 0.402, + 0.546, + 0.689, + 0.833, + 0.977, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.24, + 0.355, + 0.499, + 0.642, + 0.786, + 0.93, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.241, + 0.352, + 0.496, + 0.639, + 0.783, + 0.927, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.239, + 0.348, + 0.491, + 0.635, + 0.779, + 0.923, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.241, + 0.346, + 0.49, + 0.633, + 0.777, + 0.921, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.243, + 0.354, + 0.497, + 0.641, + 0.785, + 0.929, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.247, + 0.342, + 0.485, + 0.629, + 0.773, + 0.917, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.413, + 0.253, + 0.253, + 0.253, + 0.253, + 0.253, + 0.253, + 0.253, + 0.253, + 0.253, + 0.253, + 0.26, + 0.302, + 0.417, + 0.505, + 0.649, + 0.793, + 0.936, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.246, + 0.364, + 0.507, + 0.651, + 0.795, + 0.939, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.245, + 0.353, + 0.497, + 0.64, + 0.784, + 0.928, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.25, + 0.359, + 0.502, + 0.646, + 0.79, + 0.934, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.248, + 0.359, + 0.503, + 0.647, + 0.791, + 0.934, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.246, + 0.36, + 0.504, + 0.647, + 0.791, + 0.935, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.248, + 0.372, + 0.516, + 0.659, + 0.803, + 0.947, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.433, + 0.273, + 0.273, + 0.273, + 0.273, + 0.273, + 0.273, + 0.273, + 0.273, + 0.273, + 0.273, + 0.281, + 0.323, + 0.44, + 0.584, + 0.728, + 0.871, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.252, + 0.367, + 0.511, + 0.655, + 0.799, + 0.942, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.25, + 0.362, + 0.506, + 0.65, + 0.793, + 0.937, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.249, + 0.361, + 0.505, + 0.648, + 0.792, + 0.936, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.246, + 0.36, + 0.504, + 0.648, + 0.792, + 0.935, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.245, + 0.36, + 0.504, + 0.648, + 0.792, + 0.935, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.245, + 0.355, + 0.499, + 0.643, + 0.787, + 0.931, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.435, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.282, + 0.319, + 0.426, + 0.569, + 0.713, + 0.857, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.243, + 0.352, + 0.496, + 0.64, + 0.784, + 0.927, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.244, + 0.349, + 0.492, + 0.636, + 0.78, + 0.924, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.243, + 0.327, + 0.471, + 0.615, + 0.759, + 0.903, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.247, + 0.36, + 0.504, + 0.648, + 0.791, + 0.935, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.251, + 0.363, + 0.507, + 0.651, + 0.794, + 0.938, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.249, + 0.358, + 0.502, + 0.646, + 0.79, + 0.933, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.457, + 0.297, + 0.297, + 0.297, + 0.297, + 0.297, + 0.297, + 0.297, + 0.297, + 0.297, + 0.297, + 0.304, + 0.342, + 0.45, + 0.593, + 0.737, + 0.881, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.456, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.304, + 0.342, + 0.447, + 0.591, + 0.735, + 0.878, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.21, + 0.245, + 0.351, + 0.495, + 0.639, + 0.783, + 0.926, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.244, + 0.323, + 0.41, + 0.553, + 0.697, + 0.841, + 0.961, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.245, + 0.347, + 0.49, + 0.634, + 0.778, + 0.922, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.242, + 0.324, + 0.397, + 0.541, + 0.685, + 0.829, + 0.972, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.245, + 0.347, + 0.491, + 0.635, + 0.778, + 0.922, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.46, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.3, + 0.308, + 0.343, + 0.444, + 0.588, + 0.732, + 0.876, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.229, + 0.287, + 0.332, + 0.386, + 0.53, + 0.674, + 0.818, + 0.961, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.245, + 0.352, + 0.496, + 0.64, + 0.783, + 0.927, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.246, + 0.361, + 0.504, + 0.648, + 0.792, + 0.936, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.245, + 0.361, + 0.505, + 0.649, + 0.793, + 0.936, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.243, + 0.353, + 0.497, + 0.64, + 0.784, + 0.928, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.243, + 0.349, + 0.493, + 0.637, + 0.78, + 0.924, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.464, + 0.304, + 0.304, + 0.304, + 0.304, + 0.304, + 0.304, + 0.304, + 0.304, + 0.304, + 0.304, + 0.311, + 0.345, + 0.448, + 0.592, + 0.736, + 0.879, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.244, + 0.35, + 0.494, + 0.638, + 0.781, + 0.925, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.244, + 0.352, + 0.496, + 0.64, + 0.784, + 0.927, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.243, + 0.349, + 0.493, + 0.637, + 0.78, + 0.924, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.243, + 0.345, + 0.488, + 0.632, + 0.776, + 0.92, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.241, + 0.344, + 0.488, + 0.632, + 0.776, + 0.919, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.243, + 0.347, + 0.491, + 0.634, + 0.778, + 0.922, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.482, + 0.322, + 0.322, + 0.322, + 0.322, + 0.322, + 0.322, + 0.322, + 0.322, + 0.322, + 0.322, + 0.331, + 0.365, + 0.468, + 0.612, + 0.756, + 0.9, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.21, + 0.246, + 0.346, + 0.49, + 0.634, + 0.778, + 0.921, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.242, + 0.342, + 0.486, + 0.63, + 0.773, + 0.917, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.241, + 0.342, + 0.486, + 0.63, + 0.774, + 0.918, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.239, + 0.339, + 0.482, + 0.626, + 0.77, + 0.914, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.238, + 0.337, + 0.481, + 0.625, + 0.769, + 0.912, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.239, + 0.326, + 0.469, + 0.613, + 0.756, + 0.9, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.481, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.329, + 0.361, + 0.452, + 0.596, + 0.739, + 0.883, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.238, + 0.332, + 0.476, + 0.62, + 0.764, + 0.907, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.238, + 0.333, + 0.477, + 0.621, + 0.765, + 0.908, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.24, + 0.341, + 0.485, + 0.629, + 0.772, + 0.916, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.241, + 0.345, + 0.489, + 0.633, + 0.776, + 0.92, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.237, + 0.336, + 0.48, + 0.624, + 0.768, + 0.912, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.235, + 0.337, + 0.481, + 0.625, + 0.768, + 0.912, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.484, + 0.324, + 0.324, + 0.324, + 0.324, + 0.324, + 0.324, + 0.324, + 0.324, + 0.324, + 0.324, + 0.329, + 0.359, + 0.462, + 0.605, + 0.749, + 0.893, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.235, + 0.337, + 0.481, + 0.625, + 0.769, + 0.912, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.234, + 0.333, + 0.477, + 0.621, + 0.764, + 0.908, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.481, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.321, + 0.328, + 0.358, + 0.45, + 0.593, + 0.737, + 0.881, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.243, + 0.333, + 0.477, + 0.621, + 0.764, + 0.908, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.236, + 0.331, + 0.475, + 0.619, + 0.762, + 0.906, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.234, + 0.331, + 0.474, + 0.618, + 0.762, + 0.906, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.483, + 0.323, + 0.323, + 0.323, + 0.323, + 0.323, + 0.323, + 0.323, + 0.323, + 0.323, + 0.323, + 0.329, + 0.358, + 0.454, + 0.597, + 0.741, + 0.885, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.231, + 0.308, + 0.37, + 0.514, + 0.657, + 0.801, + 0.945, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.239, + 0.336, + 0.48, + 0.623, + 0.767, + 0.911, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.234, + 0.332, + 0.476, + 0.62, + 0.764, + 0.907, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.232, + 0.33, + 0.474, + 0.617, + 0.761, + 0.905, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.223, + 0.299, + 0.416, + 0.56, + 0.662, + 0.796, + 0.93, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.228, + 0.318, + 0.462, + 0.606, + 0.75, + 0.893, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.479, + 0.319, + 0.319, + 0.319, + 0.319, + 0.319, + 0.319, + 0.319, + 0.319, + 0.319, + 0.319, + 0.324, + 0.35, + 0.443, + 0.587, + 0.731, + 0.874, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.231, + 0.328, + 0.472, + 0.616, + 0.759, + 0.903, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.231, + 0.329, + 0.473, + 0.616, + 0.76, + 0.904, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.231, + 0.327, + 0.471, + 0.615, + 0.758, + 0.902, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.23, + 0.328, + 0.472, + 0.615, + 0.759, + 0.903, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.231, + 0.327, + 0.471, + 0.614, + 0.758, + 0.902, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.231, + 0.323, + 0.466, + 0.61, + 0.754, + 0.898, + 1.0, + 1.0, + 1.0, + 0.989, + 0.829, + 0.669, + 0.599, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.44, + 0.458, + 0.478, + 0.496, + 0.64, + 0.784, + 0.928, + 0.945, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.231, + 0.321, + 0.465, + 0.608, + 0.752, + 0.896, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.229, + 0.322, + 0.466, + 0.61, + 0.754, + 0.898, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.229, + 0.323, + 0.467, + 0.61, + 0.754, + 0.898, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.23, + 0.321, + 0.465, + 0.609, + 0.753, + 0.897, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.23, + 0.323, + 0.467, + 0.611, + 0.755, + 0.898, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.203, + 0.229, + 0.323, + 0.467, + 0.61, + 0.754, + 0.898, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.456, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.296, + 0.3, + 0.326, + 0.419, + 0.563, + 0.707, + 0.851, + 0.994, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.203, + 0.23, + 0.322, + 0.466, + 0.609, + 0.753, + 0.897, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.215, + 0.217, + 0.343, + 0.487, + 0.631, + 0.775, + 0.919, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.203, + 0.23, + 0.322, + 0.466, + 0.61, + 0.754, + 0.897, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.203, + 0.229, + 0.324, + 0.467, + 0.611, + 0.755, + 0.899, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.23, + 0.323, + 0.467, + 0.611, + 0.755, + 0.899, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.232, + 0.326, + 0.47, + 0.614, + 0.757, + 0.901, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.435, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.275, + 0.278, + 0.306, + 0.408, + 0.551, + 0.695, + 0.839, + 0.983, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.229, + 0.33, + 0.474, + 0.617, + 0.761, + 0.905, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.229, + 0.331, + 0.475, + 0.619, + 0.762, + 0.906, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.229, + 0.33, + 0.474, + 0.617, + 0.761, + 0.905, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.228, + 0.329, + 0.473, + 0.617, + 0.76, + 0.904, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.202, + 0.229, + 0.329, + 0.473, + 0.617, + 0.76, + 0.904, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.228, + 0.325, + 0.469, + 0.612, + 0.756, + 0.9, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.432, + 0.272, + 0.272, + 0.272, + 0.272, + 0.272, + 0.272, + 0.272, + 0.272, + 0.272, + 0.272, + 0.273, + 0.3, + 0.396, + 0.54, + 0.683, + 0.827, + 0.971, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.227, + 0.322, + 0.466, + 0.61, + 0.754, + 0.898, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.228, + 0.323, + 0.467, + 0.61, + 0.754, + 0.898, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.228, + 0.323, + 0.466, + 0.61, + 0.754, + 0.898, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.228, + 0.322, + 0.466, + 0.61, + 0.753, + 0.897, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.228, + 0.325, + 0.468, + 0.612, + 0.756, + 0.9, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.227, + 0.328, + 0.472, + 0.616, + 0.759, + 0.903, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.412, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.281, + 0.384, + 0.528, + 0.672, + 0.816, + 0.959, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.228, + 0.33, + 0.473, + 0.617, + 0.761, + 0.905, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.228, + 0.329, + 0.472, + 0.616, + 0.76, + 0.904, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.334, + 0.477, + 0.621, + 0.765, + 0.909, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.331, + 0.475, + 0.619, + 0.763, + 0.906, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.323, + 0.467, + 0.611, + 0.754, + 0.898, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.32, + 0.464, + 0.608, + 0.751, + 0.895, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.394, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.261, + 0.357, + 0.501, + 0.645, + 0.788, + 0.932, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.326, + 0.47, + 0.613, + 0.757, + 0.901, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.325, + 0.469, + 0.613, + 0.757, + 0.9, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.212, + 0.309, + 0.453, + 0.596, + 0.74, + 0.884, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.32, + 0.463, + 0.607, + 0.751, + 0.895, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.333, + 0.477, + 0.62, + 0.764, + 0.908, + 1.0, + 1.0, + 1.0, + 0.843, + 0.683, + 0.523, + 0.363, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.233, + 0.338, + 0.481, + 0.625, + 0.769, + 0.913, + 0.972, + 0.978, + 0.983, + 0.823, + 0.663, + 0.503, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.33, + 0.474, + 0.618, + 0.762, + 0.905, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.377, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.246, + 0.348, + 0.492, + 0.636, + 0.78, + 0.924, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.228, + 0.328, + 0.472, + 0.616, + 0.759, + 0.903, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.228, + 0.328, + 0.472, + 0.616, + 0.76, + 0.903, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.33, + 0.474, + 0.618, + 0.761, + 0.905, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.341, + 0.485, + 0.628, + 0.772, + 0.916, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.232, + 0.343, + 0.487, + 0.631, + 0.775, + 0.918, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.339, + 0.483, + 0.626, + 0.77, + 0.914, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.339, + 0.483, + 0.627, + 0.771, + 0.914, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.23, + 0.336, + 0.479, + 0.623, + 0.767, + 0.911, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.332, + 0.476, + 0.62, + 0.764, + 0.907, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.321, + 0.465, + 0.609, + 0.753, + 0.897, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.232, + 0.347, + 0.491, + 0.635, + 0.779, + 0.922, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.234, + 0.356, + 0.5, + 0.643, + 0.787, + 0.931, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.234, + 0.354, + 0.498, + 0.641, + 0.785, + 0.929, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.349, + 0.493, + 0.637, + 0.78, + 0.924, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.339, + 0.483, + 0.626, + 0.77, + 0.914, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.351, + 0.495, + 0.639, + 0.783, + 0.926, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.346, + 0.49, + 0.634, + 0.777, + 0.921, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.228, + 0.33, + 0.473, + 0.617, + 0.761, + 0.905, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.234, + 0.355, + 0.499, + 0.643, + 0.786, + 0.93, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.234, + 0.353, + 0.497, + 0.641, + 0.785, + 0.928, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.352, + 0.496, + 0.639, + 0.783, + 0.927, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.341, + 0.485, + 0.629, + 0.773, + 0.917, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.35, + 0.494, + 0.637, + 0.781, + 0.925, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.224, + 0.325, + 0.468, + 0.612, + 0.756, + 0.9, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.23, + 0.338, + 0.482, + 0.626, + 0.769, + 0.913, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.23, + 0.34, + 0.484, + 0.627, + 0.771, + 0.915, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.341, + 0.485, + 0.628, + 0.772, + 0.916, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.214, + 0.31, + 0.454, + 0.598, + 0.742, + 0.886, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.23, + 0.341, + 0.484, + 0.628, + 0.772, + 0.916, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.228, + 0.34, + 0.484, + 0.628, + 0.772, + 0.915, + 1.0, + 1.0, + 1.0, + 0.857, + 0.697, + 0.537, + 0.377, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.242, + 0.258, + 0.333, + 0.476, + 0.597, + 0.741, + 0.884, + 0.93, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.357, + 0.501, + 0.644, + 0.788, + 0.932, + 0.963, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.355, + 0.499, + 0.643, + 0.787, + 0.93, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.35, + 0.494, + 0.638, + 0.781, + 0.925, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.351, + 0.494, + 0.638, + 0.782, + 0.926, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.345, + 0.489, + 0.632, + 0.776, + 0.92, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.344, + 0.488, + 0.632, + 0.776, + 0.919, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.23, + 0.348, + 0.491, + 0.635, + 0.779, + 0.923, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.347, + 0.49, + 0.634, + 0.778, + 0.922, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.342, + 0.486, + 0.63, + 0.773, + 0.917, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.225, + 0.324, + 0.468, + 0.611, + 0.755, + 0.899, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.226, + 0.337, + 0.481, + 0.625, + 0.769, + 0.912, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.226, + 0.343, + 0.486, + 0.63, + 0.774, + 0.918, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.345, + 0.488, + 0.632, + 0.776, + 0.92, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.224, + 0.34, + 0.483, + 0.627, + 0.771, + 0.915, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.221, + 0.335, + 0.478, + 0.622, + 0.766, + 0.91, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.219, + 0.332, + 0.475, + 0.619, + 0.763, + 0.907, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.218, + 0.332, + 0.476, + 0.619, + 0.763, + 0.907, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.218, + 0.331, + 0.475, + 0.619, + 0.763, + 0.906, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.213, + 0.315, + 0.459, + 0.603, + 0.746, + 0.89, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.212, + 0.313, + 0.457, + 0.6, + 0.744, + 0.888, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.212, + 0.316, + 0.46, + 0.603, + 0.747, + 0.891, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.214, + 0.334, + 0.478, + 0.622, + 0.765, + 0.909, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.213, + 0.332, + 0.476, + 0.62, + 0.764, + 0.907, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.212, + 0.327, + 0.471, + 0.615, + 0.758, + 0.902, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.211, + 0.325, + 0.469, + 0.613, + 0.756, + 0.9, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.21, + 0.322, + 0.466, + 0.61, + 0.754, + 0.897, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.209, + 0.318, + 0.462, + 0.606, + 0.75, + 0.893, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.31, + 0.454, + 0.598, + 0.741, + 0.885, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.325, + 0.469, + 0.612, + 0.756, + 0.9, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.32, + 0.463, + 0.607, + 0.751, + 0.895, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.312, + 0.455, + 0.599, + 0.743, + 0.887, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.203, + 0.308, + 0.452, + 0.596, + 0.74, + 0.884, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.203, + 0.309, + 0.452, + 0.596, + 0.74, + 0.884, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.305, + 0.448, + 0.592, + 0.736, + 0.88, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.201, + 0.302, + 0.446, + 0.59, + 0.734, + 0.877, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.303, + 0.447, + 0.591, + 0.735, + 0.879, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.281, + 0.425, + 0.568, + 0.712, + 0.856, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.282, + 0.381, + 0.524, + 0.668, + 0.812, + 0.956, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.235, + 0.337, + 0.48, + 0.624, + 0.768, + 0.912, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.207, + 0.351, + 0.488, + 0.631, + 0.775, + 0.919, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.289, + 0.433, + 0.577, + 0.721, + 0.864, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.306, + 0.449, + 0.593, + 0.737, + 0.881, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.299, + 0.443, + 0.587, + 0.731, + 0.875, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.235, + 0.347, + 0.491, + 0.635, + 0.778, + 0.904, + 0.994, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.287, + 0.367, + 0.511, + 0.654, + 0.798, + 0.857, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.291, + 0.435, + 0.579, + 0.722, + 0.866, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.288, + 0.431, + 0.575, + 0.719, + 0.863, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.338, + 0.481, + 0.625, + 0.769, + 0.913, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.29, + 0.433, + 0.577, + 0.721, + 0.865, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.373, + 0.516, + 0.66, + 0.804, + 0.948, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.373, + 0.516, + 0.66, + 0.804, + 0.948, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.232, + 0.376, + 0.519, + 0.663, + 0.807, + 0.951, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.223, + 0.318, + 0.462, + 0.605, + 0.749, + 0.893, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.224, + 0.324, + 0.468, + 0.611, + 0.755, + 0.899, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.272, + 0.416, + 0.56, + 0.704, + 0.847, + 0.991, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 0.957, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.802, + 0.853, + 0.93, + 0.934, + 0.954, + 0.962, + 0.972, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.264, + 0.407, + 0.551, + 0.695, + 0.839, + 0.982, + 1.0, + 1.0, + 0.976, + 0.816, + 0.656, + 0.496, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.349, + 0.378, + 0.404, + 0.445, + 0.588, + 0.725, + 0.868, + 1.0, + 0.946, + 0.786, + 0.626, + 0.466, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.367, + 0.369, + 0.513, + 0.637, + 0.781, + 0.925, + 0.999, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.263, + 0.407, + 0.551, + 0.695, + 0.839, + 0.982, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.263, + 0.407, + 0.551, + 0.695, + 0.838, + 0.982, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.26, + 0.403, + 0.547, + 0.691, + 0.835, + 0.978, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.26, + 0.404, + 0.547, + 0.691, + 0.835, + 0.979, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.258, + 0.402, + 0.546, + 0.689, + 0.833, + 0.977, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.255, + 0.398, + 0.542, + 0.686, + 0.83, + 0.973, + 1.0, + 1.0, + 0.922, + 0.762, + 0.602, + 0.442, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.333, + 0.476, + 0.62, + 0.754, + 0.898, + 0.906, + 0.976, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.253, + 0.397, + 0.541, + 0.685, + 0.828, + 0.972, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.253, + 0.397, + 0.541, + 0.685, + 0.828, + 0.972, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.249, + 0.323, + 0.467, + 0.611, + 0.754, + 0.898, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.243, + 0.325, + 0.468, + 0.612, + 0.756, + 0.9, + 0.923, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.247, + 0.391, + 0.535, + 0.679, + 0.822, + 0.966, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.249, + 0.393, + 0.536, + 0.68, + 0.824, + 0.968, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.234, + 0.257, + 0.401, + 0.544, + 0.688, + 0.832, + 0.976, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.245, + 0.389, + 0.532, + 0.676, + 0.82, + 0.964, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.243, + 0.386, + 0.53, + 0.674, + 0.818, + 0.961, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.214, + 0.284, + 0.393, + 0.537, + 0.681, + 0.825, + 0.968, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.238, + 0.382, + 0.525, + 0.669, + 0.813, + 0.957, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.239, + 0.382, + 0.526, + 0.67, + 0.814, + 0.957, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.237, + 0.381, + 0.525, + 0.669, + 0.812, + 0.956, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.241, + 0.385, + 0.529, + 0.672, + 0.816, + 0.96, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.24, + 0.384, + 0.528, + 0.671, + 0.815, + 0.959, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.237, + 0.38, + 0.524, + 0.668, + 0.812, + 0.955, + 1.0, + 1.0, + 0.924, + 0.764, + 0.604, + 0.444, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.29, + 0.329, + 0.383, + 0.497, + 0.641, + 0.785, + 0.926, + 1.0, + 1.0, + 0.987, + 0.827, + 0.667, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.509, + 0.604, + 0.748, + 0.863, + 0.912, + 0.957, + 0.97, + 1.0, + 1.0, + 1.0, + 1.0, + 0.851, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.696, + 0.698, + 0.752, + 0.776, + 0.814, + 0.828, + 0.861, + 1.0, + 1.0, + 1.0, + 1.0, + 0.863, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.732, + 0.744, + 0.821, + 0.836, + 0.883, + 0.931, + 0.972, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.369, + 0.513, + 0.657, + 0.8, + 0.944, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ], + "storage_to_load_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 29.636, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.58, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 23.941, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.126, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 26.115, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 13.14, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.269, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.993, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.803, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 25.119, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.04, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 28.45, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.869, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 28.45, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 25.024, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 21.597, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 21.414, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 17.24, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 16.884, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 12.596, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 12.735, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 12.016, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 11.176, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 7.485, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 7.681, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 7.215, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 7.721, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 7.414, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 8.193, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.166, + 31.876, + 31.876, + 13.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 12.724, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 16.884, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 17.51, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 21.597, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 25.024, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.203, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 28.45, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 28.45, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 28.476, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.532, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.77, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.661, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.585, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.081, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.56, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 29.663, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 27.283, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0 + ] + }, + "status": "optimal", + "solver_seconds": 3.578, + "ElectricUtility": { + "lifecycle_emissions_tonnes_CO2_bau": 9358.12, + "annual_emissions_tonnes_CO2_bau": 434.86, + "lifecycle_emissions_tonnes_PM25": 0.48, + "annual_energy_supplied_kwh_bau": 882597.65, + "lifecycle_emissions_tonnes_PM25_bau": 0.53, + "lifecycle_emissions_tonnes_SO2": 0.56, + "annual_emissions_tonnes_SO2_bau": 0.03, + "electric_to_load_series_kw": [ + 31.876, + 31.876, + 31.876, + 32.165, + 32.388, + 32.759, + 32.725, + 11.019, + 52.849, + 31.368, + 70.357, + 44.795, + 67.295, + 73.729, + 86.928, + 75.213, + 109.653, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.869, + 77.683, + 121.878, + 166.786, + 153.052, + 146.281, + 146.278, + 137.08, + 134.425, + 122.724, + 166.807, + 184.831, + 136.613, + 136.616, + 150.852, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.547, + 77.663, + 127.402, + 166.654, + 151.713, + 144.056, + 143.936, + 150.302, + 132.251, + 120.748, + 157.014, + 184.831, + 136.641, + 136.845, + 151.093, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.658, + 77.414, + 121.923, + 166.277, + 152.226, + 145.565, + 145.619, + 130.193, + 133.42, + 153.47, + 189.057, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.407, + 75.508, + 92.209, + 137.582, + 123.796, + 116.991, + 117.049, + 137.007, + 156.346, + 123.272, + 162.99, + 185.484, + 137.388, + 137.517, + 151.75, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 32.132, + 32.88, + 32.841, + 33.064, + 71.197, + 61.031, + 88.866, + 121.697, + 177.614, + 178.434, + 166.498, + 138.505, + 135.499, + 122.673, + 156.767, + 184.831, + 118.899, + 83.472, + 115.368, + 80.213, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 32.031, + 32.061, + 32.114, + 10.583, + 54.329, + 34.079, + 73.499, + 66.346, + 101.174, + 85.469, + 87.404, + 74.922, + 108.31, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.587, + 77.454, + 122.692, + 166.476, + 151.538, + 143.721, + 143.447, + 128.173, + 130.896, + 119.614, + 154.746, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.617, + 77.44, + 126.632, + 167.648, + 153.925, + 146.814, + 146.584, + 152.332, + 133.168, + 120.684, + 154.18, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.299, + 77.264, + 123.211, + 168.815, + 165.75, + 170.501, + 160.478, + 164.04, + 151.593, + 141.197, + 164.206, + 184.881, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.17, + 77.816, + 129.477, + 190.749, + 160.045, + 151.572, + 166.937, + 171.465, + 167.28, + 126.241, + 154.231, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.145, + 76.893, + 124.493, + 169.629, + 155.3, + 147.826, + 147.43, + 132.673, + 134.049, + 121.095, + 153.057, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 69.872, + 59.15, + 88.812, + 121.812, + 156.793, + 150.367, + 152.373, + 140.289, + 143.939, + 127.232, + 153.289, + 186.084, + 118.899, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.445, + 51.811, + 31.035, + 70.329, + 80.103, + 125.972, + 109.055, + 98.918, + 85.402, + 101.811, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.624, + 55.526, + 35.321, + 92.578, + 82.22, + 136.971, + 94.706, + 122.95, + 112.905, + 113.927, + 101.185, + 65.78, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 72.055, + 77.563, + 125.812, + 171.018, + 156.293, + 148.328, + 147.385, + 132.39, + 132.92, + 120.449, + 148.264, + 184.831, + 136.613, + 136.613, + 150.785, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 72.113, + 77.844, + 126.8, + 173.076, + 159.333, + 151.147, + 166.715, + 134.013, + 134.752, + 121.565, + 148.62, + 185.772, + 137.705, + 137.733, + 151.814, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.148, + 33.158, + 33.216, + 72.404, + 77.755, + 126.268, + 188.213, + 171.301, + 164.848, + 166.142, + 181.854, + 157.994, + 162.873, + 162.047, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.35, + 76.897, + 128.487, + 190.291, + 186.861, + 186.753, + 148.866, + 153.779, + 185.8, + 142.724, + 162.068, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.942, + 32.204, + 32.265, + 32.304, + 70.631, + 59.635, + 90.147, + 121.243, + 155.252, + 147.186, + 186.007, + 193.736, + 192.74, + 163.337, + 162.902, + 184.831, + 118.899, + 83.472, + 115.348, + 79.969, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 32.186, + 32.412, + 32.572, + 32.831, + 11.109, + 56.504, + 47.089, + 86.352, + 82.513, + 115.482, + 130.402, + 112.11, + 79.702, + 97.425, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.244, + 33.107, + 71.731, + 77.291, + 123.83, + 169.81, + 156.041, + 147.881, + 146.632, + 129.296, + 131.851, + 118.212, + 145.589, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.252, + 33.274, + 71.623, + 77.135, + 125.444, + 170.846, + 178.442, + 165.415, + 172.515, + 154.01, + 148.33, + 166.021, + 184.685, + 184.845, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.536, + 77.002, + 126.433, + 190.415, + 189.581, + 191.909, + 190.94, + 201.612, + 214.078, + 209.557, + 202.988, + 190.298, + 138.73, + 138.619, + 152.783, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.007, + 77.277, + 128.037, + 190.83, + 193.99, + 205.36, + 224.037, + 183.717, + 200.512, + 176.213, + 177.875, + 203.469, + 148.371, + 139.821, + 152.829, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.525, + 75.932, + 125.739, + 183.474, + 202.906, + 190.533, + 203.799, + 224.142, + 239.838, + 151.81, + 164.788, + 192.748, + 148.007, + 141.976, + 153.127, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 65.393, + 58.232, + 85.477, + 115.001, + 146.887, + 151.074, + 168.602, + 150.063, + 148.722, + 128.716, + 147.07, + 183.492, + 119.125, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.158, + 49.135, + 27.001, + 65.199, + 60.55, + 95.906, + 75.437, + 81.449, + 67.924, + 94.383, + 97.759, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.545, + 76.549, + 120.61, + 165.708, + 152.011, + 145.225, + 144.796, + 142.363, + 139.203, + 135.879, + 156.391, + 181.404, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 68.015, + 77.101, + 123.264, + 167.675, + 166.564, + 160.597, + 160.912, + 150.222, + 144.813, + 128.096, + 152.933, + 181.404, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 68.134, + 78.18, + 129.806, + 188.574, + 182.362, + 141.663, + 140.419, + 145.419, + 153.568, + 113.086, + 144.715, + 181.404, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.59, + 76.538, + 124.829, + 170.327, + 156.213, + 148.679, + 146.609, + 129.872, + 129.249, + 115.495, + 143.058, + 181.404, + 136.613, + 136.613, + 150.829, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.73, + 76.625, + 120.464, + 164.307, + 162.484, + 158.01, + 161.511, + 120.88, + 127.182, + 113.154, + 139.195, + 181.404, + 136.728, + 136.928, + 151.24, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 32.006, + 67.647, + 59.473, + 84.616, + 116.341, + 150.469, + 143.055, + 142.346, + 120.448, + 127.269, + 113.136, + 138.855, + 177.978, + 118.899, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.949, + 28.668, + 10.195, + 51.262, + 29.583, + 68.138, + 60.74, + 95.23, + 74.003, + 80.206, + 65.934, + 91.405, + 94.333, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 68.128, + 76.884, + 125.759, + 186.841, + 168.399, + 162.198, + 166.911, + 176.374, + 147.869, + 134.029, + 154.559, + 177.978, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.707, + 76.622, + 122.786, + 168.741, + 154.266, + 146.176, + 144.351, + 134.338, + 140.778, + 123.339, + 147.905, + 177.978, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.924, + 76.626, + 125.056, + 182.739, + 171.262, + 158.172, + 171.726, + 161.944, + 154.56, + 126.793, + 149.63, + 177.978, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.02, + 76.481, + 126.095, + 186.84, + 184.784, + 185.796, + 171.301, + 167.639, + 173.112, + 146.803, + 154.969, + 177.978, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.812, + 76.873, + 125.113, + 183.504, + 179.309, + 165.857, + 189.956, + 190.157, + 195.842, + 172.299, + 167.91, + 179.554, + 136.756, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 62.819, + 58.812, + 90.071, + 144.629, + 197.435, + 191.808, + 195.014, + 189.233, + 198.018, + 143.989, + 174.69, + 186.818, + 121.135, + 84.248, + 115.542, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 11.318, + 51.185, + 29.378, + 67.881, + 60.219, + 95.288, + 88.749, + 84.331, + 72.396, + 96.893, + 96.512, + 65.808, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.44, + 75.304, + 122.77, + 192.407, + 173.432, + 176.689, + 185.684, + 173.192, + 171.578, + 152.327, + 192.232, + 193.031, + 140.132, + 138.965, + 152.421, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.389, + 75.448, + 120.185, + 164.987, + 199.087, + 173.072, + 169.024, + 149.374, + 148.864, + 146.524, + 157.896, + 183.779, + 139.715, + 138.601, + 151.9, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.537, + 75.534, + 118.589, + 162.815, + 147.358, + 139.913, + 139.295, + 115.02, + 124.214, + 110.542, + 136.741, + 175.238, + 136.758, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.558, + 75.918, + 118.166, + 163.566, + 149.868, + 142.427, + 141.399, + 128.039, + 126.441, + 112.151, + 136.836, + 174.552, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.161, + 76.171, + 120.078, + 164.942, + 150.659, + 143.003, + 141.64, + 116.897, + 126.019, + 111.849, + 137.536, + 174.942, + 137.07, + 137.197, + 151.421, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 64.059, + 59.124, + 84.873, + 116.161, + 149.857, + 142.324, + 141.461, + 117.358, + 126.507, + 121.361, + 158.513, + 174.552, + 118.899, + 83.472, + 115.357, + 80.121, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 9.647, + 53.965, + 49.51, + 95.568, + 99.878, + 139.32, + 128.115, + 112.18, + 108.712, + 127.883, + 90.906, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 11.318, + 59.538, + 59.197, + 111.699, + 109.013, + 115.32, + 125.63, + 109.264, + 62.946, + 88.22, + 90.134, + 66.024, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.194, + 33.723, + 33.906, + 62.098, + 76.647, + 119.185, + 164.348, + 150.57, + 142.806, + 141.28, + 115.785, + 124.333, + 110.436, + 135.189, + 173.341, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.407, + 33.466, + 61.664, + 75.916, + 120.01, + 166.556, + 153.191, + 144.593, + 142.192, + 116.73, + 124.455, + 116.593, + 134.75, + 173.062, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 61.069, + 75.608, + 125.733, + 190.878, + 192.344, + 173.692, + 161.973, + 167.19, + 180.748, + 127.515, + 146.581, + 174.323, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 61.098, + 75.487, + 113.869, + 157.329, + 142.104, + 137.788, + 136.202, + 105.349, + 116.565, + 103.785, + 131.141, + 173.646, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 59.852, + 57.741, + 79.176, + 111.411, + 145.757, + 139.824, + 139.837, + 114.492, + 124.566, + 108.429, + 132.764, + 170.179, + 118.899, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 8.976, + 45.949, + 24.306, + 62.36, + 55.127, + 89.42, + 83.168, + 135.311, + 112.116, + 109.595, + 85.557, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 61.03, + 75.335, + 116.695, + 162.188, + 147.653, + 139.49, + 137.954, + 111.773, + 121.903, + 107.651, + 133.3, + 168.431, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.179, + 33.342, + 58.029, + 77.78, + 114.167, + 157.797, + 159.999, + 157.264, + 136.383, + 123.362, + 117.721, + 159.2, + 158.14, + 170.851, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.252, + 58.042, + 75.458, + 112.71, + 156.509, + 141.763, + 137.352, + 134.776, + 105.04, + 116.774, + 120.455, + 163.464, + 169.237, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 58.026, + 76.876, + 122.79, + 187.885, + 184.656, + 173.796, + 193.082, + 174.654, + 185.155, + 154.419, + 149.923, + 171.125, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.95, + 75.266, + 123.031, + 185.25, + 179.797, + 165.786, + 174.982, + 175.114, + 161.085, + 140.475, + 153.897, + 171.125, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 55.995, + 57.074, + 87.327, + 132.754, + 160.701, + 158.553, + 164.252, + 156.937, + 160.604, + 145.865, + 160.981, + 173.614, + 119.409, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 17.936, + 8.274, + 44.946, + 43.974, + 81.101, + 84.446, + 128.693, + 113.634, + 119.83, + 82.11, + 97.566, + 84.578, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.206, + 74.294, + 115.783, + 163.362, + 150.393, + 171.203, + 140.418, + 113.975, + 137.53, + 110.168, + 149.38, + 167.773, + 136.903, + 137.073, + 151.312, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 57.654, + 75.408, + 123.457, + 185.047, + 149.765, + 142.736, + 158.843, + 137.945, + 124.345, + 110.27, + 134.112, + 167.383, + 136.613, + 136.637, + 150.902, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.682, + 74.303, + 113.309, + 158.44, + 159.869, + 155.161, + 159.587, + 130.535, + 133.483, + 119.687, + 131.883, + 170.224, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.424, + 73.722, + 110.736, + 155.864, + 142.44, + 137.304, + 131.873, + 109.42, + 120.76, + 106.582, + 138.441, + 164.521, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.022, + 73.981, + 113.031, + 159.14, + 146.308, + 140.671, + 142.108, + 119.208, + 126.341, + 122.214, + 140.027, + 163.242, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 52.151, + 56.081, + 85.813, + 111.168, + 146.063, + 139.163, + 138.055, + 111.63, + 123.231, + 108.695, + 132.848, + 162.715, + 118.899, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.357, + 56.458, + 50.278, + 72.693, + 74.731, + 111.172, + 104.061, + 94.921, + 91.791, + 79.492, + 57.422, + 45.162, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.58, + 80.611, + 126.323, + 177.009, + 156.689, + 143.039, + 137.049, + 131.306, + 109.863, + 121.606, + 107.392, + 132.053, + 113.886, + 136.613, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.114, + 80.875, + 126.387, + 177.687, + 157.763, + 144.481, + 137.419, + 131.445, + 109.735, + 121.481, + 107.023, + 131.483, + 113.381, + 136.613, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.056, + 80.75, + 126.112, + 177.029, + 158.346, + 146.677, + 140.342, + 133.619, + 112.238, + 122.742, + 107.797, + 131.751, + 113.282, + 136.613, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.766, + 77.876, + 126.437, + 176.225, + 156.509, + 143.001, + 136.869, + 130.179, + 109.871, + 122.056, + 107.813, + 131.869, + 113.39, + 136.613, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.75, + 77.678, + 126.09, + 178.67, + 161.411, + 149.351, + 144.164, + 136.712, + 113.488, + 123.482, + 107.827, + 131.231, + 112.871, + 136.613, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 69.962, + 59.712, + 90.312, + 126.471, + 154.95, + 141.415, + 136.149, + 127.446, + 107.213, + 118.697, + 111.243, + 140.06, + 96.765, + 83.472, + 83.472, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.493, + 54.821, + 36.658, + 69.613, + 56.607, + 87.733, + 78.666, + 60.516, + 71.809, + 57.495, + 46.066, + 41.276, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.432, + 77.372, + 125.393, + 173.392, + 153.875, + 140.938, + 136.078, + 126.813, + 110.021, + 122.1, + 107.261, + 130.586, + 112.273, + 136.613, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.716, + 77.59, + 126.612, + 187.066, + 162.783, + 154.314, + 156.745, + 156.775, + 140.539, + 145.04, + 108.458, + 131.589, + 109.189, + 136.613, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.388, + 77.293, + 125.704, + 177.454, + 159.109, + 147.16, + 140.399, + 132.046, + 111.752, + 123.045, + 109.098, + 133.124, + 110.203, + 137.367, + 119.8, + 60.908, + 33.107, + 33.107, + 33.107, + 33.232, + 33.608, + 33.8, + 34.179, + 34.375, + 69.002, + 78.205, + 125.929, + 178.565, + 160.644, + 150.669, + 145.011, + 136.113, + 113.542, + 123.323, + 108.392, + 131.981, + 109.227, + 136.613, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 68.216, + 77.267, + 125.138, + 185.606, + 175.871, + 151.128, + 155.121, + 152.31, + 131.147, + 135.226, + 110.491, + 141.825, + 111.372, + 136.613, + 118.932, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 66.844, + 59.435, + 89.737, + 137.358, + 168.003, + 146.612, + 140.922, + 138.985, + 115.303, + 145.774, + 116.997, + 140.659, + 91.945, + 83.472, + 83.472, + 79.955, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.1, + 54.562, + 41.302, + 76.366, + 62.133, + 90.443, + 82.546, + 73.845, + 75.335, + 60.389, + 48.74, + 38.39, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.626, + 76.585, + 124.217, + 173.799, + 154.647, + 145.215, + 142.415, + 196.781, + 160.708, + 149.833, + 136.934, + 154.62, + 110.165, + 136.756, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.543, + 76.492, + 124.196, + 173.891, + 155.291, + 143.727, + 137.848, + 126.758, + 109.716, + 121.077, + 107.106, + 150.6, + 108.555, + 136.613, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.544, + 76.418, + 123.899, + 176.341, + 159.275, + 150.379, + 167.353, + 161.0, + 143.173, + 147.101, + 119.654, + 136.763, + 109.996, + 136.708, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.492, + 76.385, + 125.263, + 185.364, + 160.11, + 153.062, + 157.651, + 179.025, + 149.627, + 142.21, + 130.342, + 156.51, + 115.815, + 138.139, + 119.739, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.478, + 75.997, + 122.948, + 170.024, + 151.562, + 150.399, + 162.23, + 156.767, + 140.392, + 145.444, + 125.024, + 144.259, + 112.232, + 137.719, + 119.263, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 62.392, + 58.242, + 87.799, + 125.069, + 166.408, + 169.423, + 168.758, + 156.019, + 142.009, + 157.62, + 140.782, + 188.86, + 104.233, + 84.168, + 83.472, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 9.731, + 52.326, + 32.297, + 66.155, + 53.062, + 85.421, + 71.437, + 56.099, + 68.799, + 55.206, + 45.051, + 36.423, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.441, + 76.591, + 123.259, + 171.058, + 152.743, + 141.05, + 135.712, + 123.813, + 125.299, + 121.59, + 106.819, + 130.177, + 107.378, + 133.186, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.438, + 76.32, + 123.362, + 183.574, + 171.872, + 150.551, + 143.819, + 130.739, + 113.781, + 123.686, + 108.662, + 131.362, + 107.737, + 133.186, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.356, + 76.01, + 122.787, + 185.011, + 167.422, + 144.175, + 137.206, + 130.386, + 109.303, + 120.663, + 105.974, + 130.055, + 107.279, + 133.186, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.303, + 75.89, + 122.444, + 169.698, + 150.604, + 138.616, + 133.978, + 119.85, + 105.36, + 117.734, + 128.652, + 130.015, + 107.193, + 133.186, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.61, + 75.578, + 121.911, + 169.261, + 150.455, + 137.412, + 133.805, + 119.338, + 106.667, + 118.86, + 105.241, + 129.9, + 106.964, + 133.186, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 59.181, + 57.815, + 86.451, + 121.736, + 152.164, + 141.13, + 136.296, + 123.207, + 111.384, + 122.366, + 106.95, + 130.324, + 89.39, + 80.117, + 83.472, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 9.308, + 51.189, + 36.473, + 74.753, + 75.218, + 112.474, + 99.611, + 83.907, + 96.111, + 80.451, + 56.272, + 37.742, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.012, + 75.128, + 121.833, + 172.828, + 156.363, + 148.866, + 142.172, + 124.373, + 114.438, + 126.06, + 112.118, + 138.471, + 109.489, + 133.857, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.309, + 75.433, + 121.622, + 170.644, + 153.295, + 142.212, + 140.142, + 122.794, + 111.14, + 123.129, + 108.639, + 132.257, + 108.538, + 134.064, + 119.02, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.172, + 77.47, + 121.609, + 185.351, + 152.016, + 190.434, + 179.99, + 135.276, + 150.76, + 161.235, + 173.137, + 215.237, + 163.55, + 166.142, + 140.056, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.633, + 74.438, + 121.138, + 188.507, + 170.987, + 169.673, + 170.924, + 185.325, + 148.474, + 190.548, + 210.733, + 206.97, + 145.594, + 142.989, + 120.344, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.969, + 77.277, + 121.197, + 170.586, + 204.165, + 224.609, + 234.955, + 237.311, + 228.451, + 222.737, + 165.883, + 176.896, + 128.56, + 135.401, + 119.698, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 55.532, + 57.178, + 85.229, + 118.724, + 148.81, + 137.738, + 133.988, + 119.356, + 107.688, + 119.995, + 105.499, + 129.656, + 89.07, + 80.097, + 83.472, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 18.095, + 8.689, + 50.478, + 34.284, + 71.717, + 62.796, + 94.382, + 78.396, + 65.133, + 75.234, + 59.367, + 46.991, + 35.552, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.658, + 74.795, + 121.049, + 171.996, + 156.071, + 147.656, + 149.865, + 135.246, + 126.427, + 137.829, + 121.902, + 144.058, + 115.202, + 131.255, + 119.688, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.614, + 74.926, + 121.089, + 172.958, + 158.243, + 149.15, + 144.157, + 128.388, + 114.083, + 124.383, + 108.649, + 130.889, + 106.475, + 129.76, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.661, + 74.833, + 121.089, + 172.434, + 168.36, + 159.341, + 140.95, + 128.292, + 114.191, + 124.893, + 109.1, + 138.507, + 106.533, + 129.762, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.695, + 74.859, + 120.823, + 171.717, + 156.495, + 147.403, + 145.139, + 134.476, + 123.644, + 133.539, + 116.13, + 137.026, + 108.366, + 130.484, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.491, + 74.597, + 121.179, + 174.085, + 158.181, + 146.341, + 142.364, + 131.66, + 119.684, + 131.029, + 112.697, + 132.68, + 106.714, + 129.76, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 55.601, + 57.142, + 85.602, + 125.008, + 158.476, + 149.273, + 145.455, + 131.666, + 118.578, + 128.101, + 111.191, + 132.005, + 88.729, + 76.619, + 83.516, + 80.169, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.59, + 8.479, + 51.149, + 38.185, + 75.456, + 64.315, + 94.032, + 79.808, + 66.666, + 77.182, + 61.863, + 47.686, + 35.305, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 54.66, + 75.36, + 121.183, + 172.049, + 156.417, + 145.521, + 139.816, + 116.459, + 111.567, + 122.803, + 107.333, + 129.658, + 105.642, + 130.117, + 119.363, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 54.605, + 75.678, + 121.052, + 174.004, + 155.582, + 157.29, + 181.839, + 169.72, + 142.42, + 177.13, + 146.834, + 153.195, + 113.19, + 129.76, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.96, + 74.776, + 122.4, + 184.794, + 182.489, + 188.99, + 174.886, + 159.177, + 159.969, + 160.389, + 123.77, + 140.146, + 105.842, + 129.76, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.279, + 74.432, + 120.269, + 170.481, + 153.804, + 142.609, + 136.818, + 121.201, + 154.158, + 142.255, + 141.967, + 151.465, + 113.894, + 129.76, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.274, + 74.084, + 119.715, + 169.222, + 153.303, + 142.578, + 137.896, + 122.562, + 113.806, + 125.366, + 109.248, + 131.434, + 105.639, + 129.76, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 51.805, + 56.142, + 84.492, + 122.275, + 154.28, + 143.071, + 139.384, + 125.743, + 117.002, + 128.466, + 111.458, + 131.798, + 88.254, + 77.034, + 83.895, + 80.478, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.3, + 7.542, + 49.969, + 35.108, + 72.604, + 62.951, + 95.32, + 81.392, + 70.815, + 80.669, + 63.472, + 49.171, + 35.137, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.181, + 74.145, + 120.542, + 174.35, + 159.169, + 148.227, + 142.467, + 115.27, + 114.943, + 126.096, + 110.663, + 130.556, + 105.372, + 126.46, + 119.102, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 50.143, + 74.201, + 119.779, + 170.415, + 155.231, + 145.428, + 142.201, + 131.691, + 125.732, + 138.724, + 123.146, + 144.016, + 111.281, + 126.725, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.624, + 73.787, + 119.7, + 171.999, + 157.547, + 148.191, + 144.999, + 131.567, + 121.197, + 132.629, + 115.381, + 136.475, + 106.223, + 126.368, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.459, + 73.766, + 119.846, + 173.064, + 158.626, + 148.925, + 145.435, + 131.873, + 120.961, + 130.291, + 113.132, + 133.382, + 105.797, + 126.334, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.282, + 73.619, + 120.102, + 175.838, + 162.099, + 151.323, + 145.885, + 130.962, + 118.183, + 128.05, + 111.636, + 132.538, + 105.501, + 126.202, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 48.103, + 55.726, + 84.019, + 126.091, + 165.477, + 153.519, + 152.845, + 124.103, + 113.844, + 138.416, + 115.541, + 135.075, + 88.197, + 72.932, + 83.472, + 79.942, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.524, + 6.777, + 50.059, + 39.509, + 72.228, + 62.184, + 91.673, + 134.884, + 109.908, + 74.442, + 59.029, + 56.196, + 33.298, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.458, + 73.018, + 119.009, + 185.995, + 152.967, + 141.91, + 136.286, + 129.041, + 156.212, + 187.488, + 116.5, + 139.356, + 104.315, + 125.842, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.504, + 72.989, + 118.511, + 168.642, + 174.679, + 142.919, + 138.713, + 121.587, + 138.478, + 138.756, + 110.444, + 131.96, + 105.09, + 126.08, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.305, + 73.053, + 119.401, + 173.703, + 158.876, + 148.5, + 142.781, + 126.709, + 116.441, + 129.826, + 113.821, + 135.136, + 107.223, + 126.084, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.035, + 72.604, + 118.935, + 172.233, + 156.634, + 145.367, + 143.697, + 132.463, + 125.199, + 136.275, + 121.027, + 142.486, + 110.759, + 126.672, + 118.915, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.933, + 72.611, + 118.846, + 171.725, + 156.233, + 147.194, + 152.078, + 139.528, + 130.511, + 142.955, + 126.802, + 147.877, + 118.4, + 128.752, + 119.511, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 47.632, + 54.916, + 83.135, + 122.061, + 155.036, + 143.314, + 137.981, + 132.681, + 133.916, + 146.879, + 131.083, + 152.777, + 100.976, + 71.147, + 83.708, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.534, + 6.3, + 46.736, + 29.0, + 66.854, + 57.282, + 88.113, + 69.063, + 63.816, + 74.707, + 58.855, + 45.714, + 32.821, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.827, + 72.413, + 118.033, + 168.63, + 153.429, + 143.125, + 134.586, + 107.828, + 117.576, + 128.865, + 113.519, + 135.89, + 110.577, + 122.739, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.518, + 72.113, + 118.092, + 168.849, + 152.731, + 141.915, + 136.713, + 128.782, + 180.72, + 145.042, + 110.936, + 131.887, + 104.227, + 122.016, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.472, + 72.097, + 118.358, + 170.521, + 155.21, + 144.984, + 139.586, + 121.899, + 114.727, + 126.615, + 121.617, + 136.269, + 105.212, + 122.129, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.632, + 72.296, + 118.347, + 169.78, + 153.487, + 142.23, + 136.643, + 118.859, + 110.861, + 123.309, + 108.444, + 130.839, + 103.381, + 121.72, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.987, + 72.446, + 118.112, + 169.797, + 155.703, + 147.403, + 143.785, + 127.072, + 117.233, + 127.258, + 110.189, + 130.844, + 103.996, + 121.564, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 48.08, + 54.907, + 82.827, + 121.489, + 155.278, + 145.845, + 142.061, + 125.976, + 117.964, + 129.174, + 111.395, + 130.96, + 86.196, + 68.443, + 83.479, + 80.138, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.482, + 6.405, + 48.273, + 35.145, + 73.569, + 64.962, + 97.317, + 83.041, + 74.17, + 82.179, + 63.104, + 47.803, + 33.182, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 49.633, + 72.899, + 118.989, + 174.126, + 159.436, + 149.046, + 143.467, + 111.339, + 116.265, + 126.568, + 109.92, + 130.842, + 104.025, + 121.509, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 49.474, + 72.656, + 118.553, + 173.264, + 159.825, + 150.96, + 149.953, + 140.025, + 132.096, + 141.642, + 123.492, + 143.296, + 114.693, + 123.713, + 118.935, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.807, + 72.434, + 118.84, + 174.407, + 160.241, + 151.208, + 154.272, + 142.894, + 130.924, + 141.032, + 123.878, + 144.143, + 115.25, + 122.885, + 119.055, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.898, + 72.272, + 120.628, + 171.368, + 156.048, + 162.754, + 140.62, + 130.889, + 114.598, + 127.718, + 114.576, + 135.559, + 106.496, + 121.302, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.749, + 72.045, + 117.798, + 169.676, + 154.25, + 143.718, + 138.557, + 121.243, + 112.016, + 122.818, + 106.908, + 128.687, + 102.899, + 120.862, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 47.625, + 54.32, + 82.553, + 121.625, + 154.239, + 143.282, + 138.423, + 120.467, + 112.458, + 123.374, + 107.262, + 129.071, + 85.053, + 64.344, + 83.472, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.144, + 5.925, + 47.748, + 35.689, + 74.752, + 64.65, + 96.278, + 97.062, + 84.759, + 86.495, + 68.898, + 47.684, + 32.355, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 10.336, + 6.107, + 47.459, + 36.415, + 93.28, + 86.754, + 108.744, + 84.846, + 91.77, + 101.484, + 83.423, + 64.733, + 42.348, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.313, + 71.841, + 118.57, + 174.904, + 173.616, + 186.66, + 194.549, + 176.124, + 198.207, + 184.762, + 160.222, + 177.812, + 138.903, + 144.784, + 136.855, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.039, + 72.388, + 118.904, + 202.643, + 197.368, + 193.492, + 191.082, + 177.456, + 166.609, + 175.301, + 156.446, + 171.989, + 136.925, + 142.653, + 134.945, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.061, + 72.491, + 120.847, + 185.896, + 171.215, + 171.329, + 188.929, + 208.383, + 219.001, + 176.73, + 170.077, + 156.351, + 123.544, + 126.769, + 119.986, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.41, + 72.134, + 118.772, + 173.558, + 160.167, + 151.009, + 144.968, + 137.241, + 139.574, + 137.287, + 115.371, + 137.388, + 105.045, + 117.573, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 47.885, + 55.307, + 85.466, + 139.124, + 174.486, + 164.938, + 155.869, + 156.764, + 135.326, + 162.698, + 134.79, + 143.585, + 90.151, + 64.128, + 83.472, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 10.23, + 6.126, + 48.043, + 38.336, + 77.186, + 68.355, + 101.297, + 89.13, + 77.092, + 85.114, + 65.869, + 49.363, + 32.47, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.693, + 72.281, + 118.746, + 175.308, + 161.276, + 151.32, + 141.761, + 113.594, + 118.103, + 127.886, + 110.671, + 130.314, + 102.652, + 116.411, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.906, + 74.489, + 123.266, + 190.621, + 189.396, + 163.125, + 171.743, + 144.238, + 148.058, + 149.296, + 109.118, + 129.909, + 102.053, + 117.082, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.842, + 72.133, + 118.122, + 171.654, + 156.252, + 145.7, + 140.185, + 124.33, + 113.45, + 124.771, + 108.383, + 129.51, + 102.054, + 116.141, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.645, + 71.597, + 117.091, + 168.123, + 151.782, + 140.919, + 136.376, + 122.888, + 117.772, + 130.19, + 114.237, + 135.395, + 109.35, + 116.727, + 118.941, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.817, + 71.608, + 116.994, + 167.01, + 151.052, + 140.612, + 136.737, + 123.864, + 111.307, + 122.18, + 106.001, + 127.359, + 101.396, + 115.707, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 47.534, + 54.049, + 82.181, + 122.407, + 156.613, + 147.711, + 143.707, + 129.044, + 120.608, + 132.269, + 114.032, + 132.445, + 84.489, + 62.707, + 83.472, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 10.311, + 5.928, + 47.395, + 35.77, + 74.798, + 66.099, + 97.976, + 83.829, + 71.457, + 80.109, + 61.914, + 45.752, + 31.109, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.688, + 72.078, + 118.397, + 173.835, + 158.969, + 148.426, + 137.769, + 110.485, + 116.364, + 127.748, + 110.741, + 130.878, + 101.823, + 115.732, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.613, + 71.601, + 117.928, + 170.672, + 157.797, + 147.529, + 139.427, + 124.06, + 114.288, + 127.819, + 112.129, + 132.693, + 103.578, + 115.64, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.392, + 71.715, + 117.694, + 171.265, + 156.219, + 145.791, + 140.647, + 127.817, + 118.45, + 131.097, + 116.642, + 136.547, + 106.812, + 112.872, + 118.976, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.535, + 71.792, + 117.902, + 172.657, + 159.404, + 151.482, + 149.075, + 134.794, + 120.859, + 128.49, + 110.159, + 129.299, + 101.761, + 112.362, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.481, + 71.891, + 118.407, + 175.093, + 160.643, + 150.497, + 145.951, + 134.873, + 124.366, + 136.564, + 120.226, + 139.156, + 111.278, + 118.851, + 119.158, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 47.116, + 54.159, + 82.783, + 124.79, + 158.008, + 153.606, + 156.992, + 150.54, + 139.157, + 149.053, + 132.003, + 150.942, + 98.703, + 62.121, + 83.755, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 10.194, + 5.995, + 47.299, + 36.49, + 75.535, + 66.801, + 100.513, + 89.993, + 80.081, + 91.812, + 73.346, + 47.232, + 30.736, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.432, + 71.866, + 118.165, + 173.361, + 159.773, + 151.827, + 140.524, + 120.603, + 124.309, + 132.526, + 114.15, + 132.943, + 102.041, + 112.576, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.363, + 71.842, + 118.501, + 175.173, + 162.165, + 156.273, + 152.061, + 144.579, + 135.026, + 145.194, + 126.5, + 144.874, + 115.783, + 117.705, + 119.487, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.474, + 71.984, + 118.55, + 174.995, + 161.329, + 152.615, + 154.537, + 145.799, + 132.931, + 141.957, + 123.434, + 142.093, + 113.532, + 116.024, + 119.204, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.534, + 72.0, + 118.376, + 174.233, + 159.826, + 153.237, + 156.837, + 143.812, + 133.025, + 144.432, + 126.353, + 144.891, + 114.323, + 114.68, + 119.307, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.346, + 72.076, + 118.558, + 175.003, + 161.034, + 154.93, + 158.955, + 153.539, + 142.91, + 154.251, + 135.321, + 153.495, + 121.566, + 122.393, + 120.09, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 47.15, + 54.394, + 83.238, + 127.289, + 162.651, + 177.753, + 179.488, + 163.508, + 149.475, + 160.473, + 145.456, + 162.867, + 102.509, + 62.936, + 83.894, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 10.345, + 6.692, + 49.15, + 43.673, + 78.328, + 68.693, + 99.974, + 90.29, + 83.888, + 92.122, + 74.872, + 56.454, + 31.678, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.416, + 72.453, + 119.686, + 179.306, + 165.176, + 150.617, + 149.096, + 131.783, + 139.122, + 150.058, + 131.965, + 149.844, + 115.183, + 114.965, + 119.452, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.47, + 72.309, + 119.292, + 178.62, + 164.953, + 155.689, + 160.859, + 155.72, + 139.641, + 171.668, + 155.937, + 147.423, + 113.955, + 113.483, + 119.131, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.51, + 72.306, + 119.147, + 176.904, + 163.053, + 154.314, + 154.882, + 149.341, + 136.708, + 145.871, + 127.484, + 145.254, + 112.744, + 113.935, + 119.38, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.595, + 72.091, + 118.404, + 184.705, + 185.235, + 183.756, + 184.795, + 177.957, + 166.029, + 174.105, + 153.327, + 169.071, + 134.294, + 137.465, + 136.733, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.215, + 71.912, + 118.131, + 184.483, + 180.194, + 178.132, + 179.114, + 170.152, + 163.074, + 175.758, + 155.871, + 169.699, + 135.608, + 135.294, + 133.793, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 47.273, + 54.515, + 83.247, + 138.138, + 188.752, + 190.87, + 191.301, + 182.516, + 168.359, + 178.724, + 160.394, + 174.0, + 114.264, + 76.361, + 88.43, + 80.07, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.624, + 6.444, + 47.384, + 36.369, + 75.499, + 66.983, + 97.326, + 84.285, + 68.956, + 77.756, + 59.757, + 43.66, + 29.744, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.776, + 72.233, + 118.179, + 172.591, + 157.939, + 148.215, + 134.697, + 112.274, + 119.195, + 133.689, + 118.477, + 137.927, + 111.257, + 122.018, + 122.487, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.725, + 72.227, + 118.297, + 173.618, + 167.28, + 171.75, + 171.112, + 162.758, + 150.882, + 162.978, + 143.929, + 160.899, + 127.942, + 129.811, + 128.314, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.655, + 6.596, + 47.94, + 39.566, + 81.071, + 71.914, + 116.243, + 89.622, + 75.683, + 84.05, + 65.325, + 46.498, + 30.647, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.389, + 72.585, + 119.669, + 178.84, + 165.319, + 155.83, + 147.817, + 126.942, + 141.9, + 144.477, + 125.872, + 143.967, + 114.541, + 121.104, + 119.984, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.127, + 72.285, + 119.851, + 179.316, + 165.588, + 155.801, + 150.226, + 149.172, + 135.825, + 138.045, + 120.076, + 138.246, + 109.135, + 119.692, + 120.326, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 47.195, + 54.907, + 83.9, + 128.111, + 161.686, + 151.185, + 152.779, + 159.387, + 154.468, + 165.573, + 146.841, + 164.361, + 106.177, + 69.065, + 84.516, + 79.977, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.642, + 6.909, + 48.217, + 38.032, + 76.082, + 65.624, + 98.52, + 91.078, + 84.892, + 104.896, + 88.764, + 70.292, + 45.265, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.51, + 72.662, + 121.611, + 208.231, + 199.366, + 194.731, + 188.861, + 168.095, + 176.263, + 187.761, + 166.82, + 179.687, + 141.483, + 141.581, + 139.334, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.423, + 73.964, + 126.018, + 218.144, + 214.398, + 222.016, + 231.213, + 229.405, + 215.351, + 233.617, + 192.088, + 199.539, + 159.832, + 154.998, + 147.931, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.333, + 72.466, + 123.292, + 210.457, + 206.269, + 203.487, + 200.071, + 189.361, + 174.552, + 183.585, + 161.881, + 175.371, + 141.078, + 142.582, + 139.407, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.647, + 72.744, + 119.015, + 189.575, + 196.221, + 199.95, + 200.393, + 192.44, + 178.035, + 184.504, + 161.484, + 174.002, + 139.011, + 139.227, + 135.963, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.706, + 72.868, + 119.154, + 175.374, + 166.694, + 171.522, + 176.877, + 168.937, + 153.829, + 163.632, + 144.585, + 161.643, + 128.75, + 130.627, + 125.623, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 47.81, + 56.568, + 85.953, + 134.883, + 179.277, + 196.363, + 206.386, + 213.064, + 192.711, + 167.641, + 147.796, + 163.237, + 108.302, + 73.141, + 86.049, + 79.99, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.998, + 7.935, + 49.291, + 42.217, + 81.297, + 70.965, + 106.158, + 110.878, + 97.028, + 108.605, + 90.923, + 65.764, + 38.847, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.668, + 73.182, + 119.919, + 177.426, + 162.773, + 159.199, + 160.614, + 140.504, + 149.271, + 162.062, + 142.404, + 159.418, + 127.646, + 130.735, + 128.087, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.743, + 73.108, + 119.473, + 175.509, + 168.688, + 170.917, + 171.203, + 165.092, + 151.708, + 164.067, + 147.185, + 165.41, + 131.703, + 134.335, + 133.9, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.766, + 73.123, + 119.413, + 174.934, + 159.873, + 149.44, + 149.313, + 145.617, + 130.19, + 140.918, + 124.899, + 144.218, + 117.584, + 130.083, + 124.555, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.795, + 73.214, + 119.607, + 175.531, + 160.478, + 153.575, + 157.553, + 157.387, + 148.169, + 160.923, + 143.286, + 161.591, + 132.331, + 140.082, + 135.553, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.804, + 73.238, + 119.546, + 178.268, + 189.417, + 196.768, + 197.403, + 190.582, + 174.947, + 186.483, + 164.335, + 177.621, + 141.0, + 144.048, + 138.813, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 47.545, + 55.553, + 84.428, + 127.88, + 171.725, + 182.45, + 187.058, + 178.705, + 159.622, + 172.314, + 155.207, + 170.048, + 111.683, + 80.689, + 90.342, + 80.188, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.775, + 7.681, + 49.473, + 41.78, + 81.008, + 75.87, + 120.043, + 115.655, + 97.548, + 107.946, + 120.905, + 70.269, + 44.378, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.275, + 76.992, + 127.92, + 195.497, + 212.135, + 201.713, + 210.24, + 209.174, + 253.902, + 254.961, + 206.727, + 211.769, + 142.591, + 146.383, + 139.737, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.754, + 73.55, + 120.61, + 198.975, + 205.769, + 206.987, + 205.213, + 197.825, + 180.984, + 196.203, + 169.921, + 177.526, + 138.45, + 144.72, + 139.616, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.844, + 73.632, + 120.305, + 177.276, + 167.679, + 171.538, + 174.34, + 172.175, + 158.426, + 169.357, + 151.944, + 171.424, + 139.545, + 144.907, + 140.283, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.85, + 73.676, + 120.323, + 179.021, + 181.438, + 191.301, + 191.38, + 186.043, + 169.687, + 177.69, + 159.363, + 175.186, + 139.214, + 145.29, + 139.262, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.831, + 73.726, + 120.579, + 178.29, + 167.648, + 175.849, + 181.225, + 176.164, + 158.719, + 168.511, + 150.043, + 167.219, + 132.38, + 138.628, + 134.887, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 47.597, + 55.971, + 85.08, + 129.6, + 166.631, + 163.596, + 162.37, + 156.726, + 141.766, + 153.777, + 137.674, + 157.068, + 107.417, + 81.58, + 98.237, + 85.304, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.925, + 8.019, + 49.688, + 43.762, + 107.248, + 109.197, + 142.614, + 133.502, + 116.537, + 125.993, + 108.741, + 83.845, + 56.83, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.887, + 73.785, + 120.605, + 178.296, + 180.516, + 189.086, + 193.483, + 168.242, + 172.763, + 184.354, + 163.449, + 176.606, + 139.292, + 145.007, + 138.965, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.916, + 73.82, + 120.801, + 180.39, + 175.754, + 181.075, + 187.278, + 185.821, + 172.638, + 184.921, + 165.493, + 178.918, + 141.169, + 145.192, + 138.066, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.275, + 75.144, + 129.911, + 205.448, + 199.741, + 208.016, + 206.321, + 205.469, + 189.6, + 180.897, + 160.552, + 172.677, + 135.009, + 141.897, + 134.862, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.92, + 73.867, + 120.905, + 188.843, + 197.724, + 197.28, + 194.391, + 188.545, + 169.1, + 175.153, + 154.828, + 170.651, + 136.587, + 142.481, + 135.285, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.419, + 74.008, + 120.727, + 181.753, + 181.26, + 181.188, + 182.726, + 177.82, + 162.9, + 173.769, + 152.376, + 163.701, + 126.175, + 134.946, + 121.79, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 51.182, + 56.197, + 85.481, + 129.829, + 172.619, + 175.579, + 178.597, + 173.871, + 174.111, + 166.675, + 149.278, + 166.062, + 107.173, + 77.172, + 84.432, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.451, + 7.851, + 50.002, + 40.948, + 78.628, + 67.601, + 96.83, + 85.77, + 68.498, + 77.833, + 60.811, + 44.796, + 31.684, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.663, + 74.009, + 120.289, + 173.446, + 157.275, + 145.648, + 140.984, + 120.333, + 123.34, + 134.256, + 118.035, + 138.392, + 112.178, + 123.109, + 119.111, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.512, + 74.127, + 120.484, + 191.372, + 193.055, + 194.564, + 197.499, + 196.773, + 184.508, + 189.2, + 167.23, + 183.11, + 149.254, + 159.079, + 149.168, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.514, + 74.147, + 133.017, + 222.487, + 227.272, + 226.915, + 225.687, + 219.976, + 202.341, + 212.63, + 192.396, + 207.672, + 161.679, + 160.446, + 146.698, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.535, + 74.242, + 138.894, + 226.242, + 217.213, + 214.559, + 217.662, + 210.777, + 192.697, + 199.913, + 177.713, + 188.334, + 147.531, + 151.7, + 138.043, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.557, + 74.308, + 120.759, + 175.331, + 164.218, + 165.208, + 165.158, + 158.029, + 144.283, + 156.566, + 138.332, + 156.633, + 123.674, + 132.852, + 121.645, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 51.302, + 56.623, + 85.475, + 131.126, + 190.219, + 195.489, + 197.841, + 188.183, + 172.759, + 185.072, + 168.99, + 182.156, + 120.851, + 91.691, + 98.754, + 83.16, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.598, + 8.695, + 51.787, + 58.045, + 113.673, + 108.753, + 144.435, + 140.086, + 124.461, + 135.383, + 119.027, + 89.197, + 60.574, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.556, + 74.523, + 126.299, + 212.166, + 211.678, + 210.549, + 211.356, + 190.894, + 189.541, + 198.735, + 180.933, + 193.165, + 152.492, + 160.13, + 145.016, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.576, + 74.592, + 124.014, + 211.689, + 212.378, + 226.662, + 214.999, + 209.667, + 206.152, + 217.294, + 179.466, + 184.627, + 140.415, + 148.24, + 133.575, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.595, + 74.396, + 123.135, + 209.094, + 206.731, + 205.918, + 210.635, + 206.935, + 187.347, + 197.326, + 180.329, + 194.955, + 155.428, + 164.728, + 148.614, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.61, + 74.486, + 125.513, + 210.354, + 215.043, + 219.43, + 220.379, + 213.284, + 194.388, + 203.244, + 184.793, + 198.396, + 160.761, + 170.658, + 153.458, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 55.986, + 74.572, + 125.059, + 210.713, + 211.332, + 212.529, + 212.473, + 205.792, + 188.424, + 200.994, + 177.073, + 191.123, + 152.859, + 160.837, + 144.721, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 54.755, + 57.01, + 86.307, + 129.173, + 162.671, + 159.615, + 162.519, + 157.552, + 142.258, + 154.723, + 138.075, + 156.324, + 102.121, + 76.206, + 84.144, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 18.006, + 8.808, + 50.66, + 38.796, + 82.866, + 65.156, + 105.907, + 99.665, + 90.185, + 102.138, + 84.986, + 60.032, + 35.275, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.004, + 74.777, + 121.369, + 175.034, + 159.797, + 152.547, + 164.312, + 152.226, + 149.76, + 159.173, + 141.756, + 158.201, + 121.251, + 132.337, + 120.159, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.029, + 74.862, + 121.671, + 176.061, + 163.127, + 161.025, + 161.485, + 158.715, + 152.532, + 170.019, + 151.027, + 166.95, + 130.71, + 142.127, + 126.299, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.049, + 74.938, + 121.781, + 176.068, + 162.289, + 163.378, + 168.426, + 166.058, + 156.313, + 173.334, + 154.776, + 170.691, + 136.305, + 152.252, + 133.207, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.046, + 74.834, + 121.554, + 175.949, + 173.882, + 176.486, + 182.302, + 178.869, + 163.176, + 172.46, + 154.244, + 171.798, + 137.6, + 152.649, + 136.406, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.068, + 74.955, + 121.885, + 196.838, + 195.65, + 199.164, + 201.467, + 195.55, + 183.472, + 190.566, + 164.652, + 176.65, + 142.167, + 156.683, + 139.302, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 54.862, + 57.287, + 86.947, + 139.092, + 196.778, + 202.838, + 201.93, + 194.594, + 187.539, + 195.594, + 177.111, + 183.187, + 121.023, + 95.958, + 96.519, + 82.915, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 18.171, + 9.032, + 51.571, + 46.127, + 98.369, + 92.422, + 139.414, + 137.573, + 115.216, + 162.615, + 137.027, + 79.365, + 52.775, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.128, + 75.079, + 122.598, + 202.546, + 204.092, + 203.922, + 205.138, + 193.842, + 181.825, + 189.81, + 168.311, + 181.918, + 145.321, + 156.445, + 137.537, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.128, + 75.25, + 122.487, + 181.992, + 183.136, + 185.838, + 186.785, + 181.033, + 164.555, + 174.053, + 154.984, + 173.16, + 140.175, + 152.601, + 133.617, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.128, + 75.281, + 122.613, + 179.857, + 171.107, + 174.267, + 176.017, + 170.393, + 158.368, + 191.708, + 175.533, + 175.672, + 138.375, + 149.515, + 132.021, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.128, + 75.529, + 122.738, + 179.52, + 174.207, + 183.393, + 191.286, + 190.583, + 210.761, + 241.816, + 161.572, + 200.283, + 151.397, + 158.875, + 137.379, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.128, + 75.151, + 122.958, + 189.199, + 191.004, + 191.207, + 192.535, + 188.639, + 170.533, + 187.069, + 166.638, + 174.958, + 140.212, + 150.945, + 124.138, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 58.323, + 57.577, + 87.031, + 129.105, + 162.049, + 160.795, + 170.593, + 168.77, + 164.053, + 177.523, + 160.511, + 176.053, + 113.293, + 88.357, + 85.857, + 80.535, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 9.561, + 51.617, + 40.88, + 80.702, + 71.386, + 120.569, + 173.625, + 182.38, + 182.326, + 99.495, + 77.149, + 51.563, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 9.618, + 51.886, + 40.922, + 78.716, + 68.401, + 103.38, + 98.664, + 133.877, + 138.925, + 124.262, + 72.371, + 39.673, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 75.239, + 122.83, + 178.03, + 162.888, + 154.246, + 157.59, + 156.892, + 151.638, + 161.491, + 144.05, + 163.866, + 131.421, + 145.875, + 121.871, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 75.398, + 123.001, + 178.617, + 167.946, + 174.761, + 177.921, + 176.781, + 166.433, + 178.687, + 191.026, + 178.496, + 145.822, + 156.27, + 135.95, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 75.417, + 123.093, + 182.499, + 183.586, + 193.209, + 197.192, + 190.164, + 179.501, + 188.651, + 168.708, + 184.832, + 150.023, + 165.394, + 145.753, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 75.384, + 124.173, + 205.919, + 207.827, + 206.449, + 205.337, + 199.904, + 187.393, + 198.294, + 177.937, + 194.25, + 159.357, + 175.051, + 150.307, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 58.323, + 57.699, + 87.209, + 149.102, + 206.48, + 207.723, + 207.88, + 198.412, + 185.087, + 193.253, + 173.568, + 191.866, + 133.017, + 113.066, + 108.47, + 98.048, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 9.588, + 51.856, + 46.636, + 105.641, + 110.771, + 150.535, + 140.276, + 130.619, + 139.55, + 117.339, + 93.099, + 64.693, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 75.415, + 122.853, + 186.841, + 197.864, + 202.882, + 199.551, + 187.165, + 174.126, + 185.504, + 168.019, + 184.089, + 145.836, + 163.522, + 141.445, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 75.583, + 122.985, + 176.275, + 172.937, + 179.124, + 187.464, + 183.331, + 171.757, + 182.37, + 164.514, + 181.938, + 145.957, + 162.978, + 138.69, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 75.557, + 123.197, + 177.355, + 173.705, + 176.976, + 179.553, + 177.178, + 169.895, + 181.907, + 161.717, + 177.76, + 142.33, + 158.26, + 134.039, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 75.439, + 123.381, + 177.653, + 162.453, + 170.276, + 187.401, + 181.287, + 166.176, + 176.85, + 158.89, + 176.304, + 136.915, + 153.023, + 131.687, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 75.104, + 123.115, + 179.544, + 167.761, + 164.473, + 161.239, + 153.139, + 140.13, + 158.3, + 145.548, + 164.959, + 138.965, + 153.612, + 131.483, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 61.75, + 57.659, + 87.308, + 123.174, + 153.679, + 146.081, + 144.349, + 133.319, + 124.847, + 139.302, + 126.498, + 150.768, + 111.015, + 89.67, + 84.588, + 80.045, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 9.828, + 51.808, + 33.062, + 68.425, + 64.047, + 110.97, + 104.664, + 99.947, + 111.972, + 96.729, + 73.452, + 51.88, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 75.609, + 122.842, + 170.864, + 154.663, + 149.479, + 148.245, + 135.665, + 127.914, + 140.762, + 126.321, + 149.633, + 128.123, + 144.534, + 120.286, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 75.677, + 123.172, + 173.594, + 157.99, + 148.175, + 146.055, + 142.604, + 136.841, + 148.315, + 132.675, + 154.836, + 131.999, + 148.157, + 122.122, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 75.557, + 123.416, + 175.04, + 157.931, + 146.247, + 140.763, + 128.188, + 115.426, + 128.43, + 118.904, + 145.388, + 123.673, + 137.943, + 119.302, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.026, + 75.689, + 123.243, + 172.234, + 156.123, + 147.869, + 151.558, + 145.434, + 139.387, + 150.981, + 135.695, + 158.061, + 132.959, + 144.893, + 120.76, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.025, + 75.788, + 123.578, + 174.719, + 158.302, + 154.961, + 163.484, + 154.848, + 146.114, + 159.507, + 145.509, + 167.753, + 143.257, + 152.293, + 128.941, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 61.75, + 57.656, + 88.132, + 131.941, + 178.801, + 177.709, + 183.626, + 181.767, + 170.742, + 183.742, + 169.958, + 191.461, + 137.863, + 106.267, + 102.088, + 88.935, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 10.027, + 52.535, + 41.248, + 100.259, + 107.772, + 148.75, + 136.735, + 136.462, + 149.599, + 131.361, + 117.37, + 87.653, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 75.808, + 137.205, + 217.442, + 225.017, + 241.1, + 239.625, + 221.136, + 210.057, + 219.731, + 196.815, + 208.021, + 172.211, + 176.192, + 153.765, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 75.816, + 133.367, + 213.296, + 209.708, + 210.942, + 221.141, + 214.852, + 202.92, + 216.211, + 197.175, + 208.517, + 172.869, + 177.306, + 154.167, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 75.834, + 124.06, + 176.21, + 162.364, + 167.661, + 168.681, + 161.87, + 152.545, + 164.17, + 149.774, + 170.938, + 142.912, + 149.574, + 123.57, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 75.875, + 123.991, + 174.522, + 161.5, + 168.286, + 169.986, + 158.517, + 149.07, + 160.321, + 144.174, + 165.801, + 140.503, + 146.217, + 122.127, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 75.89, + 124.551, + 184.928, + 158.599, + 165.435, + 183.73, + 176.625, + 174.921, + 199.755, + 141.614, + 163.955, + 141.85, + 147.502, + 122.418, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 61.75, + 58.123, + 88.823, + 129.082, + 162.06, + 157.908, + 154.727, + 153.56, + 150.431, + 167.824, + 151.063, + 171.696, + 118.673, + 84.221, + 83.482, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.122, + 53.466, + 39.484, + 84.342, + 73.227, + 112.202, + 126.056, + 96.655, + 118.276, + 84.939, + 75.603, + 55.479, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.636, + 76.181, + 124.619, + 177.925, + 162.363, + 166.578, + 176.928, + 175.066, + 165.905, + 174.94, + 154.834, + 171.237, + 143.439, + 144.675, + 122.357, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 75.941, + 124.871, + 177.325, + 161.651, + 151.159, + 147.146, + 143.401, + 124.356, + 136.694, + 122.572, + 146.817, + 127.933, + 137.727, + 119.589, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.577, + 76.07, + 124.648, + 175.973, + 160.376, + 156.05, + 157.914, + 147.855, + 136.187, + 148.712, + 135.263, + 159.43, + 139.325, + 141.493, + 121.746, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.452, + 75.878, + 124.426, + 174.27, + 160.51, + 156.78, + 161.171, + 158.426, + 148.979, + 181.036, + 168.831, + 193.502, + 148.244, + 153.416, + 130.731, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 75.931, + 128.141, + 188.761, + 168.623, + 224.166, + 192.176, + 199.769, + 251.554, + 249.393, + 170.317, + 208.55, + 160.485, + 160.972, + 134.902, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 65.176, + 58.267, + 88.897, + 122.57, + 153.496, + 152.519, + 160.993, + 219.987, + 208.085, + 224.439, + 190.847, + 179.86, + 125.489, + 87.081, + 85.837, + 80.604, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.299, + 53.58, + 34.717, + 71.123, + 63.776, + 103.078, + 97.851, + 93.927, + 106.602, + 92.629, + 66.696, + 60.714, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.316, + 53.838, + 36.4, + 73.775, + 78.6, + 120.704, + 104.322, + 94.216, + 103.787, + 85.307, + 63.324, + 58.982, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 76.137, + 124.808, + 173.922, + 161.876, + 164.239, + 161.796, + 148.865, + 139.573, + 151.511, + 136.519, + 160.555, + 140.318, + 140.454, + 122.122, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 76.147, + 124.989, + 175.436, + 159.091, + 170.712, + 183.17, + 156.834, + 146.297, + 158.783, + 145.19, + 166.825, + 141.368, + 139.78, + 120.764, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 76.209, + 125.123, + 174.733, + 158.653, + 153.593, + 157.656, + 149.865, + 140.946, + 153.669, + 139.52, + 163.742, + 143.524, + 141.464, + 122.239, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 76.222, + 125.238, + 174.664, + 158.12, + 148.824, + 145.927, + 133.982, + 125.591, + 139.321, + 126.081, + 151.512, + 132.998, + 139.244, + 120.5, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 68.602, + 58.515, + 89.829, + 126.966, + 159.487, + 150.538, + 147.729, + 138.661, + 137.046, + 149.154, + 134.141, + 158.265, + 116.821, + 83.62, + 83.472, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.539, + 54.595, + 40.525, + 88.485, + 77.333, + 101.39, + 98.26, + 91.178, + 88.293, + 80.558, + 65.607, + 62.332, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.951, + 76.31, + 125.435, + 179.592, + 163.086, + 153.313, + 150.19, + 143.886, + 129.833, + 143.962, + 131.215, + 157.167, + 136.209, + 138.209, + 120.021, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.124, + 76.383, + 125.593, + 177.101, + 161.151, + 154.226, + 155.709, + 149.06, + 139.808, + 154.002, + 141.214, + 166.293, + 143.787, + 140.688, + 122.133, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.833, + 76.36, + 125.612, + 175.33, + 160.657, + 153.466, + 149.711, + 147.679, + 147.526, + 160.318, + 144.767, + 165.48, + 139.056, + 140.07, + 121.452, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.833, + 76.387, + 125.614, + 178.916, + 177.877, + 167.389, + 164.17, + 152.671, + 143.537, + 156.41, + 142.616, + 168.592, + 146.901, + 141.433, + 122.799, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.833, + 76.392, + 125.971, + 191.801, + 194.203, + 206.317, + 201.627, + 186.655, + 174.875, + 188.787, + 166.2, + 178.136, + 148.165, + 142.027, + 123.488, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 68.602, + 58.687, + 90.269, + 127.827, + 159.645, + 150.005, + 146.288, + 136.755, + 136.262, + 156.557, + 142.911, + 168.314, + 117.605, + 83.505, + 83.472, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.692, + 55.01, + 39.613, + 76.694, + 67.794, + 100.09, + 91.298, + 77.592, + 90.055, + 77.102, + 68.426, + 65.758, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.963, + 76.672, + 126.038, + 175.876, + 159.393, + 149.027, + 144.811, + 136.468, + 137.835, + 156.597, + 143.859, + 167.225, + 141.015, + 136.712, + 118.899, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.01, + 76.685, + 126.077, + 175.883, + 159.867, + 149.98, + 147.185, + 141.411, + 134.442, + 150.452, + 137.637, + 163.648, + 140.344, + 138.398, + 120.131, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.007, + 76.684, + 126.166, + 179.319, + 162.78, + 153.357, + 155.086, + 154.539, + 144.712, + 176.412, + 153.205, + 168.831, + 139.641, + 137.962, + 119.977, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.971, + 80.115, + 126.117, + 179.32, + 161.933, + 151.315, + 146.977, + 143.156, + 126.931, + 142.348, + 131.628, + 156.926, + 138.038, + 137.93, + 119.74, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.385, + 80.4, + 126.138, + 176.917, + 158.607, + 149.412, + 148.283, + 142.158, + 125.573, + 139.402, + 129.405, + 157.831, + 139.621, + 138.654, + 120.006, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 69.127, + 62.793, + 90.765, + 124.843, + 155.709, + 145.158, + 142.619, + 135.254, + 123.525, + 137.29, + 125.994, + 154.547, + 120.83, + 83.828, + 83.472, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.365, + 55.435, + 36.864, + 72.693, + 63.088, + 102.052, + 98.986, + 87.655, + 97.41, + 82.571, + 71.065, + 65.762, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.311, + 80.447, + 126.407, + 175.251, + 160.019, + 163.923, + 177.259, + 178.29, + 170.568, + 188.263, + 169.653, + 185.758, + 155.978, + 150.008, + 126.637, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.889, + 80.208, + 126.575, + 175.94, + 166.123, + 175.408, + 185.419, + 187.885, + 194.47, + 182.039, + 162.408, + 173.925, + 149.61, + 142.027, + 121.148, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.899, + 80.243, + 126.704, + 177.083, + 191.383, + 178.072, + 173.315, + 165.058, + 149.286, + 161.83, + 150.295, + 184.204, + 144.828, + 139.501, + 121.005, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.929, + 80.3, + 126.787, + 176.869, + 158.513, + 158.137, + 180.435, + 187.279, + 126.064, + 156.853, + 133.124, + 163.496, + 138.606, + 137.513, + 119.0, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.588, + 80.713, + 126.862, + 177.728, + 160.188, + 149.549, + 147.419, + 144.674, + 126.589, + 140.136, + 129.026, + 161.49, + 139.346, + 138.046, + 119.481, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 69.102, + 62.91, + 91.441, + 125.974, + 156.076, + 144.804, + 140.509, + 133.314, + 119.629, + 134.72, + 124.689, + 158.595, + 118.899, + 83.472, + 83.472, + 79.944, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.489, + 56.632, + 39.278, + 74.714, + 63.865, + 95.161, + 88.941, + 73.912, + 88.195, + 78.519, + 76.183, + 65.758, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.911, + 74.156, + 112.015, + 160.729, + 149.879, + 145.575, + 142.581, + 126.837, + 141.381, + 130.387, + 163.087, + 187.346, + 137.981, + 137.303, + 150.796, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.693, + 74.328, + 112.72, + 161.997, + 151.89, + 154.382, + 160.461, + 143.074, + 155.95, + 142.53, + 166.375, + 187.637, + 137.954, + 137.484, + 151.025, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.395, + 74.272, + 113.413, + 163.388, + 154.591, + 157.795, + 159.392, + 141.024, + 154.007, + 141.766, + 172.129, + 189.029, + 138.787, + 137.89, + 151.694, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.513, + 74.276, + 113.723, + 169.503, + 175.242, + 181.186, + 185.949, + 165.531, + 173.234, + 155.51, + 183.124, + 200.898, + 143.101, + 139.57, + 152.94, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.163, + 74.344, + 114.732, + 167.414, + 171.841, + 180.542, + 201.184, + 163.089, + 174.267, + 160.391, + 185.342, + 199.05, + 141.327, + 140.342, + 153.733, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 54.955, + 56.677, + 77.821, + 114.878, + 167.909, + 173.352, + 170.992, + 153.593, + 172.234, + 162.348, + 186.21, + 200.371, + 122.548, + 86.155, + 117.506, + 80.336, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 18.171, + 8.455, + 47.384, + 28.752, + 69.392, + 64.966, + 102.218, + 99.688, + 95.319, + 85.467, + 123.144, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.589, + 74.396, + 123.773, + 165.446, + 153.424, + 148.675, + 150.164, + 135.539, + 139.522, + 129.153, + 165.431, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.765, + 74.942, + 123.772, + 164.931, + 154.026, + 166.011, + 182.378, + 184.839, + 170.412, + 155.99, + 176.754, + 187.748, + 138.656, + 137.563, + 150.941, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.956, + 76.294, + 116.463, + 185.964, + 152.581, + 147.477, + 148.73, + 142.578, + 138.951, + 129.462, + 169.811, + 185.076, + 136.677, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 58.108, + 76.258, + 117.553, + 164.819, + 152.961, + 148.24, + 147.917, + 125.585, + 140.336, + 130.321, + 166.864, + 185.303, + 137.121, + 137.101, + 151.285, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 61.214, + 75.385, + 111.01, + 157.781, + 146.128, + 141.733, + 138.723, + 120.547, + 135.371, + 126.925, + 165.711, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 59.146, + 57.249, + 78.089, + 113.185, + 149.815, + 145.484, + 144.006, + 124.968, + 139.257, + 136.003, + 170.981, + 185.528, + 119.145, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 9.351, + 53.228, + 25.457, + 85.337, + 77.269, + 136.41, + 139.123, + 137.413, + 87.552, + 122.135, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.25, + 75.53, + 124.943, + 165.877, + 176.158, + 172.974, + 189.448, + 157.89, + 140.975, + 131.345, + 168.379, + 185.381, + 136.901, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.08, + 75.025, + 116.483, + 167.648, + 174.39, + 196.882, + 215.644, + 194.678, + 216.11, + 191.533, + 195.412, + 201.178, + 143.589, + 140.767, + 154.018, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.575, + 75.096, + 116.369, + 165.783, + 158.78, + 163.55, + 168.924, + 148.108, + 162.488, + 152.158, + 185.71, + 191.799, + 140.582, + 139.346, + 152.156, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 9.602, + 53.482, + 48.737, + 71.459, + 66.182, + 103.109, + 98.1, + 92.912, + 93.933, + 122.129, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.472, + 75.794, + 114.679, + 161.755, + 149.468, + 144.406, + 145.155, + 124.113, + 139.145, + 129.666, + 171.103, + 184.874, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 58.961, + 58.141, + 80.506, + 115.126, + 152.065, + 146.861, + 148.238, + 135.455, + 138.062, + 128.6, + 167.108, + 184.831, + 118.899, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 9.71, + 44.976, + 28.049, + 71.058, + 65.662, + 102.207, + 89.516, + 92.402, + 81.815, + 119.084, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.177, + 75.601, + 116.739, + 165.722, + 157.552, + 162.328, + 174.347, + 164.016, + 167.914, + 155.52, + 186.832, + 197.633, + 141.465, + 139.197, + 151.715, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.859, + 76.025, + 124.965, + 185.304, + 168.205, + 170.34, + 174.582, + 157.318, + 145.133, + 133.466, + 169.341, + 185.693, + 136.721, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.403, + 76.088, + 124.99, + 167.807, + 155.355, + 150.75, + 154.7, + 152.842, + 144.635, + 133.807, + 170.967, + 187.306, + 137.556, + 136.693, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.31, + 75.937, + 118.784, + 166.537, + 154.987, + 151.639, + 153.831, + 131.143, + 143.749, + 185.789, + 205.738, + 217.926, + 160.331, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.044, + 76.933, + 126.085, + 189.358, + 195.676, + 193.493, + 195.148, + 194.894, + 192.716, + 157.933, + 167.877, + 184.831, + 136.613, + 136.613, + 150.799, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 63.269, + 58.869, + 86.07, + 132.272, + 170.266, + 173.109, + 168.602, + 158.638, + 180.114, + 189.258, + 171.125, + 184.831, + 118.91, + 83.647, + 115.624, + 80.35, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 10.112, + 58.024, + 57.668, + 108.844, + 101.571, + 137.068, + 129.102, + 138.514, + 106.895, + 122.707, + 102.057, + 66.759, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 65.086, + 76.91, + 130.873, + 166.699, + 185.867, + 180.623, + 175.524, + 188.716, + 195.931, + 130.205, + 170.638, + 184.831, + 136.613, + 136.613, + 150.798, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.307, + 76.137, + 117.969, + 163.852, + 151.915, + 152.265, + 157.613, + 132.053, + 141.923, + 132.436, + 175.521, + 185.245, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.609, + 75.678, + 119.557, + 167.12, + 155.284, + 149.647, + 166.772, + 130.059, + 158.715, + 140.057, + 172.38, + 185.349, + 137.112, + 136.764, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.636, + 75.916, + 119.432, + 166.173, + 154.123, + 148.456, + 149.798, + 152.588, + 140.063, + 130.196, + 171.498, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.106, + 76.19, + 118.502, + 165.069, + 152.1, + 147.143, + 149.259, + 129.727, + 139.813, + 130.996, + 172.92, + 186.027, + 137.452, + 136.655, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 66.204, + 58.592, + 82.755, + 116.289, + 158.15, + 156.983, + 148.561, + 143.057, + 138.795, + 128.673, + 171.031, + 184.831, + 118.899, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 9.938, + 49.629, + 30.261, + 70.641, + 64.031, + 99.465, + 128.433, + 130.829, + 97.648, + 123.32, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.347, + 33.392, + 33.37, + 68.291, + 77.019, + 120.98, + 180.802, + 185.496, + 148.725, + 195.081, + 189.031, + 193.246, + 147.959, + 168.962, + 184.831, + 136.625, + 137.045, + 151.62, + 60.908, + 33.107, + 33.107, + 33.107, + 33.25, + 33.265, + 33.803, + 34.096, + 34.422, + 68.957, + 77.356, + 120.041, + 165.314, + 152.13, + 145.657, + 146.683, + 128.978, + 137.695, + 128.086, + 167.459, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.314, + 33.582, + 34.004, + 34.072, + 34.376, + 68.876, + 77.085, + 119.276, + 165.333, + 152.192, + 146.284, + 147.551, + 129.358, + 137.913, + 128.157, + 167.151, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.402, + 33.526, + 33.539, + 33.8, + 34.142, + 68.678, + 76.741, + 126.078, + 168.006, + 156.34, + 151.902, + 152.121, + 149.322, + 140.133, + 129.519, + 167.485, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.216, + 33.336, + 68.178, + 76.569, + 125.918, + 167.567, + 175.244, + 174.59, + 177.805, + 193.387, + 172.164, + 129.118, + 170.573, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 66.533, + 58.87, + 84.509, + 117.307, + 151.699, + 145.427, + 147.094, + 129.914, + 137.098, + 127.669, + 167.31, + 185.423, + 118.899, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.153, + 49.132, + 29.78, + 71.665, + 69.814, + 112.689, + 91.965, + 99.493, + 91.326, + 127.379, + 102.532, + 66.24, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.493, + 76.347, + 127.581, + 169.123, + 175.776, + 192.681, + 184.937, + 200.386, + 171.11, + 148.448, + 179.379, + 188.87, + 139.612, + 138.654, + 152.061, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.138, + 76.021, + 120.45, + 167.953, + 168.467, + 181.986, + 186.37, + 167.044, + 167.309, + 153.025, + 185.764, + 197.763, + 143.151, + 141.391, + 154.606, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.557, + 75.982, + 121.787, + 169.888, + 173.184, + 185.453, + 197.176, + 179.879, + 177.085, + 160.67, + 184.695, + 189.712, + 139.845, + 138.591, + 151.877, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.762, + 76.286, + 126.339, + 190.304, + 180.936, + 180.642, + 197.307, + 179.722, + 168.023, + 147.773, + 178.378, + 189.083, + 139.769, + 138.927, + 152.122, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.962, + 76.149, + 124.14, + 170.022, + 162.05, + 180.683, + 160.389, + 144.758, + 148.759, + 138.634, + 173.028, + 188.101, + 138.309, + 137.364, + 150.879, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 66.192, + 58.872, + 87.674, + 121.217, + 156.806, + 151.391, + 152.111, + 167.909, + 151.072, + 154.049, + 172.402, + 185.794, + 118.899, + 83.472, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.38, + 53.617, + 32.6, + 72.968, + 67.984, + 104.813, + 87.396, + 96.844, + 79.963, + 121.48, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.776, + 77.224, + 120.674, + 165.852, + 152.739, + 159.599, + 193.191, + 177.864, + 169.301, + 156.672, + 172.836, + 185.953, + 137.34, + 136.667, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.331, + 50.406, + 29.799, + 71.042, + 83.08, + 127.14, + 108.148, + 108.965, + 89.647, + 119.176, + 101.204, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.91, + 76.944, + 123.598, + 169.621, + 173.102, + 168.301, + 172.488, + 159.881, + 161.248, + 164.546, + 170.429, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.064, + 77.299, + 127.188, + 191.091, + 186.883, + 174.253, + 165.418, + 184.54, + 189.439, + 159.309, + 198.471, + 184.831, + 136.613, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.135, + 77.484, + 126.345, + 185.837, + 186.851, + 190.527, + 190.865, + 194.536, + 192.486, + 186.764, + 202.619, + 216.707, + 138.826, + 136.613, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 69.848, + 59.553, + 94.811, + 142.891, + 193.065, + 191.613, + 194.313, + 192.624, + 187.57, + 190.519, + 196.939, + 216.707, + 123.493, + 83.472, + 115.415, + 80.182, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.476, + 58.723, + 53.52, + 110.529, + 107.055, + 142.385, + 143.156, + 144.507, + 106.705, + 122.403, + 101.185, + 65.758, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.664, + 76.731, + 125.92, + 171.82, + 156.858, + 149.846, + 169.957, + 158.114, + 136.59, + 136.946, + 161.182, + 184.831, + 136.613, + 136.613, + 150.791, + 60.908, + 33.107, + 33.107 + ], + "annual_emissions_tonnes_NOx": 0.12, + "annual_emissions_tonnes_SO2": 0.03, + "annual_emissions_tonnes_PM25": 0.02, + "lifecycle_emissions_tonnes_NOx": 2.49, + "annual_emissions_tonnes_PM25_bau": 0.02, + "annual_energy_supplied_kwh": 797785.75, + "emissions_region": "California", + "electric_to_storage_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "lifecycle_emissions_tonnes_NOx_bau": 2.76, + "electric_to_load_series_kw_bau": [ + 31.876, + 31.876, + 31.876, + 32.165, + 32.388, + 32.759, + 32.725, + 10.146, + 41.525, + 28.973, + 73.373, + 69.052, + 104.056, + 107.237, + 114.31, + 125.354, + 145.91, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.869, + 76.823, + 110.87, + 164.811, + 156.526, + 152.141, + 151.67, + 155.096, + 162.125, + 173.175, + 199.052, + 216.707, + 168.489, + 168.492, + 150.852, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.547, + 76.807, + 121.189, + 164.898, + 155.813, + 150.929, + 150.382, + 153.514, + 160.763, + 172.072, + 193.643, + 216.707, + 168.518, + 168.721, + 151.093, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.658, + 74.126, + 111.068, + 164.505, + 156.04, + 151.706, + 151.269, + 154.443, + 161.541, + 172.53, + 193.732, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.407, + 76.824, + 112.404, + 166.654, + 158.325, + 153.885, + 153.465, + 164.036, + 174.443, + 173.723, + 197.149, + 217.36, + 169.265, + 169.393, + 151.75, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 32.132, + 32.88, + 32.841, + 33.064, + 71.197, + 59.958, + 77.055, + 118.171, + 169.093, + 168.973, + 162.487, + 156.079, + 162.663, + 173.102, + 193.492, + 216.707, + 150.775, + 115.348, + 115.368, + 80.213, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 32.031, + 32.061, + 32.114, + 7.541, + 41.815, + 30.009, + 74.929, + 70.393, + 105.072, + 107.783, + 114.509, + 125.135, + 145.134, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.587, + 74.226, + 111.449, + 164.632, + 155.679, + 150.716, + 150.094, + 153.235, + 160.127, + 171.403, + 192.356, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.617, + 76.634, + 120.208, + 165.212, + 156.928, + 152.356, + 151.776, + 154.647, + 161.366, + 171.982, + 192.037, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.299, + 76.0, + 111.395, + 165.776, + 163.073, + 165.13, + 159.851, + 170.596, + 171.947, + 182.539, + 197.979, + 216.758, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.17, + 77.717, + 128.784, + 185.827, + 160.01, + 154.823, + 162.632, + 164.904, + 162.557, + 175.027, + 192.049, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.145, + 73.983, + 111.928, + 166.125, + 157.566, + 152.838, + 152.183, + 155.23, + 161.802, + 172.17, + 191.388, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 69.872, + 56.099, + 76.397, + 118.114, + 158.33, + 154.552, + 156.51, + 162.981, + 171.736, + 178.325, + 191.519, + 217.96, + 150.775, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 7.108, + 40.218, + 28.45, + 73.304, + 79.374, + 120.515, + 122.922, + 122.819, + 132.738, + 140.855, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.229, + 42.369, + 30.617, + 84.638, + 78.706, + 126.733, + 107.941, + 133.785, + 146.085, + 146.688, + 133.062, + 97.656, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 72.055, + 74.597, + 112.944, + 166.805, + 158.043, + 153.08, + 152.129, + 154.738, + 161.136, + 171.756, + 187.166, + 216.707, + 168.489, + 168.489, + 150.785, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 72.113, + 74.712, + 113.8, + 168.306, + 160.083, + 154.808, + 162.635, + 156.202, + 162.376, + 172.633, + 187.668, + 217.648, + 169.581, + 169.609, + 151.814, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.148, + 33.158, + 33.216, + 72.404, + 75.408, + 116.712, + 178.189, + 165.713, + 161.745, + 162.104, + 173.07, + 174.753, + 186.099, + 194.847, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.35, + 74.335, + 127.414, + 184.967, + 177.724, + 178.699, + 152.873, + 155.245, + 175.59, + 179.604, + 194.858, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.942, + 32.204, + 32.265, + 32.304, + 70.631, + 56.457, + 77.094, + 117.755, + 157.438, + 152.415, + 177.371, + 192.296, + 190.602, + 195.597, + 195.343, + 216.707, + 150.775, + 115.348, + 115.348, + 79.969, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 32.186, + 32.412, + 32.572, + 32.831, + 10.055, + 51.349, + 36.205, + 81.324, + 78.706, + 112.528, + 120.364, + 126.632, + 127.579, + 137.425, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.244, + 33.107, + 71.731, + 73.573, + 111.639, + 166.066, + 157.783, + 152.731, + 151.62, + 154.277, + 160.439, + 170.424, + 185.603, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.252, + 33.274, + 71.623, + 73.606, + 112.395, + 166.604, + 169.236, + 161.993, + 165.53, + 167.439, + 169.57, + 179.337, + 193.207, + 216.721, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.536, + 76.545, + 121.687, + 185.447, + 181.948, + 184.344, + 182.907, + 194.994, + 211.99, + 211.583, + 203.772, + 216.414, + 170.607, + 170.495, + 152.783, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.007, + 77.277, + 126.662, + 186.5, + 191.407, + 200.792, + 223.928, + 187.335, + 198.354, + 210.15, + 218.195, + 235.345, + 180.247, + 171.697, + 152.829, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.525, + 72.693, + 118.388, + 172.71, + 202.296, + 185.662, + 198.516, + 213.774, + 239.543, + 203.15, + 203.593, + 224.624, + 179.883, + 173.853, + 153.127, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 65.393, + 54.128, + 74.466, + 114.337, + 152.856, + 158.744, + 176.265, + 179.695, + 180.883, + 183.452, + 188.863, + 215.369, + 151.001, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 5.245, + 38.796, + 26.095, + 70.258, + 68.161, + 103.516, + 105.966, + 112.458, + 122.061, + 136.158, + 129.635, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.545, + 71.65, + 109.899, + 163.81, + 155.476, + 151.132, + 150.446, + 162.734, + 164.383, + 180.077, + 191.615, + 213.281, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 68.015, + 75.73, + 111.313, + 164.788, + 163.067, + 159.332, + 159.133, + 162.54, + 167.393, + 175.74, + 189.655, + 213.281, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 68.134, + 78.18, + 129.208, + 180.864, + 171.122, + 149.231, + 148.057, + 150.45, + 156.917, + 167.386, + 184.988, + 213.281, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.59, + 73.013, + 112.614, + 166.02, + 157.552, + 152.892, + 151.363, + 153.322, + 158.804, + 168.699, + 184.037, + 213.281, + 168.489, + 168.489, + 150.829, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.73, + 71.441, + 109.972, + 163.078, + 160.899, + 157.891, + 159.393, + 151.299, + 157.632, + 167.374, + 181.833, + 213.281, + 168.604, + 168.804, + 151.24, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 32.006, + 67.647, + 53.758, + 74.22, + 114.865, + 154.539, + 149.887, + 149.034, + 151.72, + 157.673, + 167.348, + 181.623, + 209.854, + 150.775, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.949, + 28.668, + 4.767, + 40.027, + 27.219, + 71.599, + 66.975, + 101.431, + 104.117, + 110.092, + 119.686, + 133.829, + 126.209, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 68.128, + 75.833, + 119.117, + 175.863, + 163.889, + 160.073, + 162.248, + 167.198, + 168.124, + 178.969, + 190.54, + 209.854, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.707, + 71.074, + 110.963, + 165.09, + 156.441, + 151.49, + 150.06, + 159.083, + 165.109, + 173.006, + 186.741, + 209.854, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.924, + 73.819, + 115.459, + 172.049, + 165.207, + 157.815, + 164.724, + 166.403, + 172.634, + 174.9, + 187.706, + 209.854, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.02, + 74.058, + 120.6, + 175.891, + 173.892, + 177.284, + 164.512, + 162.41, + 175.667, + 178.456, + 190.76, + 209.854, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.812, + 71.841, + 116.133, + 172.388, + 169.399, + 161.909, + 185.844, + 185.505, + 193.317, + 195.191, + 199.787, + 211.431, + 168.632, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 62.819, + 58.264, + 84.806, + 142.506, + 192.405, + 184.637, + 185.877, + 182.456, + 187.159, + 192.374, + 208.952, + 218.694, + 153.011, + 116.124, + 115.542, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 11.318, + 39.285, + 26.85, + 71.321, + 67.055, + 102.493, + 107.099, + 115.479, + 126.844, + 139.606, + 128.388, + 97.684, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.44, + 70.164, + 110.338, + 180.913, + 176.378, + 183.004, + 192.1, + 202.005, + 202.357, + 206.485, + 224.778, + 224.907, + 172.008, + 170.842, + 152.421, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.389, + 69.511, + 109.151, + 163.333, + 190.19, + 180.36, + 176.61, + 174.764, + 180.568, + 196.381, + 201.007, + 215.655, + 171.592, + 170.477, + 151.9, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.537, + 69.149, + 108.372, + 161.766, + 152.536, + 147.861, + 147.264, + 150.029, + 156.269, + 166.129, + 180.646, + 207.114, + 168.635, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.558, + 74.007, + 108.265, + 162.138, + 153.86, + 149.256, + 148.245, + 150.931, + 156.962, + 166.526, + 180.252, + 206.428, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.161, + 69.586, + 109.308, + 162.887, + 154.302, + 149.614, + 148.465, + 150.857, + 156.758, + 166.389, + 180.773, + 206.818, + 168.947, + 169.073, + 151.421, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 64.059, + 52.742, + 74.139, + 114.339, + 153.828, + 149.174, + 148.248, + 150.758, + 156.959, + 171.674, + 192.779, + 206.428, + 150.775, + 115.348, + 115.357, + 80.121, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 8.097, + 45.786, + 39.497, + 85.527, + 88.999, + 133.364, + 118.747, + 118.632, + 125.524, + 137.306, + 122.783, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 11.318, + 58.866, + 58.668, + 110.991, + 106.492, + 112.123, + 117.437, + 108.176, + 117.655, + 131.725, + 122.304, + 97.901, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.194, + 33.723, + 33.906, + 62.098, + 70.052, + 108.683, + 162.338, + 154.047, + 149.294, + 148.029, + 150.161, + 155.673, + 165.443, + 179.197, + 205.65, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.407, + 33.466, + 61.664, + 69.673, + 108.822, + 163.409, + 155.398, + 150.23, + 148.507, + 150.252, + 155.709, + 165.085, + 178.92, + 205.469, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 61.069, + 69.45, + 121.906, + 187.399, + 189.998, + 165.708, + 159.148, + 161.825, + 169.239, + 175.053, + 185.809, + 206.291, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 61.098, + 68.025, + 105.853, + 158.549, + 149.447, + 146.265, + 145.046, + 145.291, + 151.22, + 161.581, + 176.759, + 205.896, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 59.852, + 50.252, + 70.644, + 111.497, + 151.376, + 147.564, + 147.346, + 150.383, + 155.703, + 164.227, + 177.696, + 202.446, + 150.775, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 1.908, + 36.389, + 23.654, + 67.851, + 63.299, + 97.626, + 111.154, + 140.571, + 145.631, + 144.152, + 118.123, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 61.03, + 68.449, + 106.999, + 160.949, + 152.333, + 147.349, + 146.058, + 148.34, + 154.151, + 163.728, + 177.961, + 201.26, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.179, + 33.342, + 58.029, + 77.686, + 105.694, + 158.615, + 158.831, + 156.868, + 144.915, + 145.401, + 151.761, + 193.179, + 192.558, + 202.837, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.252, + 58.042, + 67.66, + 105.082, + 157.896, + 149.097, + 145.894, + 144.746, + 145.021, + 151.203, + 161.371, + 195.672, + 201.81, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 58.026, + 76.187, + 114.292, + 181.4, + 175.513, + 165.643, + 191.225, + 165.798, + 176.957, + 190.391, + 187.718, + 203.002, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.95, + 73.435, + 115.051, + 175.335, + 169.175, + 161.339, + 166.117, + 167.702, + 176.01, + 182.35, + 190.06, + 203.002, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 55.984, + 54.063, + 79.235, + 122.152, + 159.12, + 157.698, + 161.879, + 170.238, + 185.516, + 192.054, + 198.614, + 205.691, + 151.286, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 17.809, + 1.107, + 35.444, + 33.438, + 78.013, + 83.343, + 129.258, + 137.558, + 140.693, + 137.065, + 141.779, + 117.626, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.037, + 66.946, + 106.346, + 161.341, + 153.6, + 164.286, + 147.836, + 149.877, + 162.758, + 165.001, + 187.372, + 200.839, + 168.779, + 168.949, + 151.312, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 57.598, + 72.184, + 115.569, + 174.931, + 153.264, + 148.88, + 157.301, + 149.406, + 155.322, + 165.031, + 178.25, + 200.546, + 168.489, + 168.513, + 150.902, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.223, + 66.672, + 105.028, + 158.636, + 158.564, + 155.563, + 159.037, + 159.014, + 160.452, + 170.411, + 176.902, + 202.469, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.757, + 65.465, + 103.48, + 157.188, + 149.198, + 145.757, + 144.918, + 147.239, + 153.228, + 162.866, + 180.813, + 197.527, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.746, + 68.16, + 104.716, + 158.877, + 151.255, + 147.656, + 148.037, + 151.482, + 156.402, + 171.847, + 181.752, + 196.633, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 51.44, + 48.23, + 74.952, + 110.758, + 151.106, + 146.817, + 146.106, + 148.442, + 154.59, + 164.035, + 177.402, + 196.28, + 150.775, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 13.668, + 51.884, + 40.496, + 73.674, + 74.005, + 109.55, + 105.34, + 112.119, + 115.806, + 126.734, + 98.704, + 78.274, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.58, + 79.769, + 118.269, + 169.405, + 157.447, + 149.398, + 145.536, + 144.657, + 147.384, + 153.608, + 163.238, + 176.89, + 147.643, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.114, + 79.977, + 118.457, + 169.717, + 158.005, + 150.132, + 145.756, + 144.694, + 147.285, + 153.514, + 163.004, + 176.533, + 147.265, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.056, + 79.69, + 117.905, + 169.315, + 158.232, + 151.291, + 147.333, + 146.535, + 148.678, + 154.213, + 163.426, + 176.662, + 147.182, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.766, + 76.754, + 118.24, + 168.9, + 157.235, + 149.28, + 145.372, + 144.7, + 147.314, + 153.797, + 163.42, + 176.717, + 147.274, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.75, + 76.625, + 118.384, + 170.036, + 159.815, + 152.682, + 149.376, + 147.62, + 149.338, + 154.597, + 163.406, + 176.305, + 146.868, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 69.962, + 58.393, + 81.749, + 119.743, + 156.347, + 148.37, + 144.844, + 143.899, + 145.764, + 151.82, + 165.341, + 181.662, + 130.334, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.108, + 46.107, + 30.582, + 71.741, + 64.035, + 96.459, + 95.758, + 98.378, + 104.348, + 113.909, + 91.69, + 75.473, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.432, + 75.944, + 116.662, + 167.221, + 155.685, + 148.022, + 144.753, + 144.071, + 147.297, + 153.736, + 163.022, + 175.862, + 146.437, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.716, + 77.033, + 122.007, + 178.478, + 160.444, + 155.282, + 156.155, + 155.894, + 157.354, + 166.75, + 163.693, + 176.439, + 143.281, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.388, + 75.879, + 117.639, + 169.363, + 158.665, + 151.629, + 147.473, + 146.235, + 148.215, + 154.216, + 164.171, + 177.57, + 144.174, + 169.243, + 151.676, + 60.908, + 33.107, + 33.107, + 33.107, + 33.232, + 33.608, + 33.8, + 34.179, + 34.375, + 69.002, + 76.833, + 118.203, + 169.897, + 159.201, + 153.209, + 149.682, + 147.881, + 149.214, + 154.362, + 163.587, + 176.626, + 143.307, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 68.216, + 75.78, + 117.091, + 175.035, + 167.258, + 153.471, + 155.208, + 155.538, + 159.097, + 161.133, + 164.802, + 182.67, + 144.909, + 168.489, + 150.809, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 66.844, + 58.005, + 82.005, + 127.204, + 163.043, + 150.976, + 147.386, + 147.131, + 150.166, + 167.107, + 168.586, + 181.945, + 125.945, + 115.348, + 115.348, + 79.955, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 8.618, + 46.757, + 32.607, + 75.144, + 66.847, + 97.898, + 96.973, + 105.73, + 106.299, + 115.523, + 93.174, + 72.486, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.626, + 74.903, + 115.743, + 167.096, + 155.996, + 152.135, + 151.263, + 192.192, + 173.672, + 172.626, + 183.186, + 191.715, + 144.376, + 168.633, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.543, + 74.828, + 115.713, + 167.079, + 156.205, + 149.311, + 145.597, + 144.286, + 146.912, + 152.94, + 162.713, + 188.04, + 142.818, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.544, + 74.725, + 115.806, + 168.274, + 158.302, + 153.828, + 167.969, + 170.145, + 172.8, + 174.42, + 173.575, + 180.683, + 144.173, + 168.584, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.492, + 74.686, + 120.79, + 175.587, + 158.792, + 157.428, + 162.995, + 175.474, + 173.619, + 172.698, + 183.301, + 196.648, + 149.323, + 170.015, + 151.616, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.478, + 74.024, + 113.665, + 164.915, + 154.357, + 158.4, + 171.277, + 178.37, + 179.033, + 178.47, + 181.674, + 189.835, + 146.659, + 169.595, + 151.14, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 62.392, + 56.328, + 79.154, + 118.413, + 167.391, + 175.767, + 177.567, + 175.643, + 180.177, + 190.364, + 197.094, + 220.925, + 136.194, + 116.045, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 7.661, + 42.958, + 27.627, + 69.393, + 61.656, + 94.655, + 93.903, + 95.487, + 102.236, + 112.194, + 90.709, + 70.926, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.441, + 74.529, + 114.134, + 165.368, + 154.636, + 147.677, + 144.264, + 144.333, + 155.595, + 153.105, + 162.427, + 175.269, + 141.829, + 165.063, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.438, + 74.29, + 114.879, + 171.847, + 164.918, + 152.867, + 148.758, + 147.221, + 149.068, + 154.285, + 163.471, + 175.973, + 142.159, + 165.063, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.356, + 73.924, + 114.185, + 175.529, + 162.47, + 149.322, + 145.039, + 144.012, + 146.486, + 152.5, + 161.858, + 175.138, + 141.832, + 165.063, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.303, + 73.704, + 113.359, + 164.465, + 153.372, + 146.208, + 143.065, + 142.187, + 144.213, + 150.782, + 175.225, + 175.165, + 141.841, + 165.063, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.61, + 73.292, + 112.747, + 164.176, + 153.231, + 145.555, + 142.928, + 142.257, + 144.92, + 151.422, + 161.395, + 175.063, + 141.64, + 165.063, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 59.181, + 55.492, + 77.263, + 116.298, + 154.158, + 147.551, + 144.446, + 144.65, + 147.627, + 153.501, + 162.55, + 175.408, + 124.052, + 111.994, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 7.582, + 42.476, + 29.485, + 74.925, + 80.255, + 119.948, + 117.909, + 120.298, + 126.999, + 135.268, + 100.984, + 72.306, + 28.45, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.012, + 72.832, + 113.074, + 165.991, + 156.862, + 154.072, + 149.893, + 148.884, + 151.393, + 157.514, + 167.268, + 181.977, + 143.789, + 165.733, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.309, + 73.106, + 112.506, + 164.824, + 154.684, + 148.73, + 149.103, + 145.884, + 148.876, + 155.267, + 164.659, + 177.528, + 143.163, + 165.94, + 150.896, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.172, + 77.474, + 112.643, + 177.028, + 153.975, + 186.834, + 168.576, + 144.317, + 165.373, + 188.495, + 221.198, + 249.776, + 195.514, + 198.018, + 171.933, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.633, + 72.014, + 112.137, + 180.191, + 172.868, + 176.438, + 179.933, + 192.985, + 185.698, + 208.337, + 219.335, + 214.322, + 166.03, + 174.865, + 152.221, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.969, + 77.281, + 112.444, + 164.895, + 200.215, + 224.144, + 233.402, + 236.588, + 225.563, + 219.899, + 207.801, + 212.235, + 160.437, + 167.277, + 151.574, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 55.532, + 55.347, + 75.646, + 114.468, + 152.135, + 145.617, + 143.212, + 142.593, + 145.655, + 152.218, + 161.658, + 174.948, + 123.693, + 111.973, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 18.067, + 6.255, + 41.497, + 28.1, + 72.043, + 66.683, + 99.61, + 98.525, + 100.487, + 105.794, + 114.47, + 91.654, + 70.183, + 28.45, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.618, + 72.415, + 112.217, + 165.379, + 156.082, + 151.85, + 155.661, + 158.216, + 160.842, + 167.535, + 176.302, + 188.501, + 149.81, + 163.131, + 151.564, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.563, + 72.627, + 112.317, + 165.851, + 157.261, + 151.82, + 148.685, + 147.326, + 148.964, + 154.389, + 163.16, + 175.378, + 140.94, + 161.636, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.553, + 72.79, + 112.401, + 165.581, + 162.715, + 157.419, + 146.861, + 146.634, + 148.992, + 154.651, + 163.395, + 180.325, + 141.023, + 161.639, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.601, + 72.542, + 112.023, + 165.172, + 156.273, + 150.88, + 149.931, + 152.537, + 155.937, + 161.201, + 169.012, + 180.476, + 142.897, + 162.36, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.41, + 72.253, + 112.964, + 166.411, + 157.201, + 150.217, + 147.622, + 148.456, + 152.163, + 158.285, + 165.575, + 176.466, + 141.086, + 161.636, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 55.503, + 54.836, + 76.962, + 117.686, + 157.32, + 151.827, + 149.349, + 149.217, + 151.489, + 156.496, + 164.612, + 176.003, + 123.179, + 108.495, + 115.392, + 80.169, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.483, + 6.176, + 42.654, + 30.323, + 74.097, + 67.66, + 99.419, + 98.763, + 101.165, + 106.655, + 115.702, + 91.904, + 69.885, + 25.024, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 54.532, + 72.858, + 112.362, + 165.579, + 156.43, + 149.964, + 146.366, + 145.611, + 147.373, + 153.328, + 162.247, + 174.48, + 140.34, + 161.993, + 151.239, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 54.434, + 73.904, + 112.39, + 166.355, + 155.656, + 156.131, + 171.877, + 167.308, + 165.031, + 185.031, + 185.917, + 189.623, + 146.252, + 161.636, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.96, + 72.767, + 116.121, + 176.394, + 172.396, + 184.428, + 165.686, + 156.631, + 160.659, + 175.242, + 172.131, + 181.361, + 140.412, + 161.636, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.109, + 72.07, + 111.461, + 164.305, + 154.601, + 147.963, + 144.332, + 143.869, + 171.746, + 164.645, + 183.021, + 188.575, + 146.663, + 161.636, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 53.057, + 71.571, + 110.643, + 163.567, + 154.306, + 147.94, + 144.94, + 145.46, + 148.622, + 154.816, + 163.386, + 175.6, + 140.412, + 161.636, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 51.574, + 53.574, + 75.731, + 116.002, + 154.853, + 148.202, + 145.769, + 146.85, + 150.477, + 156.657, + 164.742, + 175.827, + 122.947, + 108.911, + 115.771, + 80.478, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.036, + 4.963, + 41.295, + 28.42, + 72.359, + 66.554, + 99.875, + 100.785, + 103.428, + 108.643, + 116.592, + 92.853, + 69.929, + 21.597, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.916, + 71.63, + 112.088, + 166.424, + 157.601, + 151.131, + 147.522, + 146.849, + 149.205, + 155.138, + 164.126, + 174.958, + 140.049, + 158.337, + 150.979, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.887, + 71.811, + 110.97, + 164.128, + 155.322, + 149.486, + 147.335, + 151.452, + 157.945, + 167.123, + 176.737, + 187.997, + 145.911, + 158.601, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.335, + 71.383, + 111.143, + 165.001, + 156.585, + 151.018, + 148.904, + 149.878, + 153.529, + 160.854, + 168.692, + 180.198, + 140.933, + 158.244, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.196, + 71.442, + 111.524, + 165.582, + 157.181, + 151.423, + 149.134, + 149.479, + 152.67, + 157.597, + 165.6, + 176.741, + 140.528, + 158.21, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.976, + 71.235, + 112.004, + 167.061, + 159.078, + 152.754, + 149.374, + 148.694, + 151.014, + 156.226, + 164.658, + 176.178, + 140.303, + 158.097, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 47.78, + 53.263, + 75.499, + 117.986, + 160.86, + 153.886, + 153.204, + 145.715, + 148.471, + 162.311, + 167.04, + 177.892, + 123.066, + 104.859, + 115.348, + 79.942, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.071, + 4.002, + 42.759, + 30.446, + 71.895, + 65.943, + 97.695, + 129.579, + 125.788, + 104.804, + 113.794, + 97.601, + 68.71, + 21.476, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.918, + 70.132, + 110.193, + 179.148, + 153.923, + 147.352, + 143.835, + 149.456, + 172.9, + 191.085, + 167.634, + 180.842, + 139.254, + 157.832, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.107, + 70.42, + 109.543, + 163.007, + 165.839, + 147.924, + 145.207, + 145.499, + 162.662, + 162.499, + 163.925, + 175.853, + 140.104, + 158.058, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.866, + 70.466, + 111.18, + 165.786, + 157.213, + 151.096, + 147.544, + 147.083, + 150.214, + 158.332, + 166.995, + 178.858, + 142.529, + 158.04, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.462, + 69.76, + 110.626, + 164.891, + 155.928, + 149.27, + 149.769, + 155.384, + 159.799, + 165.839, + 174.992, + 186.619, + 145.835, + 158.705, + 150.792, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.42, + 69.932, + 110.388, + 164.646, + 155.708, + 151.027, + 157.936, + 162.313, + 165.166, + 172.576, + 181.031, + 192.235, + 153.35, + 160.812, + 151.387, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 47.209, + 52.369, + 74.536, + 115.627, + 154.993, + 148.097, + 144.749, + 156.37, + 169.11, + 176.85, + 185.554, + 197.253, + 135.909, + 103.167, + 115.584, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.14, + 3.759, + 37.409, + 24.526, + 68.794, + 63.078, + 95.562, + 95.794, + 99.141, + 105.0, + 113.699, + 90.477, + 67.957, + 17.431, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.321, + 69.794, + 109.141, + 162.897, + 154.062, + 147.952, + 144.683, + 145.99, + 152.851, + 159.06, + 168.186, + 180.571, + 145.879, + 154.85, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 47.876, + 69.327, + 109.365, + 162.981, + 153.644, + 147.237, + 143.95, + 150.042, + 188.112, + 167.634, + 165.493, + 176.433, + 139.6, + 154.132, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 47.878, + 69.459, + 109.877, + 163.897, + 155.065, + 148.977, + 145.59, + 145.42, + 149.664, + 156.37, + 171.74, + 179.224, + 140.514, + 154.318, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.077, + 69.71, + 109.921, + 163.499, + 154.064, + 147.411, + 143.901, + 143.442, + 146.562, + 153.894, + 163.406, + 175.674, + 138.58, + 153.833, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.578, + 70.091, + 109.524, + 163.474, + 155.295, + 150.335, + 148.0, + 148.165, + 150.353, + 155.679, + 163.732, + 175.023, + 138.933, + 153.679, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 47.689, + 52.596, + 74.236, + 115.205, + 155.106, + 149.459, + 146.994, + 147.509, + 150.769, + 156.827, + 164.462, + 175.078, + 121.189, + 100.562, + 115.355, + 80.138, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.077, + 4.153, + 39.98, + 27.984, + 72.488, + 67.353, + 100.76, + 101.737, + 105.162, + 109.312, + 116.134, + 91.698, + 68.225, + 17.142, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 49.236, + 70.695, + 110.988, + 165.856, + 157.369, + 151.239, + 147.85, + 147.27, + 149.678, + 155.135, + 163.414, + 174.924, + 138.978, + 153.634, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 49.128, + 70.5, + 110.406, + 165.369, + 157.581, + 152.356, + 152.726, + 158.125, + 163.725, + 168.959, + 176.36, + 187.069, + 149.775, + 155.864, + 150.811, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.36, + 70.244, + 111.005, + 166.02, + 157.798, + 153.108, + 158.076, + 161.518, + 164.008, + 169.408, + 177.346, + 188.339, + 150.239, + 155.055, + 150.932, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.539, + 70.124, + 114.283, + 164.283, + 155.423, + 158.888, + 146.097, + 146.042, + 148.679, + 156.988, + 168.553, + 179.986, + 141.6, + 153.519, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.247, + 69.742, + 109.402, + 163.348, + 154.392, + 148.152, + 144.894, + 144.622, + 147.147, + 152.871, + 161.572, + 173.504, + 138.083, + 153.111, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 47.007, + 51.815, + 74.183, + 115.181, + 154.4, + 147.897, + 144.808, + 144.568, + 147.399, + 153.201, + 161.777, + 173.772, + 120.463, + 96.658, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 9.55, + 3.493, + 39.64, + 28.128, + 73.064, + 67.105, + 100.283, + 117.586, + 117.761, + 114.88, + 122.532, + 92.083, + 67.581, + 13.035, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 9.857, + 3.906, + 39.494, + 28.554, + 91.25, + 88.656, + 117.532, + 119.294, + 123.783, + 129.044, + 136.368, + 108.656, + 77.664, + 13.175, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.807, + 69.573, + 110.784, + 166.505, + 171.31, + 188.434, + 203.055, + 211.259, + 223.956, + 212.788, + 213.33, + 220.828, + 174.388, + 177.167, + 168.732, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.355, + 69.942, + 111.058, + 194.524, + 195.167, + 195.303, + 194.852, + 196.353, + 199.398, + 203.506, + 209.717, + 216.201, + 172.34, + 175.045, + 166.821, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.378, + 70.03, + 114.891, + 179.225, + 165.074, + 169.157, + 182.089, + 198.953, + 216.126, + 196.38, + 210.922, + 200.569, + 158.987, + 159.226, + 151.862, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.826, + 69.943, + 111.248, + 165.463, + 157.708, + 152.246, + 148.534, + 152.096, + 163.172, + 161.463, + 166.737, + 179.466, + 140.519, + 150.054, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 47.37, + 53.063, + 79.312, + 133.411, + 165.615, + 160.045, + 154.719, + 154.959, + 157.147, + 176.513, + 178.64, + 183.543, + 125.022, + 96.612, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 9.675, + 3.901, + 40.534, + 29.547, + 74.433, + 69.175, + 102.931, + 104.077, + 106.741, + 110.927, + 117.725, + 92.701, + 67.827, + 12.661, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.207, + 70.274, + 111.256, + 166.431, + 158.296, + 152.416, + 149.137, + 148.459, + 150.65, + 155.832, + 163.808, + 174.565, + 138.09, + 148.936, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.416, + 72.931, + 118.831, + 187.201, + 185.179, + 158.996, + 163.752, + 147.752, + 149.51, + 163.461, + 162.882, + 174.45, + 138.049, + 149.662, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.281, + 70.055, + 110.307, + 164.368, + 155.438, + 149.202, + 145.751, + 145.334, + 148.017, + 154.342, + 162.763, + 174.367, + 137.731, + 148.778, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.171, + 69.566, + 108.737, + 162.351, + 152.907, + 146.478, + 143.94, + 147.623, + 153.738, + 161.008, + 169.633, + 181.05, + 145.096, + 149.337, + 150.818, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.411, + 69.606, + 108.562, + 161.74, + 152.497, + 146.299, + 143.764, + 146.24, + 146.669, + 152.447, + 160.989, + 172.655, + 137.027, + 148.272, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 47.138, + 52.126, + 74.221, + 115.54, + 155.638, + 150.343, + 147.785, + 148.194, + 152.881, + 159.676, + 167.064, + 176.991, + 119.984, + 95.346, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 9.857, + 4.067, + 39.664, + 28.067, + 73.028, + 67.867, + 101.012, + 101.228, + 103.409, + 107.924, + 115.3, + 90.384, + 66.719, + 11.908, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.254, + 70.248, + 110.887, + 165.547, + 156.964, + 150.747, + 147.298, + 146.659, + 150.245, + 156.913, + 164.963, + 175.923, + 137.485, + 148.351, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.196, + 69.669, + 110.206, + 163.768, + 156.312, + 150.241, + 145.306, + 144.873, + 149.02, + 157.674, + 166.789, + 177.976, + 139.31, + 148.344, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.844, + 69.755, + 109.853, + 164.093, + 155.396, + 149.232, + 146.053, + 148.664, + 152.762, + 160.483, + 170.942, + 181.637, + 142.469, + 145.542, + 150.853, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.051, + 69.944, + 110.194, + 164.876, + 157.205, + 152.497, + 150.895, + 151.065, + 152.348, + 156.257, + 163.555, + 173.973, + 137.542, + 145.089, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.958, + 70.056, + 110.957, + 166.268, + 157.901, + 151.919, + 149.329, + 152.145, + 157.097, + 164.749, + 173.41, + 183.686, + 147.079, + 151.517, + 151.035, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 46.631, + 52.413, + 75.297, + 116.858, + 156.437, + 156.27, + 161.643, + 169.0, + 173.011, + 178.161, + 186.175, + 196.061, + 134.476, + 94.823, + 115.632, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 9.655, + 4.139, + 39.754, + 28.434, + 73.427, + 68.247, + 103.209, + 106.763, + 112.082, + 119.714, + 126.832, + 92.071, + 66.585, + 8.375, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.912, + 70.045, + 110.641, + 165.266, + 157.399, + 152.67, + 152.304, + 154.249, + 156.022, + 160.279, + 167.505, + 177.667, + 137.957, + 145.34, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.697, + 69.799, + 111.155, + 166.298, + 159.049, + 157.111, + 154.912, + 161.8, + 167.369, + 172.832, + 179.752, + 189.51, + 151.658, + 150.444, + 151.363, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.946, + 70.127, + 111.286, + 166.204, + 158.279, + 153.336, + 156.821, + 161.502, + 164.971, + 169.654, + 176.659, + 186.689, + 149.354, + 148.729, + 151.081, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.016, + 70.268, + 111.012, + 165.785, + 157.439, + 154.936, + 160.515, + 160.874, + 165.981, + 172.836, + 180.096, + 189.833, + 150.144, + 147.403, + 151.184, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.895, + 70.479, + 111.308, + 166.199, + 158.135, + 156.091, + 162.092, + 169.355, + 175.622, + 182.501, + 188.962, + 198.443, + 157.416, + 155.113, + 151.966, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 46.72, + 52.814, + 76.048, + 118.265, + 159.447, + 177.772, + 181.865, + 178.622, + 181.893, + 188.573, + 198.425, + 207.304, + 138.349, + 95.602, + 115.77, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 9.833, + 4.897, + 42.754, + 32.542, + 75.019, + 69.329, + 102.142, + 102.063, + 112.1, + 117.304, + 125.724, + 98.942, + 67.588, + 8.531, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.89, + 70.469, + 113.069, + 168.603, + 160.472, + 152.098, + 157.445, + 165.079, + 171.665, + 178.872, + 186.056, + 195.107, + 151.113, + 147.66, + 151.328, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.977, + 70.705, + 112.423, + 168.259, + 160.355, + 155.061, + 162.208, + 168.238, + 170.44, + 188.764, + 197.997, + 191.53, + 149.904, + 146.26, + 151.007, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.037, + 70.634, + 112.268, + 167.295, + 159.273, + 154.655, + 157.206, + 163.222, + 168.737, + 173.57, + 180.679, + 189.966, + 148.748, + 146.699, + 151.256, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 48.088, + 70.394, + 111.076, + 176.624, + 183.643, + 186.694, + 189.842, + 196.016, + 200.152, + 203.51, + 207.788, + 214.54, + 170.323, + 170.188, + 168.609, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 26.254, + 47.676, + 70.239, + 110.601, + 176.662, + 178.15, + 179.491, + 182.177, + 187.381, + 196.081, + 204.651, + 210.219, + 215.182, + 171.631, + 168.007, + 165.669, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 46.841, + 53.034, + 76.049, + 129.24, + 185.486, + 191.682, + 194.347, + 197.993, + 201.388, + 207.437, + 214.505, + 219.447, + 150.179, + 108.889, + 120.306, + 80.07, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.306, + 5.135, + 40.024, + 28.42, + 73.453, + 68.385, + 100.647, + 99.953, + 101.934, + 106.527, + 114.024, + 89.134, + 65.728, + 7.889, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.454, + 70.903, + 110.79, + 164.898, + 156.423, + 150.663, + 147.307, + 148.469, + 153.079, + 163.106, + 173.205, + 183.666, + 147.266, + 154.545, + 154.363, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.421, + 70.846, + 110.937, + 165.473, + 164.535, + 172.316, + 173.353, + 177.353, + 182.877, + 190.921, + 197.682, + 206.066, + 163.787, + 162.293, + 160.19, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.347, + 5.213, + 40.821, + 30.217, + 76.609, + 71.206, + 111.445, + 102.52, + 105.883, + 110.285, + 117.426, + 91.033, + 66.754, + 8.566, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 47.91, + 70.921, + 113.021, + 168.412, + 160.614, + 155.02, + 154.343, + 159.69, + 169.345, + 171.511, + 178.667, + 188.405, + 150.57, + 153.845, + 151.861, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 47.479, + 70.113, + 113.284, + 168.685, + 160.775, + 155.012, + 151.572, + 157.595, + 163.096, + 165.009, + 172.777, + 182.753, + 145.352, + 152.524, + 152.202, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 46.735, + 53.311, + 77.026, + 118.792, + 158.559, + 152.368, + 156.043, + 173.604, + 187.521, + 194.225, + 200.864, + 209.615, + 142.091, + 101.614, + 116.392, + 79.977, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.284, + 5.545, + 41.188, + 29.392, + 73.821, + 67.644, + 102.663, + 106.122, + 118.53, + 133.992, + 143.209, + 115.959, + 81.374, + 8.071, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.078, + 71.146, + 114.675, + 198.892, + 195.967, + 195.412, + 198.035, + 202.742, + 208.831, + 215.959, + 220.228, + 224.698, + 177.927, + 174.422, + 171.21, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 47.935, + 72.155, + 120.238, + 213.394, + 207.087, + 215.868, + 222.404, + 222.56, + 226.696, + 246.636, + 240.796, + 242.567, + 195.601, + 187.715, + 179.807, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 47.79, + 70.65, + 116.234, + 201.795, + 204.23, + 206.278, + 205.022, + 206.164, + 208.87, + 213.439, + 216.912, + 221.301, + 177.252, + 175.091, + 171.283, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.302, + 71.333, + 111.85, + 181.117, + 193.92, + 201.77, + 204.286, + 207.547, + 211.585, + 213.723, + 216.066, + 219.608, + 175.039, + 171.694, + 167.839, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.386, + 71.594, + 112.046, + 166.652, + 163.882, + 172.598, + 180.073, + 182.757, + 186.626, + 192.132, + 198.564, + 206.901, + 164.705, + 163.14, + 157.499, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 47.691, + 54.922, + 80.285, + 125.784, + 168.727, + 188.367, + 195.859, + 202.49, + 199.3, + 193.697, + 200.055, + 207.97, + 144.334, + 105.702, + 117.925, + 79.99, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 10.828, + 6.041, + 42.707, + 31.806, + 76.843, + 70.742, + 107.994, + 120.919, + 128.488, + 136.03, + 143.958, + 110.37, + 74.915, + 8.875, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.31, + 71.827, + 113.161, + 167.714, + 159.258, + 159.942, + 167.498, + 175.197, + 181.897, + 190.391, + 196.271, + 204.682, + 163.608, + 163.216, + 159.964, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.437, + 71.768, + 112.418, + 166.657, + 165.981, + 172.32, + 174.723, + 178.891, + 184.739, + 192.746, + 201.318, + 210.817, + 167.725, + 166.819, + 165.776, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.474, + 71.793, + 112.281, + 166.35, + 157.651, + 151.491, + 153.568, + 160.289, + 163.883, + 170.067, + 179.297, + 189.762, + 153.518, + 162.475, + 156.431, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 29.681, + 48.516, + 71.905, + 112.538, + 166.695, + 158.005, + 155.621, + 161.882, + 171.856, + 182.136, + 190.453, + 198.107, + 207.482, + 168.334, + 172.469, + 167.43, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.518, + 71.98, + 112.407, + 169.503, + 187.031, + 198.831, + 201.658, + 205.091, + 208.856, + 215.799, + 218.906, + 223.33, + 177.023, + 176.435, + 170.69, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 47.245, + 54.167, + 77.403, + 118.808, + 168.935, + 183.961, + 190.667, + 192.172, + 192.81, + 201.004, + 209.221, + 215.31, + 147.625, + 113.122, + 122.218, + 80.188, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.435, + 6.245, + 42.719, + 31.646, + 76.896, + 75.947, + 122.26, + 126.856, + 129.303, + 135.434, + 144.113, + 114.849, + 80.172, + 14.232, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.275, + 76.965, + 126.544, + 193.964, + 210.719, + 197.121, + 205.81, + 209.546, + 252.576, + 250.704, + 245.357, + 244.506, + 178.429, + 178.88, + 171.613, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.442, + 72.049, + 113.942, + 188.502, + 201.399, + 207.023, + 207.474, + 208.912, + 213.059, + 224.087, + 223.396, + 222.497, + 174.338, + 177.107, + 171.492, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.574, + 72.317, + 113.398, + 167.735, + 164.377, + 172.591, + 177.601, + 184.53, + 191.498, + 197.978, + 205.941, + 216.529, + 175.461, + 177.292, + 172.16, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.58, + 72.319, + 113.386, + 169.527, + 178.145, + 192.111, + 194.356, + 198.364, + 202.528, + 206.235, + 213.41, + 220.411, + 175.128, + 177.635, + 171.138, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.544, + 72.3, + 113.751, + 168.347, + 163.838, + 176.401, + 183.93, + 187.713, + 191.253, + 196.671, + 203.639, + 212.151, + 168.217, + 170.935, + 166.763, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 47.306, + 54.481, + 78.151, + 119.872, + 163.089, + 164.257, + 165.113, + 168.783, + 174.332, + 182.029, + 191.379, + 202.034, + 143.237, + 113.881, + 130.113, + 85.304, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.667, + 6.554, + 42.723, + 34.16, + 103.803, + 109.806, + 145.358, + 145.396, + 148.682, + 153.929, + 162.286, + 128.832, + 92.584, + 13.08, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.63, + 72.286, + 113.622, + 168.585, + 176.883, + 189.662, + 196.213, + 201.545, + 205.417, + 212.604, + 217.128, + 221.586, + 175.073, + 177.229, + 170.841, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.676, + 72.288, + 113.894, + 170.414, + 171.755, + 181.283, + 189.567, + 196.991, + 204.474, + 212.316, + 218.339, + 223.515, + 177.036, + 177.374, + 169.942, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 49.275, + 74.0, + 129.738, + 195.526, + 196.127, + 204.842, + 204.626, + 204.16, + 203.741, + 208.906, + 213.913, + 217.486, + 170.798, + 174.066, + 166.738, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 48.697, + 72.235, + 113.953, + 178.859, + 193.809, + 197.705, + 197.201, + 200.555, + 201.663, + 203.546, + 208.58, + 215.782, + 172.309, + 174.623, + 167.161, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.226, + 72.529, + 113.568, + 172.25, + 177.761, + 181.859, + 185.333, + 189.847, + 195.404, + 201.982, + 206.012, + 208.604, + 161.823, + 167.062, + 153.667, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 50.998, + 54.53, + 78.41, + 120.118, + 169.125, + 176.206, + 181.406, + 185.881, + 199.248, + 194.538, + 202.474, + 210.75, + 143.03, + 109.278, + 116.308, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.275, + 5.889, + 42.873, + 31.359, + 75.585, + 69.075, + 100.688, + 99.703, + 101.981, + 106.908, + 114.997, + 90.184, + 67.457, + 17.116, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.472, + 72.331, + 112.58, + 165.795, + 156.453, + 149.599, + 147.185, + 154.302, + 158.742, + 164.773, + 173.314, + 184.196, + 147.902, + 155.146, + 150.988, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.378, + 72.557, + 112.816, + 183.329, + 191.612, + 197.51, + 202.761, + 212.755, + 219.11, + 219.066, + 222.058, + 228.703, + 184.893, + 191.117, + 181.044, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.38, + 72.538, + 125.266, + 214.433, + 225.6, + 229.346, + 230.492, + 235.955, + 236.869, + 242.541, + 247.348, + 253.376, + 197.303, + 192.459, + 178.575, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.416, + 72.638, + 131.175, + 218.073, + 215.585, + 217.355, + 222.816, + 226.808, + 227.396, + 229.979, + 232.705, + 234.044, + 183.192, + 183.716, + 169.919, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.451, + 72.695, + 113.057, + 166.922, + 162.344, + 167.777, + 170.074, + 173.653, + 178.795, + 186.463, + 193.233, + 202.222, + 159.194, + 164.895, + 153.521, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 51.179, + 54.964, + 77.786, + 122.918, + 188.844, + 198.641, + 203.256, + 204.018, + 207.52, + 215.016, + 223.818, + 227.63, + 156.3, + 123.708, + 130.631, + 83.16, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.49, + 7.053, + 44.335, + 48.898, + 110.919, + 110.258, + 147.965, + 153.12, + 157.445, + 163.662, + 172.527, + 133.919, + 95.783, + 17.621, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.45, + 72.879, + 118.902, + 202.839, + 208.481, + 211.599, + 214.598, + 219.513, + 222.489, + 227.176, + 234.607, + 237.829, + 187.642, + 192.091, + 176.892, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.482, + 72.939, + 116.666, + 201.999, + 207.842, + 221.123, + 218.097, + 221.73, + 233.53, + 238.16, + 230.208, + 228.106, + 175.426, + 180.15, + 165.451, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.524, + 72.597, + 115.79, + 199.444, + 203.255, + 206.495, + 213.339, + 218.809, + 219.621, + 225.23, + 233.323, + 238.839, + 190.705, + 196.604, + 180.49, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 52.549, + 72.656, + 118.189, + 200.486, + 211.201, + 219.439, + 222.482, + 224.468, + 225.995, + 230.421, + 237.109, + 241.942, + 195.92, + 202.534, + 185.334, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 55.917, + 72.753, + 117.74, + 200.853, + 207.633, + 213.281, + 215.369, + 217.76, + 221.007, + 229.108, + 230.23, + 235.229, + 187.965, + 192.713, + 176.597, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 54.687, + 55.24, + 78.752, + 120.022, + 159.935, + 161.369, + 166.507, + 171.165, + 175.71, + 183.474, + 191.938, + 200.949, + 137.093, + 108.082, + 116.021, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 17.922, + 6.976, + 42.766, + 30.452, + 78.092, + 67.95, + 107.556, + 114.88, + 124.426, + 131.497, + 139.208, + 104.826, + 70.206, + 21.597, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 55.946, + 72.91, + 113.26, + 166.972, + 158.106, + 155.036, + 169.02, + 179.789, + 183.733, + 188.384, + 195.821, + 202.81, + 156.09, + 164.213, + 152.035, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 55.986, + 73.003, + 113.742, + 167.549, + 160.994, + 162.993, + 165.387, + 173.138, + 185.718, + 198.451, + 204.494, + 211.091, + 165.534, + 174.004, + 158.175, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.02, + 73.093, + 113.856, + 167.58, + 160.271, + 165.668, + 172.734, + 180.483, + 189.777, + 201.894, + 208.173, + 214.856, + 171.031, + 184.129, + 165.084, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.014, + 72.866, + 113.335, + 168.237, + 172.947, + 179.939, + 187.982, + 195.851, + 197.785, + 202.093, + 208.601, + 216.515, + 172.342, + 184.525, + 168.283, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.05, + 72.988, + 113.782, + 188.303, + 193.598, + 201.477, + 205.891, + 210.845, + 217.219, + 219.415, + 218.332, + 220.912, + 176.794, + 188.559, + 171.178, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 54.86, + 55.37, + 79.367, + 129.637, + 193.878, + 204.353, + 205.623, + 207.468, + 215.813, + 219.717, + 226.885, + 226.508, + 155.559, + 127.835, + 128.395, + 82.915, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 18.171, + 7.067, + 44.17, + 34.506, + 91.925, + 93.249, + 137.482, + 142.292, + 142.884, + 169.838, + 173.305, + 121.346, + 87.294, + 25.024, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.128, + 73.15, + 114.968, + 192.858, + 200.733, + 205.081, + 208.479, + 213.847, + 214.529, + 217.859, + 221.132, + 225.472, + 179.644, + 188.321, + 169.413, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.128, + 73.323, + 114.599, + 172.349, + 179.43, + 186.425, + 189.579, + 193.663, + 196.859, + 201.67, + 207.687, + 216.582, + 174.372, + 184.477, + 165.494, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.128, + 73.323, + 114.764, + 169.774, + 166.772, + 173.766, + 177.22, + 181.223, + 189.237, + 210.173, + 219.035, + 217.642, + 172.595, + 181.391, + 163.898, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.128, + 74.605, + 114.992, + 169.76, + 170.679, + 184.431, + 194.512, + 199.721, + 225.704, + 243.27, + 213.785, + 234.818, + 183.273, + 190.751, + 169.256, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.128, + 73.147, + 115.509, + 178.437, + 186.189, + 190.941, + 194.131, + 198.609, + 201.658, + 210.288, + 215.638, + 218.398, + 174.335, + 182.821, + 156.014, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 58.323, + 55.427, + 78.68, + 120.244, + 159.561, + 162.58, + 174.58, + 184.141, + 197.359, + 205.92, + 212.901, + 219.427, + 147.346, + 120.233, + 117.733, + 80.535, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 7.38, + 43.155, + 31.882, + 77.183, + 72.224, + 123.504, + 169.002, + 181.914, + 181.968, + 152.145, + 120.247, + 85.514, + 28.45, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 7.476, + 43.656, + 31.969, + 76.131, + 70.022, + 106.939, + 112.727, + 145.224, + 148.101, + 158.275, + 111.936, + 73.622, + 28.45, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 73.056, + 114.511, + 168.929, + 160.096, + 155.575, + 160.678, + 174.437, + 183.499, + 188.444, + 195.864, + 206.281, + 165.271, + 177.752, + 153.747, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 73.24, + 114.882, + 169.286, + 164.644, + 175.498, + 180.344, + 189.146, + 197.629, + 205.167, + 230.219, + 220.728, + 178.543, + 188.146, + 167.827, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 73.231, + 114.964, + 173.329, + 180.571, + 194.573, + 200.573, + 203.767, + 212.004, + 216.195, + 220.788, + 227.322, + 183.662, + 197.271, + 177.629, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 73.148, + 115.909, + 196.84, + 205.086, + 208.119, + 209.05, + 214.248, + 220.284, + 225.842, + 229.715, + 236.463, + 192.914, + 206.927, + 182.184, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 58.323, + 55.297, + 78.222, + 142.04, + 206.101, + 211.766, + 213.835, + 217.086, + 219.835, + 222.592, + 227.123, + 234.9, + 166.626, + 144.942, + 140.346, + 98.048, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 7.109, + 42.702, + 39.969, + 105.773, + 115.363, + 157.163, + 159.991, + 165.488, + 168.973, + 170.883, + 136.191, + 98.211, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 72.973, + 113.988, + 178.889, + 196.421, + 206.115, + 204.945, + 204.981, + 208.238, + 214.433, + 221.312, + 227.014, + 179.239, + 195.399, + 173.321, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 73.165, + 114.022, + 168.384, + 171.359, + 181.655, + 191.488, + 199.235, + 203.408, + 208.896, + 216.126, + 224.077, + 179.208, + 194.855, + 170.567, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 73.2, + 114.441, + 168.924, + 171.3, + 178.538, + 182.588, + 191.381, + 200.612, + 207.887, + 212.811, + 219.512, + 175.538, + 190.137, + 165.915, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 73.148, + 114.807, + 168.924, + 160.009, + 171.956, + 191.068, + 196.121, + 198.626, + 203.84, + 210.058, + 217.098, + 169.846, + 184.899, + 163.563, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.554, + 72.976, + 115.349, + 169.731, + 164.867, + 166.983, + 165.621, + 165.982, + 173.121, + 185.393, + 196.214, + 206.584, + 172.032, + 185.488, + 163.359, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 61.75, + 55.051, + 77.756, + 117.398, + 155.253, + 152.759, + 153.025, + 155.969, + 161.462, + 169.832, + 180.524, + 193.713, + 144.077, + 121.546, + 116.464, + 80.045, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 7.024, + 41.683, + 28.056, + 70.864, + 71.12, + 119.681, + 129.453, + 136.485, + 142.556, + 150.969, + 116.431, + 84.87, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 72.813, + 112.855, + 165.405, + 156.196, + 155.528, + 156.055, + 158.537, + 163.201, + 170.275, + 179.679, + 192.25, + 160.94, + 176.411, + 152.162, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 72.938, + 113.481, + 166.875, + 157.675, + 151.799, + 151.184, + 161.891, + 169.714, + 176.11, + 184.984, + 196.807, + 164.66, + 180.033, + 153.998, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 73.014, + 114.382, + 167.633, + 157.678, + 150.758, + 147.296, + 147.017, + 150.196, + 157.669, + 171.719, + 187.327, + 156.208, + 169.819, + 151.179, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.026, + 72.905, + 113.333, + 166.207, + 156.707, + 152.473, + 157.594, + 165.929, + 172.812, + 178.947, + 187.822, + 199.877, + 165.419, + 176.769, + 152.636, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.025, + 73.049, + 114.018, + 167.548, + 157.922, + 158.919, + 169.372, + 174.469, + 179.806, + 187.526, + 197.285, + 208.971, + 175.641, + 184.169, + 160.818, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 61.75, + 55.331, + 79.64, + 123.344, + 177.575, + 182.283, + 190.459, + 198.841, + 205.661, + 212.949, + 222.913, + 233.302, + 170.254, + 138.143, + 133.964, + 88.935, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 7.139, + 42.295, + 35.999, + 102.182, + 114.174, + 156.939, + 160.337, + 172.008, + 179.11, + 184.31, + 159.057, + 119.965, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 72.919, + 127.087, + 211.671, + 226.123, + 246.379, + 246.466, + 242.8, + 244.101, + 247.915, + 248.872, + 249.31, + 204.442, + 208.069, + 185.641, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 72.982, + 123.293, + 207.163, + 210.261, + 215.724, + 227.436, + 235.624, + 236.385, + 244.05, + 248.984, + 249.607, + 205.033, + 209.182, + 186.043, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 73.194, + 114.655, + 168.479, + 161.132, + 170.957, + 173.901, + 179.86, + 186.15, + 192.197, + 201.642, + 211.882, + 175.026, + 181.45, + 155.446, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 72.99, + 114.052, + 167.608, + 161.073, + 171.908, + 175.205, + 178.051, + 182.167, + 187.952, + 195.762, + 206.601, + 172.559, + 178.093, + 154.003, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 62.98, + 73.812, + 116.017, + 172.924, + 158.194, + 164.576, + 180.857, + 184.465, + 195.657, + 209.228, + 193.341, + 204.72, + 173.852, + 179.378, + 154.294, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 61.75, + 55.571, + 79.553, + 120.855, + 160.103, + 157.324, + 155.608, + 165.767, + 177.435, + 187.498, + 195.948, + 207.546, + 150.55, + 116.098, + 115.358, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 7.524, + 44.044, + 31.807, + 79.62, + 73.11, + 110.069, + 124.62, + 118.668, + 130.767, + 129.793, + 109.554, + 87.355, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.636, + 73.473, + 115.157, + 169.505, + 160.525, + 169.031, + 181.285, + 192.173, + 198.488, + 201.825, + 205.525, + 211.204, + 175.316, + 176.551, + 154.233, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 74.814, + 116.593, + 169.253, + 159.98, + 153.764, + 151.594, + 153.79, + 156.969, + 163.556, + 173.228, + 186.715, + 159.809, + 169.604, + 151.465, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.577, + 73.438, + 115.087, + 168.561, + 159.627, + 159.87, + 163.503, + 166.056, + 169.576, + 176.131, + 185.966, + 199.139, + 171.202, + 173.369, + 153.622, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.452, + 73.44, + 114.73, + 167.709, + 161.244, + 161.924, + 168.127, + 177.655, + 183.469, + 201.472, + 210.378, + 225.888, + 180.121, + 185.293, + 162.607, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 73.788, + 126.89, + 182.745, + 169.912, + 214.392, + 199.733, + 206.362, + 247.994, + 243.795, + 222.187, + 240.543, + 192.361, + 192.849, + 166.779, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 65.176, + 55.358, + 78.101, + 117.688, + 155.724, + 159.008, + 169.196, + 217.612, + 210.627, + 225.005, + 223.608, + 216.065, + 157.365, + 118.957, + 117.713, + 80.604, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 7.343, + 42.942, + 29.557, + 72.813, + 69.545, + 110.274, + 120.2, + 127.898, + 134.582, + 143.575, + 106.198, + 92.591, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 7.499, + 43.487, + 30.466, + 74.48, + 83.445, + 126.852, + 124.625, + 127.56, + 131.267, + 136.282, + 102.791, + 90.858, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 73.311, + 114.389, + 167.637, + 162.027, + 167.722, + 166.114, + 167.451, + 171.443, + 177.896, + 186.852, + 199.809, + 172.194, + 172.33, + 153.998, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 73.472, + 114.896, + 168.462, + 158.747, + 168.537, + 181.909, + 175.194, + 178.717, + 184.99, + 194.658, + 205.456, + 173.245, + 171.656, + 152.64, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 73.571, + 115.016, + 168.177, + 158.693, + 157.448, + 162.752, + 167.823, + 173.186, + 180.046, + 189.363, + 202.362, + 175.4, + 173.341, + 154.116, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.407, + 73.49, + 114.887, + 168.161, + 158.359, + 153.019, + 151.569, + 153.277, + 158.398, + 165.99, + 176.089, + 190.298, + 164.875, + 171.12, + 152.377, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 68.602, + 55.816, + 79.513, + 120.207, + 159.059, + 153.631, + 151.64, + 155.48, + 167.728, + 174.622, + 183.623, + 196.815, + 148.697, + 115.496, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 7.889, + 44.614, + 32.763, + 82.099, + 75.626, + 104.467, + 109.827, + 115.859, + 114.039, + 127.429, + 103.481, + 94.208, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.951, + 74.058, + 116.757, + 170.638, + 161.011, + 155.155, + 153.596, + 155.851, + 161.527, + 169.765, + 180.169, + 194.674, + 168.085, + 170.085, + 151.897, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.124, + 73.967, + 115.766, + 169.503, + 160.125, + 157.528, + 160.78, + 165.67, + 172.347, + 180.549, + 190.768, + 204.241, + 175.664, + 172.564, + 154.01, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.833, + 73.896, + 115.323, + 168.631, + 160.79, + 157.693, + 155.215, + 165.353, + 179.54, + 186.344, + 193.93, + 203.289, + 170.933, + 171.946, + 153.328, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.833, + 73.884, + 115.159, + 172.74, + 178.39, + 171.874, + 169.835, + 170.918, + 175.565, + 182.524, + 191.957, + 206.358, + 178.777, + 173.309, + 154.675, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.833, + 74.166, + 115.709, + 184.807, + 193.336, + 209.719, + 206.832, + 204.044, + 207.503, + 215.344, + 215.624, + 215.363, + 180.041, + 173.903, + 155.364, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 68.602, + 56.726, + 80.21, + 120.81, + 159.323, + 153.464, + 150.979, + 151.905, + 167.974, + 182.533, + 191.99, + 205.191, + 149.481, + 115.382, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 8.897, + 45.033, + 32.462, + 76.081, + 70.612, + 103.88, + 104.852, + 108.464, + 115.161, + 125.565, + 105.241, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.963, + 74.987, + 115.892, + 169.068, + 159.269, + 153.031, + 150.256, + 151.94, + 170.213, + 182.803, + 192.848, + 204.54, + 172.891, + 168.588, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.01, + 75.05, + 115.899, + 169.118, + 159.555, + 153.566, + 152.019, + 155.95, + 166.053, + 176.044, + 186.256, + 200.551, + 172.22, + 170.275, + 152.008, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.007, + 75.491, + 117.066, + 170.801, + 161.103, + 156.018, + 159.136, + 164.864, + 172.398, + 189.717, + 194.503, + 203.088, + 171.518, + 169.838, + 151.854, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.971, + 79.023, + 117.143, + 170.787, + 160.677, + 154.294, + 151.522, + 153.295, + 158.075, + 166.397, + 178.085, + 192.418, + 169.914, + 169.806, + 151.616, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.385, + 79.329, + 116.835, + 169.656, + 158.963, + 154.37, + 155.325, + 156.109, + 159.938, + 167.359, + 179.31, + 194.968, + 171.497, + 170.531, + 151.882, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 69.127, + 61.482, + 79.955, + 119.583, + 157.464, + 151.048, + 149.675, + 152.524, + 157.133, + 164.472, + 175.721, + 191.678, + 152.707, + 115.704, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 13.145, + 44.686, + 31.326, + 74.165, + 68.591, + 108.674, + 115.396, + 120.393, + 123.746, + 131.462, + 107.75, + 97.638, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.311, + 79.381, + 115.977, + 168.968, + 160.372, + 168.4, + 182.941, + 192.805, + 202.877, + 214.242, + 218.15, + 222.105, + 187.854, + 181.884, + 158.514, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.889, + 79.221, + 116.215, + 169.416, + 166.133, + 179.02, + 190.047, + 200.779, + 215.614, + 204.893, + 207.117, + 209.993, + 181.486, + 173.903, + 153.024, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.899, + 79.318, + 116.521, + 170.092, + 182.333, + 180.287, + 177.043, + 177.028, + 180.659, + 187.354, + 198.45, + 217.499, + 176.705, + 171.378, + 152.881, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 69.929, + 79.516, + 116.812, + 169.869, + 159.138, + 158.089, + 170.357, + 179.274, + 158.609, + 175.442, + 179.859, + 198.376, + 170.482, + 169.389, + 150.876, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.588, + 80.294, + 117.321, + 170.294, + 160.022, + 153.596, + 152.623, + 154.991, + 158.987, + 166.253, + 177.629, + 197.321, + 171.222, + 169.922, + 151.357, + 60.908, + 33.107, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 69.102, + 62.344, + 80.631, + 120.39, + 157.91, + 151.05, + 148.183, + 149.132, + 153.505, + 161.627, + 173.676, + 194.253, + 150.775, + 115.348, + 115.348, + 79.944, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.027, + 46.191, + 32.836, + 75.502, + 68.893, + 101.565, + 102.425, + 106.708, + 114.39, + 126.638, + 111.335, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.584, + 64.301, + 104.676, + 160.441, + 153.852, + 151.043, + 153.379, + 158.901, + 166.785, + 178.262, + 198.058, + 219.223, + 169.857, + 169.179, + 150.796, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.436, + 64.677, + 105.037, + 161.107, + 154.923, + 158.469, + 169.19, + 173.92, + 180.727, + 190.273, + 201.261, + 219.514, + 169.83, + 169.361, + 151.025, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.158, + 64.567, + 105.425, + 161.851, + 156.713, + 161.399, + 167.995, + 171.913, + 178.7, + 189.235, + 206.884, + 220.906, + 170.663, + 169.767, + 151.694, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.434, + 64.773, + 105.614, + 168.139, + 177.792, + 184.884, + 193.325, + 195.873, + 197.33, + 202.254, + 217.451, + 232.774, + 174.978, + 171.446, + 152.94, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.044, + 65.078, + 106.115, + 164.609, + 172.699, + 183.403, + 199.274, + 193.746, + 198.778, + 207.356, + 219.734, + 230.926, + 173.203, + 172.218, + 153.733, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 54.955, + 47.14, + 69.988, + 114.067, + 171.624, + 178.563, + 179.951, + 185.496, + 197.566, + 209.655, + 220.457, + 232.247, + 154.424, + 118.032, + 117.506, + 80.336, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 18.171, + 1.126, + 36.855, + 26.245, + 71.979, + 69.106, + 105.157, + 120.812, + 118.671, + 130.898, + 155.143, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.589, + 66.962, + 115.22, + 163.023, + 155.841, + 152.799, + 153.254, + 157.053, + 164.501, + 176.369, + 199.724, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.765, + 71.875, + 114.983, + 162.855, + 156.256, + 163.298, + 175.289, + 185.234, + 187.897, + 197.414, + 208.75, + 219.624, + 170.533, + 169.439, + 150.941, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 56.956, + 75.75, + 107.062, + 174.233, + 155.454, + 152.206, + 152.518, + 156.567, + 164.352, + 176.695, + 202.342, + 216.952, + 168.553, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 58.108, + 68.012, + 108.348, + 163.241, + 155.881, + 152.876, + 153.218, + 157.062, + 165.093, + 177.136, + 200.67, + 217.18, + 168.997, + 168.978, + 151.285, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 61.214, + 65.539, + 104.508, + 159.231, + 152.089, + 149.153, + 150.059, + 154.288, + 162.27, + 175.184, + 199.907, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 59.146, + 47.975, + 70.346, + 112.929, + 154.091, + 151.219, + 152.494, + 157.129, + 164.824, + 180.631, + 203.235, + 217.405, + 151.021, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 6.284, + 43.357, + 24.826, + 80.502, + 75.838, + 125.78, + 131.715, + 140.998, + 131.934, + 154.33, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.25, + 67.466, + 118.033, + 163.521, + 167.844, + 165.801, + 184.743, + 157.617, + 165.732, + 177.979, + 201.686, + 217.258, + 168.778, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.08, + 66.535, + 107.296, + 165.7, + 177.068, + 195.119, + 210.124, + 215.954, + 225.719, + 226.806, + 227.318, + 233.055, + 175.466, + 172.643, + 154.018, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 59.575, + 66.938, + 107.275, + 164.526, + 161.617, + 167.774, + 173.23, + 178.964, + 186.884, + 198.669, + 219.089, + 223.676, + 172.458, + 171.222, + 152.156, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 7.112, + 43.864, + 36.604, + 73.404, + 70.021, + 105.884, + 109.702, + 117.363, + 135.502, + 154.326, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.472, + 67.44, + 106.678, + 161.525, + 154.082, + 150.772, + 152.068, + 156.966, + 165.036, + 177.295, + 203.332, + 216.75, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 58.961, + 55.612, + 71.876, + 114.145, + 155.454, + 152.076, + 152.432, + 156.255, + 163.915, + 176.251, + 200.733, + 216.707, + 150.775, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 21.597, + 7.18, + 36.286, + 26.359, + 73.203, + 69.745, + 105.413, + 109.296, + 117.117, + 128.849, + 152.629, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 60.177, + 72.777, + 107.648, + 163.682, + 159.525, + 165.24, + 176.005, + 183.409, + 192.086, + 202.479, + 220.5, + 229.509, + 173.341, + 171.073, + 151.715, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.859, + 74.006, + 116.644, + 173.474, + 164.016, + 164.884, + 167.317, + 162.232, + 168.463, + 179.615, + 202.555, + 217.569, + 168.598, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.403, + 74.025, + 116.107, + 164.711, + 157.273, + 154.852, + 157.95, + 162.164, + 169.752, + 181.239, + 204.633, + 219.182, + 169.432, + 168.57, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.31, + 69.226, + 108.665, + 164.135, + 157.178, + 155.878, + 157.088, + 160.726, + 168.558, + 191.661, + 205.765, + 217.926, + 168.863, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.044, + 76.601, + 121.748, + 182.939, + 195.415, + 191.897, + 194.567, + 194.159, + 190.506, + 192.468, + 201.181, + 216.707, + 168.489, + 168.489, + 150.799, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 63.269, + 53.001, + 74.975, + 123.022, + 165.048, + 166.006, + 163.443, + 173.031, + 186.974, + 194.905, + 203.002, + 216.707, + 150.787, + 115.523, + 115.624, + 80.35, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 25.024, + 9.015, + 55.727, + 55.701, + 105.591, + 89.422, + 125.451, + 120.307, + 126.877, + 131.523, + 155.151, + 133.933, + 98.635, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 65.086, + 71.285, + 130.78, + 164.357, + 175.279, + 170.012, + 167.114, + 182.61, + 195.823, + 177.247, + 202.714, + 216.707, + 168.489, + 168.489, + 150.798, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.307, + 70.275, + 108.39, + 162.902, + 155.847, + 158.272, + 162.649, + 161.3, + 168.235, + 180.01, + 207.629, + 217.122, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.609, + 69.832, + 109.187, + 164.573, + 157.372, + 153.862, + 162.836, + 157.935, + 175.603, + 182.94, + 205.458, + 217.225, + 168.988, + 168.64, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 63.636, + 70.417, + 109.167, + 164.125, + 156.819, + 153.13, + 153.453, + 169.35, + 165.176, + 177.268, + 204.727, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 64.106, + 70.663, + 108.764, + 163.599, + 155.793, + 152.875, + 153.886, + 157.735, + 165.731, + 178.399, + 206.17, + 217.903, + 169.328, + 168.531, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 66.204, + 53.24, + 73.211, + 115.087, + 159.027, + 157.72, + 152.786, + 164.098, + 164.493, + 176.443, + 204.47, + 216.707, + 150.775, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 4.912, + 38.943, + 27.831, + 73.268, + 69.079, + 104.111, + 133.532, + 138.175, + 128.727, + 156.533, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.347, + 33.392, + 33.37, + 68.291, + 72.357, + 110.191, + 171.434, + 174.028, + 153.287, + 194.459, + 183.226, + 191.418, + 186.993, + 201.795, + 216.707, + 168.501, + 168.921, + 151.62, + 60.908, + 33.107, + 33.107, + 33.107, + 33.25, + 33.265, + 33.803, + 34.096, + 34.422, + 68.957, + 72.437, + 109.763, + 163.779, + 155.856, + 151.692, + 151.821, + 155.886, + 163.907, + 176.143, + 200.966, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.314, + 33.582, + 34.004, + 34.072, + 34.376, + 68.876, + 72.167, + 109.312, + 163.83, + 155.894, + 152.02, + 152.28, + 156.085, + 164.029, + 176.185, + 200.797, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.402, + 33.526, + 33.539, + 33.8, + 34.142, + 68.678, + 72.253, + 119.539, + 165.187, + 158.059, + 154.989, + 154.734, + 158.011, + 165.257, + 176.935, + 200.983, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.216, + 33.336, + 68.178, + 72.662, + 118.642, + 165.003, + 167.744, + 166.887, + 168.483, + 191.573, + 173.493, + 176.797, + 202.739, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 66.533, + 54.517, + 74.17, + 115.761, + 155.686, + 151.849, + 152.819, + 156.4, + 164.266, + 176.583, + 201.504, + 217.299, + 150.775, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 28.45, + 5.658, + 38.785, + 27.737, + 74.553, + 74.638, + 116.605, + 117.19, + 125.509, + 139.665, + 159.595, + 134.408, + 98.117, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.493, + 73.258, + 125.774, + 165.833, + 170.874, + 187.959, + 188.437, + 197.794, + 191.635, + 196.546, + 213.49, + 220.746, + 171.488, + 170.531, + 152.061, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 67.138, + 71.901, + 109.866, + 165.756, + 171.272, + 186.722, + 190.229, + 191.209, + 193.355, + 201.395, + 219.809, + 229.639, + 175.028, + 173.267, + 154.606, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.557, + 72.083, + 110.514, + 166.906, + 174.129, + 187.99, + 199.455, + 202.476, + 202.043, + 208.102, + 218.298, + 221.588, + 171.722, + 170.467, + 151.877, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.762, + 75.106, + 120.071, + 180.878, + 177.524, + 184.781, + 192.607, + 181.097, + 187.948, + 196.599, + 211.973, + 220.959, + 171.645, + 170.803, + 152.122, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 66.962, + 72.694, + 111.628, + 166.551, + 163.66, + 175.173, + 163.974, + 167.29, + 174.632, + 186.668, + 207.099, + 219.978, + 170.186, + 169.241, + 150.879, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 66.192, + 55.346, + 75.752, + 117.8, + 158.57, + 155.448, + 155.487, + 176.063, + 172.183, + 191.209, + 204.421, + 217.67, + 150.775, + 115.348, + 115.348, + 79.921, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 6.968, + 41.204, + 29.277, + 74.683, + 72.043, + 108.267, + 109.805, + 119.841, + 127.995, + 153.956, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.776, + 73.466, + 110.204, + 164.265, + 156.632, + 165.605, + 190.777, + 190.786, + 187.055, + 195.703, + 204.975, + 217.83, + 169.216, + 168.544, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 6.662, + 39.686, + 27.856, + 74.279, + 81.972, + 127.72, + 132.247, + 135.934, + 139.221, + 154.408, + 133.08, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.91, + 73.596, + 111.669, + 166.187, + 166.785, + 163.716, + 165.644, + 170.544, + 176.704, + 186.874, + 202.592, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.064, + 76.832, + 123.881, + 186.661, + 177.166, + 166.818, + 161.928, + 172.269, + 183.154, + 175.787, + 201.863, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 71.135, + 77.314, + 117.814, + 174.147, + 177.031, + 186.641, + 187.308, + 193.583, + 190.094, + 190.776, + 202.773, + 216.707, + 168.489, + 168.489, + 150.775, + 60.908, + 33.107, + 33.107, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 69.848, + 59.158, + 94.666, + 138.502, + 191.162, + 188.689, + 193.222, + 190.052, + 175.279, + 193.106, + 199.634, + 216.707, + 150.775, + 115.348, + 115.415, + 80.182, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 7.862, + 57.795, + 46.999, + 109.352, + 103.321, + 138.588, + 139.969, + 142.297, + 142.575, + 154.484, + 133.062, + 97.634, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 33.107, + 70.664, + 74.062, + 113.101, + 167.27, + 158.466, + 154.015, + 164.276, + 168.254, + 163.32, + 180.964, + 197.491, + 216.707, + 168.489, + 168.489, + 150.791, + 60.908, + 33.107, + 33.107 + ], + "lifecycle_emissions_tonnes_SO2_bau": 0.62, + "distance_to_emissions_region_meters": 0.0, + "annual_emissions_tonnes_NOx_bau": 0.13, + "annual_emissions_tonnes_CO2": 392.46, + "lifecycle_emissions_tonnes_CO2": 8445.72 + }, + "ElectricTariff": { + "lifecycle_demand_cost_after_tax_bau": 0.0, + "year_one_energy_cost_before_tax": 204839.32, + "lifecycle_fixed_cost_after_tax_bau": 0.0, + "year_one_min_charge_adder_before_tax": 0.0, + "lifecycle_export_benefit_after_tax_bau": -0.0, + "year_one_export_benefit_before_tax_bau": -0.0, + "lifecycle_demand_cost_after_tax": 0.0, + "lifecycle_export_benefit_after_tax": -0.0, + "year_one_demand_cost_before_tax_bau": 0.0, + "year_one_bill_before_tax_bau": 235258.65, + "lifecycle_energy_cost_after_tax_bau": 2.25428694e6, + "lifecycle_min_charge_adder_after_tax_bau": 0.0, + "year_one_export_benefit_before_tax": -0.0, + "year_one_bill_before_tax": 204839.32, + "year_one_energy_cost_before_tax_bau": 235258.65, + "lifecycle_min_charge_adder_after_tax": 0.0, + "year_one_fixed_cost_before_tax": 0.0, + "lifecycle_coincident_peak_cost_after_tax": 0.0, + "year_one_demand_cost_before_tax": 0.0, + "lifecycle_fixed_cost_after_tax": 0.0, + "year_one_min_charge_adder_before_tax_bau": 0.0, + "year_one_coincident_peak_cost_before_tax_bau": 0.0, + "lifecycle_coincident_peak_cost_after_tax_bau": 0.0, + "lifecycle_energy_cost_after_tax": 1.96280396e6, + "year_one_coincident_peak_cost_before_tax": 0.0, + "year_one_fixed_cost_before_tax_bau": 0.0 + }, + "ElectricLoad": { + "load_series_kw": [ + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 32.1651558934, + 32.3881481528, + 32.7585418392, + 32.7247305327, + 11.631968239999999, + 60.890888507, + 59.896175282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 151.35747656499998, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.8692608705, + 78.28920324699999, + 130.500685081, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 216.706946524, + 168.489065812, + 168.491911227, + 150.85171541, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.5474906692, + 78.26686025209999, + 131.05008718500002, + 196.489404114, + 196.17454278, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 216.706946524, + 168.517535318, + 168.721294419, + 151.09283434, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.6578533614, + 78.3050777224, + 130.877471161, + 196.153381979, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.4065050174, + 78.2664819707, + 131.46352154800002, + 197.254662643, + 197.160753117, + 197.043498337, + 197.044937423, + 197.072864309, + 197.073442684, + 196.775958587, + 200.051890453, + 217.360114968, + 169.264710745, + 169.393233922, + 151.75045889499998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 32.1323934869, + 32.880291975, + 32.8406835913, + 33.0638860086, + 71.1972270942, + 61.6177173172, + 95.99359452760001, + 148.080553475, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 216.706946524, + 150.775396235, + 115.34805707999999, + 115.36839556599999, + 80.2129371411, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 32.0314953702, + 32.061228484, + 32.1144179076, + 11.394463582, + 60.090767321899996, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 151.35747656499998, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.586747502, + 78.2986747341, + 130.899023297, + 196.16425036799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.6172383343, + 78.03440939240001, + 130.343657661, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.2988329368, + 77.8893119707, + 130.28899307, + 196.14903942799998, + 196.164496099, + 196.82837796799998, + 197.430362685, + 197.35320629, + 197.362004999, + 197.363378166, + 200.45341295499998, + 216.75762088200003, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.1700965213, + 78.0193159306, + 130.66143588399999, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.1449318269, + 77.7601428015, + 130.247500205, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 69.8722327627, + 60.0085199322, + 94.8336175778, + 147.931158716, + 196.14903942799998, + 196.968173234, + 199.793361312, + 203.700022938, + 206.165263021, + 202.355519228, + 199.60268809500002, + 217.960109224, + 150.775396235, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.649874269, + 116.15815995700001, + 152.82162664700002, + 152.512297012, + 152.51120991099998, + 152.186941767, + 149.98047352, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 60.1736496061, + 59.3807093051, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 133.061726657, + 97.6558853336, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 72.0552251792, + 78.40006082000001, + 130.505530501, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 216.706946524, + 168.489065812, + 168.489065812, + 150.784832476, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 72.1128977055, + 78.68464310530001, + 131.441398795, + 197.11892923, + 197.118411478, + 196.66252146, + 196.575429753, + 196.619474239, + 196.723018727, + 196.745728506, + 196.856785065, + 217.647917183, + 169.580816349, + 169.609419563, + 151.81423075200001, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.1484538693, + 33.1579791685, + 33.2161229216, + 72.404215929, + 78.576089041, + 130.520758032, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.3500988695, + 77.7997703793, + 130.24902361899998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.9421555958, + 32.2035600905, + 32.2652049286, + 32.304003877599996, + 70.6306158834, + 60.5720361275, + 95.145194353, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 216.706946524, + 150.775396235, + 115.34805707999999, + 115.34805707999999, + 79.9691018546, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 32.1861644729, + 32.411915279999995, + 32.5718722321, + 32.830846147500004, + 11.862927628, + 60.3458659042, + 59.3763606699, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.244252711899996, + 33.107087900699995, + 71.7314978994, + 78.2629102537, + 130.4392594, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.2520486233, + 33.273657609000004, + 71.6231581158, + 78.0930433037, + 130.405503491, + 196.14903942799998, + 196.14903942799998, + 196.203690973, + 196.465865361, + 196.450117514, + 196.46148162699998, + 196.45448933, + 196.441068226, + 216.721073515, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.5362609355, + 77.703662855, + 130.21748913800002, + 196.14903942799998, + 198.205401826, + 200.98691344399998, + 200.638048615, + 209.922277516, + 217.42475023, + 214.442492111, + 204.885303761, + 216.413796675, + 170.606738842, + 170.494808514, + 152.783232233, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.0071306369, + 77.276646023, + 130.21748913800002, + 196.14903942799998, + 198.06841146699998, + 211.988908794, + 224.25545541900001, + 231.092049931, + 235.619532999, + 236.631583137, + 229.23189379299998, + 235.345027798, + 180.246863585, + 171.697026845, + 152.828674428, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.5248898027, + 77.0870656164, + 130.21748913800002, + 196.25679578799998, + 203.953713533, + 218.61405435600003, + 231.595841622, + 241.11680897500003, + 240.36462524, + 228.049204196, + 212.72523596, + 224.624227846, + 179.8832421, + 173.852535803, + 153.12654982, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 65.3926614137, + 59.4355644643, + 94.79014998310001, + 147.931158716, + 196.14903942799998, + 205.886200615, + 224.427636912, + 226.259266228, + 221.12949507, + 212.537610689, + 201.855559118, + 215.368693224, + 151.00139183000002, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 59.5100241079, + 59.3628108282, + 112.55430949800001, + 115.063261661, + 151.47199886299998, + 151.44693642599998, + 151.405754078, + 150.47927928899998, + 149.161321205, + 129.635408808, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.5450257743, + 77.7208237283, + 130.280385737, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 213.280628675, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 68.0150536493, + 78.0793898935, + 130.689903838, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 213.280628675, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 68.1338724794, + 78.1798964587, + 130.835761533, + 196.163213788, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 213.280628675, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.5896753091, + 77.9164500934, + 130.731751386, + 196.235381735, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 213.280628675, + 168.489065812, + 168.489065812, + 150.82903128, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.7296707432, + 77.9865691304, + 130.824829985, + 196.411751442, + 196.174549125, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 213.280628675, + 168.603925621, + 168.804078193, + 151.24034772800002, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 32.006453887300005, + 67.6467927111, + 60.8130595417, + 95.1768633386, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 209.854310826, + 150.775396235, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.949074679299997, + 28.6677997673, + 11.527322911599999, + 60.1920667719, + 59.3831663918, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 126.20909095800002, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 68.12779095740001, + 77.9975592761, + 130.50797853699999, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 209.854310826, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.7074061905, + 77.9992270473, + 130.748590253, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 209.854310826, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.92357773559999, + 78.0207813288, + 130.535294491, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 209.854310826, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.0195564568, + 77.8352435364, + 130.784001432, + 196.352904597, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 209.854310826, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.81245927900001, + 78.3615355134, + 130.61230677499998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.01023623400002, + 199.86985418, + 200.646854654, + 199.78652478299998, + 211.430508402, + 168.631881565, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 62.81905509520001, + 59.7291277597, + 94.79014998310001, + 148.019917728, + 204.522812163, + 215.37247928399998, + 214.77536819699998, + 214.515024648, + 214.43453553999998, + 214.087041562, + 212.30369935299998, + 218.694119197, + 153.011108362, + 116.124006159, + 115.542145234, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 59.3631549997, + 59.3628108282, + 112.77551652999999, + 113.732726257, + 150.610435343, + 152.674072002, + 155.234199814, + 156.368329325, + 154.38493177499998, + 128.387966216, + 97.68391383459999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 63.4402921551, + 77.1266633563, + 130.21748913800002, + 202.63093589300001, + 217.35409585600001, + 229.141184156, + 239.390775975, + 247.53079649800003, + 241.725008403, + 235.700200333, + 225.731920159, + 224.907089411, + 172.00815785700001, + 170.841763735, + 152.421036138, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 63.3886767617, + 77.1151677293, + 130.21748913800002, + 196.92401081199998, + 209.575602727, + 227.695821445, + 225.322024656, + 221.24939576, + 221.138436227, + 220.119985759, + 216.414685936, + 215.65498269600002, + 171.59169243, + 170.476878971, + 151.899687987, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 63.5366435952, + 77.25414296379999, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.633272627, + 197.408745694, + 197.371467368, + 197.294939403, + 197.174283402, + 207.114032444, + 168.634719254, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 63.5575164019, + 77.5041385894, + 130.38834538700002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 206.427992976, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.1606403238, + 77.8477088498, + 130.64483764599998, + 196.20193607200002, + 196.14903942799998, + 196.219897117, + 196.33581827100002, + 196.367590778, + 196.257550288, + 196.28637174, + 196.476275917, + 206.81844063999998, + 168.94659268, + 169.072930275, + 151.420703055, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 64.0594869676, + 60.879956550799996, + 95.6258011435, + 147.96851417800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 206.427992976, + 150.775396235, + 115.34805707999999, + 115.35719230699999, + 80.1212197812, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 60.1643169492, + 59.4808028609, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 122.78277310899999, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 21.5973523472, + 11.3183987988, + 60.6867069034, + 60.111117251799996, + 112.90513791000001, + 113.087367848, + 148.547544398, + 148.163376645, + 147.931158716, + 147.931158716, + 147.931158716, + 122.82129345799999, + 97.9005165071, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.194454134, + 33.7228417669, + 33.9055215817, + 62.0983558869, + 78.6502998613, + 130.723927118, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 206.427992976, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.4071003996, + 33.4662546745, + 61.6644347284, + 78.0945208698, + 130.348206897, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 206.427992976, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 61.0692464553, + 77.9462129769, + 130.461418432, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 206.427992976, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 61.0984343479, + 77.787086009, + 130.496033491, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 206.427992976, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 59.8517699823, + 60.062865302, + 94.82717838559999, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 150.775396235, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 21.5973523472, + 11.3183987988, + 59.703709606, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.93620738599998, + 147.948270556, + 147.938892316, + 119.356455259, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 61.0298549706, + 77.8109769132, + 130.305787712, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.1785797869, + 33.3424234438, + 58.028736127200006, + 77.975893735, + 130.299124234, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.2521630321, + 58.042177290299996, + 78.2060774905, + 130.56787609300002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 58.0257150158, + 78.05306823580001, + 130.35759901, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.9500601412, + 77.61949115479999, + 130.394033534, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 56.0447219094, + 59.8350307272, + 94.8165564567, + 147.931158716, + 196.14903942799998, + 196.595994009, + 199.569620044, + 213.60017615, + 218.36980896, + 211.581660214, + 206.833941583, + 205.98557045, + 151.285513646, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 18.171034497799997, + 11.3183987988, + 59.4909936895, + 59.3628108282, + 113.40626539899999, + 121.98941789, + 170.016168476, + 168.96158651300001, + 168.52161522, + 168.308800641, + 159.66469601100002, + 119.845607278, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.508181930300005, + 77.48383839990001, + 130.537368587, + 196.296636819, + 196.17632945, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.098047194, + 168.77940147799998, + 168.94912337600002, + 151.31211313999998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 57.7852711938, + 78.3719172648, + 131.037752539, + 196.286331152, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 168.489065812, + 168.51333617699999, + 150.902469304, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 53.915665853300005, + 77.8414264732, + 130.634571088, + 196.195041108, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 53.6830151167, + 77.453759359, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 53.2597248226, + 77.4364556858, + 130.34158928, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 52.4525318321, + 59.9131122177, + 95.08037359960001, + 147.935374791, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 150.775396235, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 14.7447166483, + 60.0912310458, + 59.4430739376, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 80.5027982551, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 70.5802090928, + 81.05085418280001, + 130.526544585, + 196.153837181, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 151.35747656499998, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.1137200688, + 81.39595118119999, + 130.757780406, + 196.243651309, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 151.35747656499998, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.0562858942, + 81.3424759457, + 130.632809154, + 196.188991176, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 151.35747656499998, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.76560936519999, + 78.4826619564, + 131.041182503, + 196.242532697, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 151.35747656499998, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.74980254120001, + 78.4288490458, + 130.901346581, + 196.171280005, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 151.35747656499998, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 69.9624117576, + 60.4105228384, + 95.2770673523, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 133.643806988, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 60.1240905286, + 59.545155538399996, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 80.5027982551, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.43221119629999, + 78.187572419, + 130.78345406, + 196.163299253, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 151.35747656499998, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.7159433771, + 78.4268722933, + 131.017864554, + 196.264492607, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.3879845974, + 78.21212106380001, + 131.075392913, + 196.470925933, + 196.57758595800001, + 196.751599543, + 196.812189101, + 196.486026979, + 196.14903942799998, + 196.14903942799998, + 196.523430535, + 196.719905142, + 148.432496653, + 169.242880395, + 151.67589048099998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.2322218632, + 33.60771122, + 33.800378684900004, + 34.1789560652, + 34.3747106047, + 69.00169124979999, + 79.3557816356, + 131.638029917, + 196.606521632, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 68.21642204620001, + 78.3989099349, + 130.930941746, + 196.204946071, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 168.489065812, + 150.808750933, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 66.8440449977, + 60.6076698436, + 95.5680688657, + 148.01155333900002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 130.21748913800002, + 115.34805707999999, + 115.34805707999999, + 79.9553430496, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 60.5321356663, + 59.486635535299996, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 148.018309945, + 148.200657609, + 148.203054509, + 112.503819561, + 77.07648040560001, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.6264595813, + 77.8566780292, + 130.489887153, + 196.14903942799998, + 196.402553546, + 200.494899341, + 203.30571437, + 203.94135238, + 204.00905869599998, + 203.777380634, + 203.43856747, + 199.28204728100002, + 149.21901546499998, + 168.632610177, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.5429693398, + 77.8681814861, + 130.692450796, + 196.166776212, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.5439011054, + 77.8857028486, + 130.52697697, + 196.14903942799998, + 196.14903942799998, + 198.16010106000002, + 209.80598506599998, + 212.590360589, + 212.222339394, + 211.506874221, + 204.62159573, + 199.257282455, + 149.057584116, + 168.583890605, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.4918707848, + 77.7858665515, + 130.37667724099998, + 196.14903942799998, + 196.183094256, + 202.842484243, + 210.603406798, + 212.876054392, + 213.813349506, + 214.178306346, + 213.11263029900002, + 209.111571645, + 152.067681302, + 170.01510849299999, + 151.615747781, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 63.477519776099996, + 77.39138612869999, + 130.227501781, + 196.14903942799998, + 196.746960038, + 208.35276582100002, + 224.000193577, + 231.861590331, + 230.335189074, + 223.453335651, + 216.782484919, + 211.378847953, + 152.75204642600002, + 169.595140774, + 151.139541776, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 62.392231850600005, + 59.6779024401, + 94.79286643350001, + 147.95669786, + 207.725064742, + 223.768674607, + 229.697709064, + 228.67483806299998, + 230.947199067, + 235.035397045, + 231.799085876, + 221.201280838, + 136.32372186799998, + 116.044688571, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 59.9407608, + 59.4820598248, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 77.07648040560001, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.4407085945, + 78.117248274, + 130.82005590999998, + 196.200098597, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 165.062747963, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.43753969810001, + 78.05178733749999, + 130.719671857, + 196.165078791, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 165.062747963, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.3562861956, + 77.98430602030001, + 130.61645131, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 165.062747963, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.3032653825, + 77.9533844458, + 130.701375157, + 196.173022344, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 165.062747963, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 60.6103889724, + 77.7926245176, + 130.502304339, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 165.062747963, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 59.1811872471, + 59.955503983999996, + 94.9912977134, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.265368911, + 196.506192408, + 196.49067970599998, + 130.47509904600003, + 111.993546315, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 21.5973523472, + 11.3183987988, + 59.4743430821, + 59.3628108282, + 114.801467514, + 127.111918332, + 170.778469331, + 169.32481911600001, + 169.09996261799998, + 169.54155976200002, + 168.198412937, + 121.50404441100001, + 78.5098687808, + 28.4499880461, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 60.012407788800004, + 77.3584927326, + 130.23484697499998, + 196.14903942799998, + 197.143987421, + 201.23133633, + 201.129998938, + 201.031443628, + 201.048516817, + 200.906419448, + 200.772095372, + 200.632188501, + 149.65864062900002, + 165.73295948799998, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 60.308516406, + 77.54928423989999, + 130.332374481, + 196.14903942799998, + 196.14903942799998, + 197.539878976, + 201.95085475099998, + 199.589977224, + 199.63254673100002, + 199.696299767, + 199.511179584, + 199.257373456, + 149.97139324199998, + 165.94027216900002, + 150.895940876, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 60.1719545604, + 77.4851956347, + 130.323675398, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 198.365853457, + 216.63141563399998, + 226.265681182, + 244.41223213400002, + 253.54038198599997, + 195.648067335, + 198.018011367, + 171.932761304, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.6326017304, + 77.0947079016, + 130.21748913800002, + 199.339865715, + 214.993447319, + 225.715495685, + 232.996527788, + 238.132531877, + 235.867509171, + 233.141644852, + 231.555463355, + 225.39639650400002, + 168.288585353, + 174.865144519, + 152.22057897000002, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.9689370248, + 77.2925724499, + 130.21748913800002, + 196.579306575, + 210.429176104, + 225.410534213, + 237.529126752, + 238.533548757, + 233.14282317, + 227.391823607, + 222.101171124, + 217.145714256, + 160.436578452, + 167.277039323, + 151.573968991, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 55.532393595900004, + 59.7429393677, + 94.8449741716, + 147.931158716, + 196.14903942799998, + 196.382000419, + 196.899723596, + 196.89500119500002, + 196.921385217, + 196.950968596, + 196.918497159, + 196.89130778400002, + 130.828738951, + 111.972841031, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 18.171034497799997, + 11.3183987988, + 59.7073256058, + 59.367115282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.976340529, + 148.20490892499998, + 148.19971616700002, + 148.18710169, + 112.582242386, + 77.07648040560001, + 28.4499880461, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.7529950041, + 77.37721047170001, + 130.22736765099998, + 196.14903942799998, + 196.14903942799998, + 198.054533072, + 204.739852733, + 206.972089766, + 207.341094644, + 208.796492593, + 209.018336621, + 209.094902184, + 156.666650262, + 163.13113847999998, + 151.564485868, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.725609064699995, + 77.41233202149999, + 130.25999712799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 161.63643011300002, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.8660492169, + 77.5584156264, + 130.360630346, + 196.14903942799998, + 196.14903942799998, + 196.15082622399999, + 196.159964547, + 196.160089035, + 196.159509775, + 196.158968991, + 196.170330828, + 196.178042928, + 147.94515057, + 161.638727569, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.8789047047, + 77.5123838136, + 130.281982113, + 196.14903942799998, + 196.14903942799998, + 196.295356812, + 197.83903837900002, + 199.67303939299998, + 199.65827551200002, + 199.63868270199998, + 199.541264219, + 199.375135402, + 149.36392729000002, + 162.36046872499998, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.6369737333, + 77.43190444759999, + 130.345390963, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 161.63643011300002, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 55.7579016906, + 59.9174466996, + 95.1066786309, + 147.937223662, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 130.21748913800002, + 108.495421381, + 115.392130624, + 80.1688104385, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 14.7447166483, + 11.3183987988, + 60.583017842299995, + 59.9404950543, + 112.73723106899999, + 113.03284801, + 148.218058347, + 148.151057123, + 148.116366357, + 147.931158716, + 147.931158716, + 112.503819561, + 77.09816657569999, + 25.0236701967, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 54.8654374642, + 78.57890808260001, + 131.19027322899998, + 196.981727939, + 196.865073265, + 196.823789922, + 196.75645409499998, + 196.30759594199998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 148.03059144899999, + 161.993373463, + 151.23928744699998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 54.8976338979, + 78.50646010060001, + 131.086637446, + 196.45754832400002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 161.63643011300002, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 53.9600285541, + 77.8500546683, + 130.570682424, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 161.63643011300002, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 53.560880430299996, + 77.6579880893, + 130.554610609, + 196.203536545, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 161.63643011300002, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 53.612561748, + 77.6087953524, + 130.446797726, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 161.63643011300002, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 52.191674090700005, + 59.830854716800005, + 95.03936882629999, + 147.93482591199998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.161610059, + 130.526926236, + 108.91066667199999, + 115.77113264900001, + 80.47840571260001, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 14.7447166483, + 11.3183987988, + 60.549187599, + 59.925032397799995, + 112.688986544, + 112.53554485400001, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 77.07648040560001, + 21.5973523472, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 53.634671228500004, + 77.8864331253, + 130.861886623, + 196.458464546, + 196.306585945, + 196.333510549, + 196.264470785, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.942512767, + 158.33658941899998, + 150.978757199, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 50.571072625199996, + 77.8744770073, + 130.573548641, + 196.15257518, + 196.14903942799998, + 196.14903942799998, + 196.15216346199998, + 198.754471801, + 201.94448699900002, + 207.130912639, + 208.934079787, + 208.488702689, + 153.61149733, + 158.601014037, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 50.1052280358, + 77.5338514326, + 130.31813333399998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.77941121, + 200.69336030000002, + 200.520240385, + 200.2912059, + 148.456874414, + 158.244194051, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.93390842749999, + 77.4503649272, + 130.27648511700002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 158.210112264, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.828462230700005, + 77.43784348759999, + 130.321078958, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 158.210112264, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 48.693269129200004, + 59.7695684835, + 94.88771804779999, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 130.21748913800002, + 105.069103531, + 115.34805707999999, + 79.9415925372, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 11.3183987988, + 59.8893778607, + 59.5032164709, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 77.07648040560001, + 21.5973523472, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 50.4154439479, + 77.8227444836, + 130.567774377, + 196.156451577, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 158.210112264, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 50.2058322095, + 77.4777599748, + 130.294380795, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 158.210112264, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 50.0936706977, + 77.4794568403, + 130.26867731800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.15525649900002, + 196.825187239, + 198.90027945900002, + 198.835306673, + 198.734066315, + 150.35768535, + 158.210112264, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 50.0631114866, + 77.49608825669999, + 130.305164684, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 200.225885314, + 206.229275013, + 207.606306251, + 207.954920404, + 208.084594469, + 207.578090294, + 154.118366598, + 159.07100752699998, + 150.791728013, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.8569745988, + 77.338521344, + 130.219209996, + 196.14903942799998, + 196.14903942799998, + 197.828151042, + 208.134538079, + 212.850492306, + 213.086594652, + 214.821710605, + 214.594478543, + 213.75952085699998, + 161.982440476, + 161.32307681999998, + 151.38688413900002, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 48.4434598924, + 59.6218192564, + 94.8027478982, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.180343196, + 207.960483041, + 217.830511338, + 219.65319248, + 219.551494774, + 218.985104924, + 144.665002811, + 103.82859948299999, + 115.584317649, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 11.3183987988, + 59.5065690773, + 59.3645316857, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 148.000771639, + 148.210461287, + 148.20669786300002, + 112.720122394, + 77.07648040560001, + 18.171034497799997, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.7895479058, + 77.3942673429, + 130.24728628600002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.746755995, + 201.759356748, + 202.245136614, + 202.483299617, + 202.612062219, + 154.940486222, + 155.554645927, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.6885461325, + 77.33648799390001, + 130.229600338, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.36190431900002, + 198.49325912, + 199.81926359599998, + 199.646147366, + 198.024134344, + 148.331363783, + 154.788894809, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.5813275468, + 77.1790148883, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.28730661999998, + 198.161360062, + 198.992214967, + 198.884087975, + 197.737318135, + 148.27119254000002, + 154.79920583, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.6591107149, + 77.3025385336, + 130.22567315900002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.72467506200002, + 198.261287129, + 198.171269175, + 147.955834564, + 154.783794414, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.8128265019, + 77.3992110956, + 130.274918147, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.160239042, + 196.17555013900002, + 196.159714729, + 147.931158716, + 154.783794414, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 48.900622168800005, + 59.9098599894, + 95.0843032402, + 147.944626134, + 196.27504496400002, + 196.19231120199998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 130.21748913800002, + 101.642785682, + 115.355332177, + 80.138469693, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 11.3183987988, + 60.157885004, + 59.6421941966, + 112.51610058, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 77.07648040560001, + 18.171034497799997, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 50.45798307, + 77.7313203631, + 130.440920261, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 154.783794414, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 50.2551124193, + 77.58419259050001, + 130.344800935, + 196.14903942799998, + 196.14903942799998, + 196.233426663, + 199.045433367, + 204.549587268, + 207.591909444, + 208.041346094, + 208.02209384, + 207.67318356200002, + 158.623670737, + 156.989177689, + 150.810815219, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.702268497199995, + 77.2719529628, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 197.681903797, + 205.84635675799998, + 209.933076677, + 210.068881047, + 210.18589879700002, + 210.081094017, + 209.824833982, + 159.52764829, + 156.471643835, + 150.931600333, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.704944417600004, + 77.28838273209999, + 130.22743284999999, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.07617308899998, + 202.03039296699998, + 201.884976274, + 151.017815438, + 154.94086753300002, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.7503722909, + 77.3085853116, + 130.222242637, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 154.783794414, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 48.8298676258, + 59.828594497400005, + 95.0057563564, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 130.21748913800002, + 98.21646783259999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 11.3183987988, + 59.806102751400005, + 59.4445452715, + 112.503819561, + 112.503819561, + 148.38507412799999, + 165.691539622, + 163.671427984, + 155.631271809, + 155.494886198, + 113.852711973, + 77.1460542668, + 14.7447166483, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 11.3183987988, + 59.366352012899995, + 59.4725317235, + 130.245979237, + 133.337040793, + 164.72580183899998, + 166.231081353, + 168.32986040199998, + 168.61535254600003, + 168.263952271, + 129.571516958, + 86.9186616743, + 14.7447166483, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.3648395472, + 77.07648040560001, + 130.21748913800002, + 196.794990458, + 209.92061263600002, + 232.99335249700002, + 250.697039723, + 259.229171334, + 259.907548286, + 253.107579114, + 245.48607038100002, + 239.73800756900002, + 183.280820922, + 178.80755473000002, + 168.73154143, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.2751940344, + 77.07648040560001, + 130.769415961, + 225.184631885, + 233.92178305000002, + 239.912971529, + 242.730511354, + 244.48330470899998, + 245.169892398, + 244.14255393699997, + 242.185531133, + 237.633080541, + 181.836139218, + 176.856476258, + 166.82110053099998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 199.019196553, + 208.747372345, + 216.152042184, + 222.770777819, + 224.227535165, + 224.44969187499998, + 223.834765705, + 221.99360928599998, + 168.051969454, + 160.76237558100001, + 151.862205698, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.5290913978, + 77.1269998394, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.164142943, + 196.167138802, + 196.16519401899998, + 147.93428967100002, + 151.35747656499998, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 48.9023620871, + 59.8045195204, + 94.8543815667, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 130.21748913800002, + 98.21646783259999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 11.3183987988, + 59.6088089945, + 59.3734944145, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 77.07648040560001, + 14.7447166483, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.7318350392, + 77.3409393869, + 130.255861004, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 151.35747656499998, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.772800823, + 77.37252703680001, + 130.29223159699998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 151.35747656499998, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.9944536396, + 77.4641839816, + 130.322899733, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.185333041, + 196.389387833, + 197.055380913, + 197.046235807, + 197.018032987, + 148.07105889, + 151.35747656499998, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.7064615735, + 77.31771869219999, + 130.237537983, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.025047316, + 201.020359953, + 204.074108629, + 205.54522987800001, + 205.463307948, + 205.203848757, + 156.30500814500002, + 152.426585133, + 150.817551839, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.7929491309, + 77.3830991576, + 130.400749038, + 196.166303499, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 147.931158716, + 151.35747656499998, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 48.479515012099995, + 59.5794109365, + 94.8130455645, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.79826956600002, + 198.890735699, + 198.858844831, + 198.796860009, + 130.21748913800002, + 98.21646783259999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 11.3183987988, + 59.641109308500006, + 59.4015317411, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 77.07648040560001, + 14.7447166483, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.6415090678, + 77.2601048303, + 130.22286698399998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.155715801, + 196.18931707500002, + 197.66656656700002, + 199.05427168300002, + 198.983630938, + 198.892607001, + 148.20683604799999, + 151.360809169, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.585431396, + 77.20630534520001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.149636268, + 196.150238524, + 197.659945373, + 200.84347609699998, + 201.490918508, + 201.338250801, + 150.177807287, + 151.42405216699999, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.4963981059, + 77.1163905661, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.269898156, + 199.28922228300002, + 200.796103445, + 202.943408933, + 205.06240945, + 204.646332435, + 153.141698738, + 148.568797099, + 150.85270266700002, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.5613889993, + 77.21301796370001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.152390148, + 196.16686195199998, + 196.174758943, + 196.178531207, + 196.15932139799997, + 147.931158716, + 147.931158716, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.5410628892, + 77.1507888873, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.803716009, + 200.19400483, + 202.902323153, + 205.447420709, + 205.798253708, + 205.620224941, + 156.979590882, + 153.359594506, + 151.034739169, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 48.1211424232, + 59.3646613891, + 94.79014998310001, + 147.931158716, + 196.213731674, + 202.168396973, + 210.862357493, + 218.75975280400002, + 220.405044761, + 220.212566594, + 220.088864906, + 219.06068244699998, + 145.249045754, + 97.8953757223, + 115.63158102499999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 149.71114284700002, + 153.297353437, + 156.690339896, + 159.856513199, + 159.60553237899998, + 114.438157652, + 77.1511687438, + 11.3183987988, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.5178048603, + 77.1298393762, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 198.107898184, + 200.179298825, + 200.20103789, + 200.16840614, + 200.012198806, + 199.816401683, + 148.516243992, + 148.31687390800002, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.6306004576, + 77.1773663048, + 130.21748913800002, + 196.14903942799998, + 196.82188035299998, + 200.552594931, + 201.647265904, + 209.18507909800002, + 212.585573745, + 212.686273817, + 212.221348775, + 211.607959624, + 162.18962270100002, + 153.444934929, + 151.363440978, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.550876543, + 77.16856156200001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.65855165000002, + 202.825906618, + 208.09305847, + 209.75882562799998, + 209.605143121, + 209.10791208, + 208.62943906700002, + 159.81948737500002, + 151.708268814, + 151.080756455, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.553783677700004, + 77.1515586995, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 199.52608520700002, + 208.382806469, + 209.241326376, + 212.070727487, + 213.809270845, + 213.321271345, + 212.36936841099998, + 160.83537235, + 150.573397549, + 151.183617123, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.164802608, + 199.965212831, + 209.221085085, + 217.153142062, + 221.344622531, + 223.227359875, + 222.00974276899998, + 220.987014887, + 168.195820533, + 158.349098754, + 151.965881156, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 48.0444120293, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 197.076757879, + 220.11482698400002, + 227.99843393, + 225.890193528, + 227.218821783, + 229.101726023, + 230.396151673, + 228.918386951, + 148.919713595, + 98.3362257412, + 115.770391238, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 148.444914382, + 151.528265514, + 153.509296822, + 154.27226794700002, + 116.134150001, + 77.4279195279, + 11.3183987988, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.3909178153, + 77.0847718258, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.40556587499998, + 203.590668126, + 210.65301110000001, + 217.16009691600001, + 220.45638094400002, + 219.77880525700002, + 218.214678814, + 162.13742505599998, + 150.91529852899998, + 151.327943899, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.4274024508, + 77.0961666505, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.523873764, + 206.876025752, + 213.393533255, + 213.408879414, + 213.210321787, + 212.888950137, + 212.374070619, + 160.05937927, + 149.150456404, + 151.00708229, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.4461931366, + 77.09546752189999, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 197.44049993, + 203.253277069, + 210.038562651, + 213.520860138, + 213.50370311900002, + 213.01239644700001, + 212.00784806500002, + 159.366985237, + 149.784876893, + 151.256145403, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.574882119099996, + 77.1157433029, + 130.21748913800002, + 207.431471727, + 223.365771448, + 232.903695074, + 239.547354607, + 246.190132666, + 247.906106257, + 245.96335820800002, + 242.132781456, + 237.94717518299998, + 181.548368702, + 173.593711821, + 168.608823255, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 26.2544522017, + 49.2751940344, + 77.07648040560001, + 130.25067926100002, + 207.85081778, + 217.26213820700002, + 223.56269920300002, + 229.092331283, + 235.037879362, + 242.05331272200002, + 246.172915248, + 244.18285925900003, + 238.525237772, + 182.78948476099998, + 171.361968963, + 165.668991833, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 48.1210575705, + 59.3628108282, + 94.8118948046, + 159.012916816, + 222.973135169, + 235.00978803, + 241.257444328, + 245.908522589, + 247.46482248799998, + 248.76613390899996, + 248.16184958200003, + 242.809073349, + 161.45313887999998, + 112.347594462, + 120.306294849, + 80.0698222023, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 77.07648040560001, + 11.3183987988, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.4633806074, + 77.1144726716, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.90608601099999, + 200.371978518, + 205.464592019, + 207.833233909, + 207.50212513600002, + 158.791187081, + 158.090866646, + 154.363492149, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.4024275843, + 77.08747914339999, + 130.21748913800002, + 196.14903942799998, + 202.659567101, + 215.286011346, + 219.114592488, + 223.709773563, + 227.366341777, + 230.987704514, + 230.679029747, + 228.82723375, + 174.841074526, + 165.658719641, + 160.18981846, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 77.07648040560001, + 11.3183987988, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 198.51112987599998, + 204.372853624, + 207.61630156700002, + 210.365357497, + 210.267593367, + 209.75937426299998, + 160.739653468, + 156.510389926, + 151.86065946, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.035799791, + 201.130880637, + 203.756194126, + 204.203785777, + 204.056879809, + 155.472493892, + 155.034471202, + 152.202488214, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 48.0444120293, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 203.236026824, + 221.443677708, + 233.622024226, + 235.428287406, + 234.317687036, + 232.517585698, + 152.999537237, + 104.729892838, + 116.39220425100001, + 79.9769903236, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 151.009808908, + 155.178833062, + 165.41584995099998, + 175.78421826299999, + 177.28073912500003, + 139.533377391, + 92.6905622606, + 11.3183987988, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 132.51701107899999, + 227.932825275, + 233.2009047, + 238.444409734, + 244.55266942600002, + 249.96750258699998, + 254.21004745300002, + 256.429014085, + 252.66224382000001, + 246.725655024, + 188.38567372999998, + 176.96275431, + 171.210388531, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 135.144043455, + 225.77481532099998, + 239.46615572599998, + 250.321061945, + 253.77367299399998, + 256.93103755, + 259.507133452, + 265.078174618, + 265.586623399, + 260.42514038, + 202.139884198, + 189.066650774, + 179.807210874, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 134.28379401700002, + 231.695083237, + 243.193356183, + 252.10155286699998, + 254.387308065, + 255.961949667, + 256.626944646, + 256.264604521, + 251.79160569899997, + 245.26762352799997, + 188.75174045699998, + 178.352761176, + 171.283026297, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 211.23908958700002, + 232.470292413, + 246.265915652, + 252.17832197400003, + 256.08146431800003, + 258.22294110800004, + 255.60240524699998, + 250.25797472500003, + 243.03301319000002, + 186.204435564, + 174.822509981, + 167.839345221, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.402852764, + 201.740682252, + 216.087658494, + 227.005223029, + 230.25332756900002, + 232.185540215, + 232.932134591, + 231.782662445, + 229.605481891, + 175.452165057, + 166.045102262, + 157.498943054, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 48.0444120293, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 197.011273909, + 208.38258476000001, + 222.002580391, + 228.98635741799998, + 230.127560359, + 230.893977282, + 230.557336876, + 229.648433632, + 154.54361594699998, + 108.17339278, + 117.925389548, + 79.98958878010001, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 153.10111000999999, + 166.748035888, + 172.190280123, + 175.2667148, + 175.70644242100002, + 131.745717012, + 85.030178999, + 11.3183987988, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 202.945197723, + 213.982929682, + 222.366401174, + 227.200866104, + 230.92211177599998, + 229.320721881, + 227.31953359800002, + 174.26605257900002, + 165.956915189, + 159.963594889, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 203.88397515699998, + 216.17298098999999, + 222.03543019699998, + 226.849038215, + 230.570067103, + 233.743434272, + 234.735157519, + 233.656757384, + 178.472279243, + 169.52983837300002, + 165.776130203, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 201.821330607, + 209.155283071, + 210.627552256, + 211.739259015, + 213.089694515, + 212.865389803, + 164.367933464, + 165.270173545, + 156.431284627, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 29.6807700512, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 200.24183387, + 210.204124251, + 220.94691696200002, + 229.230108403, + 232.650753614, + 232.530456982, + 231.178952613, + 179.512530579, + 175.37605656399998, + 167.429539322, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 199.023039631, + 225.266952197, + 243.45838207999998, + 249.860076027, + 253.991814019, + 255.84234189300003, + 257.64775935200004, + 252.883995512, + 246.71937167000002, + 187.99900734, + 179.22585124399998, + 170.68963433899998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 48.0444120293, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 206.63643677, + 227.8489237, + 237.995869863, + 239.963467122, + 238.772488676, + 241.930557927, + 242.358316184, + 237.808918622, + 158.041681816, + 115.52675909999999, + 122.21843333400001, + 80.18843100389999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.892515892, + 117.94339670400001, + 167.722285204, + 172.82210774, + 173.263235339, + 174.594267792, + 175.510048576, + 136.112376243, + 89.65841230710001, + 14.7447166483, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 198.047909566, + 214.49129672, + 233.206584325, + 242.629312801, + 253.158676724, + 256.10643828900004, + 261.91151189, + 254.94311629700002, + 245.72838583700002, + 186.72170917699998, + 180.415485503, + 171.613422552, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 215.787732234, + 236.99824096600003, + 248.90298726999998, + 252.92537574000002, + 255.16398840000002, + 257.39300289100004, + 263.773429763, + 255.632693527, + 244.397283231, + 184.366588806, + 179.21734757800002, + 171.492411004, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 201.307092358, + 215.766990115, + 224.35857765, + 231.989410614, + 237.209641541, + 238.721288475, + 238.981726328, + 238.617993855, + 185.54340008600002, + 179.348337526, + 172.159764422, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 197.973082358, + 215.06683228100002, + 234.943346634, + 240.69714164500002, + 245.610259044, + 247.861867455, + 246.80909848500002, + 246.47621815699998, + 242.70267854600002, + 185.312357151, + 179.67006900599998, + 171.138305608, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 200.076090795, + 218.873318407, + 229.900402698, + 234.34472134400002, + 236.159745697, + 236.691037495, + 235.999349847, + 233.902121946, + 178.036217358, + 172.733325946, + 166.76309449099998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 48.0444120293, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 199.655343511, + 206.85320947699998, + 211.10089623899998, + 215.490421452, + 219.22264848799998, + 222.122301755, + 223.85647475800002, + 223.805942016, + 153.031170699, + 115.627368927, + 130.113434233, + 85.30424118020001, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 11.3183987988, + 59.3628108282, + 62.3919785046, + 140.444433589, + 152.291150684, + 191.306501134, + 191.961793506, + 192.963635627, + 193.539438698, + 194.48771971600002, + 150.667724709, + 102.387591028, + 14.7447166483, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 196.606360197, + 213.278930666, + 232.102469146, + 242.140826798, + 248.18800051899998, + 250.38668526099997, + 252.649983578, + 249.52164358, + 243.347697829, + 184.766717108, + 178.747057371, + 170.841428332, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 198.10345167900002, + 207.673670216, + 223.222729938, + 234.88423109200002, + 242.899069762, + 248.245539111, + 251.074898525, + 249.38464332799998, + 244.515518904, + 186.36206009600002, + 178.580979822, + 169.94208084, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.2751940344, + 77.07648040560001, + 130.235275081, + 218.864201968, + 232.494445964, + 242.581642834, + 244.842756187, + 245.48299102500002, + 248.01113909500003, + 248.511461904, + 245.71026219099997, + 238.919659907, + 180.276337524, + 175.28735467200002, + 166.737806111, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 49.2751940344, + 77.07648040560001, + 130.21748913800002, + 206.462730039, + 229.76959041, + 239.865664321, + 243.145179087, + 247.359008679, + 246.42478595300003, + 243.687279571, + 240.958873208, + 237.73880066299998, + 181.97404455400002, + 175.930004402, + 167.16109362, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 52.701511883799995, + 77.07648040560001, + 130.21748913800002, + 200.437422385, + 214.18176867, + 224.273322172, + 230.940908631, + 236.220093856, + 240.015304072, + 241.841477187, + 238.227335365, + 230.178481485, + 171.20633052399998, + 168.198490459, + 153.666559551, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 51.4707298788, + 59.3628108282, + 94.79014998310001, + 147.978034179, + 205.468955747, + 218.49767389, + 227.229182138, + 232.24615873800002, + 233.910550304, + 233.86849648, + 233.95996775600003, + 231.77609641700002, + 152.13205328799998, + 110.158049705, + 116.30817116600001, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 14.7447166483, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.93363560400002, + 147.945701747, + 147.946068317, + 112.503819561, + 77.07648040560001, + 18.171034497799997, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 52.9392622408, + 77.1586450919, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.443261672, + 205.053782122, + 207.282620793, + 207.84255783, + 207.89964324500002, + 207.338286329, + 157.846324732, + 156.284720286, + 150.987757527, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 52.701511883799995, + 77.07648040560001, + 130.21748913800002, + 213.144647139, + 230.485891577, + 242.716587107, + 251.733084346, + 262.45676211200004, + 266.49918636700005, + 261.164576704, + 255.949224801, + 251.442758452, + 194.600932716, + 192.131304567, + 181.044227236, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 52.701511883799995, + 77.07648040560001, + 142.775377473, + 244.177454971, + 264.142494918, + 273.85553180899996, + 278.821258856, + 285.245745984, + 284.106871014, + 284.65698144199996, + 281.371027436, + 276.33769317900004, + 207.109134832, + 193.52264762000001, + 178.574507339, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 52.701511883799995, + 77.07648040560001, + 148.494748956, + 247.63853491700002, + 254.142094443, + 262.298393132, + 271.572523809, + 276.509490425, + 274.84005135300004, + 272.284041502, + 266.743929143, + 256.935630163, + 192.92947617599998, + 184.71336431, + 169.919176283, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 52.701511883799995, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 200.554253253, + 212.385372613, + 218.475326246, + 222.991469118, + 225.947250501, + 228.50013127, + 227.127732792, + 224.908784956, + 168.706952167, + 165.69591908299998, + 153.520969881, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 51.4707298788, + 59.3628108282, + 94.79014998310001, + 152.339458204, + 227.638994347, + 243.959975827, + 252.28690496500002, + 253.59464090699998, + 254.99289348199997, + 257.097873946, + 257.583229106, + 250.14100358800002, + 165.641262614, + 124.45453935399999, + 130.630793055, + 83.15965708750001, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 14.7447166483, + 11.3183987988, + 60.72796262, + 77.1283620441, + 147.939846965, + 153.42384229, + 194.493972621, + 200.21558435600002, + 202.45883372699998, + 203.368208853, + 204.306936944, + 155.125266366, + 104.457596541, + 18.171034497799997, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 52.701511883799995, + 77.07648040560001, + 135.08033524299998, + 230.797553964, + 244.901382472, + 254.135814852, + 260.696843975, + 266.335066029, + 267.412556261, + 267.082138944, + 266.63971736599996, + 258.933503299, + 196.162923618, + 192.562497612, + 176.892321334, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 52.701511883799995, + 77.07648040560001, + 132.643853001, + 229.491391001, + 242.61454611, + 255.498333518, + 263.99179050000004, + 268.161392203, + 270.94158039300004, + 267.413087887, + 257.741731673, + 246.91225324200002, + 182.494371244, + 180.360303323, + 165.45110018, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 52.701511883799995, + 77.07648040560001, + 131.674739071, + 226.868552347, + 239.269311769, + 248.396968868, + 258.70154377899996, + 264.85577931, + 263.559768548, + 264.27837381, + 264.213201421, + 258.23537086, + 198.150732534, + 196.648601297, + 180.490409793, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 52.701511883799995, + 77.07648040560001, + 133.97282356099998, + 227.643540395, + 246.742374494, + 260.53838483699997, + 266.97373346700005, + 269.600167902, + 268.971556833, + 268.423291317, + 266.96779368399996, + 260.748491006, + 203.05929934899999, + 202.533875104, + 185.334149497, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 133.389766649, + 227.974047095, + 243.312609963, + 255.33147013299998, + 260.916892594, + 264.091383333, + 265.321382444, + 268.41006979099996, + 261.337837605, + 255.18810406300003, + 195.618041468, + 192.71297422900003, + 176.597344488, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 54.897047728299995, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 196.75922075600002, + 204.635123338, + 213.413913703, + 218.86449816500001, + 221.156598657, + 223.650876367, + 224.083123656, + 221.86319853199998, + 145.07444090700002, + 108.081982935, + 116.02065319, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 18.171034497799997, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 151.532688926, + 163.630378716, + 170.890108065, + 172.471257462, + 171.819975696, + 126.031165026, + 78.2405575618, + 21.5973523472, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 199.15713405999998, + 216.772326434, + 228.34248086399998, + 229.781995497, + 229.107936722, + 228.173086577, + 223.688815029, + 163.851961143, + 164.212841262, + 152.03541145999998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 198.448815091, + 206.423480689, + 212.069058081, + 220.356915169, + 230.668018296, + 238.050964757, + 235.951432531, + 231.129239288, + 172.756565485, + 174.003767083, + 158.175024337, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 197.812010776, + 209.465918181, + 219.916220316, + 227.944264075, + 235.100753186, + 241.665206517, + 239.502171122, + 234.913878398, + 178.237428117, + 184.128682493, + 165.083756051, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 130.21748913800002, + 197.713206102, + 211.809462232, + 225.171044807, + 236.89808383500002, + 245.228096285, + 244.62219139699997, + 243.32824766, + 241.318162777, + 237.522907481, + 179.874392302, + 184.52540086800002, + 168.28272071, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 130.23505689200002, + 216.73585770900002, + 231.026649318, + 245.218599793, + 253.12916093, + 258.59131276, + 262.84359340599997, + 259.521018577, + 250.030336386, + 241.131778721, + 183.89610115399998, + 188.558970118, + 171.177949662, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 54.897047728299995, + 59.3628108282, + 94.79014998310001, + 156.872135066, + 230.217551445, + 247.0491617, + 251.89659178200003, + 254.450501851, + 254.169185163, + 253.246025132, + 252.72948850799997, + 245.08462444699998, + 161.892306963, + 127.83454626300001, + 128.394833444, + 82.9148814461, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 18.171034497799997, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 124.164210118, + 135.02030142200002, + 176.734514316, + 179.636244054, + 180.390322745, + 179.98797867300001, + 179.518288943, + 137.37976344, + 93.1765502847, + 25.0236701967, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 130.26122652299998, + 219.724295922, + 236.44279690599998, + 247.25125781999998, + 254.21456189799997, + 260.148739427, + 258.647746424, + 256.742306068, + 251.481174608, + 244.51139509299998, + 185.905528841, + 188.321433914, + 169.412838815, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 130.21748913800002, + 199.273572435, + 214.667917178, + 227.831098104, + 234.552950475, + 239.31545784, + 240.364859458, + 239.90482896900002, + 237.835876757, + 235.381705359, + 180.476070908, + 184.47743760199998, + 165.493670571, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 201.211168752, + 213.779070234, + 220.11711682199999, + 224.60128281099998, + 230.740529396, + 235.798774388, + 235.63906048500002, + 233.800811066, + 178.190823882, + 181.390814536, + 163.897701876, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 130.21748913800002, + 196.38201884499998, + 206.026795665, + 226.304063604, + 239.970571895, + 245.714053094, + 246.301086858, + 245.32599588800002, + 243.148079878, + 238.58606231000002, + 183.273337075, + 190.751060059, + 169.255548413, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.1278297333, + 77.07648040560001, + 130.21748913800002, + 203.935146119, + 219.97859485200001, + 231.167329951, + 237.466405714, + 242.47155263599998, + 243.479277401, + 242.363555236, + 240.221955676, + 237.188167127, + 180.055352502, + 182.821379241, + 156.013817929, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 58.3233655777, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 196.14903942799998, + 205.347967238, + 220.942596792, + 231.223176518, + 242.073557419, + 245.09846286899997, + 243.43189049900002, + 238.108973157, + 152.927242541, + 120.233295468, + 117.733098145, + 80.5349815685, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 21.5973523472, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 113.77867673, + 168.48523963399998, + 180.83104877, + 183.184288272, + 182.956094876, + 182.045156717, + 138.458953436, + 90.83650551080001, + 28.4499880461, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 21.5973523472, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 152.691235275, + 158.7910885, + 160.899671503, + 160.962967386, + 161.29171651700003, + 123.79146296299999, + 78.6340290571, + 28.4499880461, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.5541475828, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 197.62875386300001, + 205.771494886, + 219.729931221, + 226.177565749, + 225.49875428299998, + 224.47581933, + 223.147769149, + 169.768937335, + 177.75167588300002, + 153.747475318, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.5541475828, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 200.07151080100002, + 216.79699720399998, + 224.56228507, + 233.50983157500002, + 239.357515559, + 241.514104267, + 240.581557602, + 237.352352962, + 179.749385606, + 188.146301537, + 167.826734614, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.5541475828, + 77.07648040560001, + 130.21748913800002, + 200.35575208900002, + 216.310229148, + 236.61721767499998, + 245.97895856399998, + 249.69879788100002, + 255.473315237, + 254.01144504799998, + 249.74689726399998, + 244.38558604099998, + 187.93011086899998, + 197.27075608, + 177.628941442, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.5541475828, + 77.07648040560001, + 131.349048056, + 223.975350508, + 241.1573723, + 250.523663293, + 254.847897573, + 260.58541737, + 264.195234992, + 263.637967766, + 258.201455386, + 252.962074274, + 196.814088054, + 206.927175369, + 182.18364681300002, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 58.3233655777, + 59.3628108282, + 94.854261293, + 171.40149440800002, + 244.94331365899998, + 257.05766937, + 262.439474885, + 265.938439485, + 266.225189501, + 262.828672562, + 258.148315181, + 252.854224398, + 171.002062448, + 144.94240462800002, + 140.345969834, + 98.0484376025, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 21.5973523472, + 11.3183987988, + 59.6001513638, + 69.7854005408, + 145.222189444, + 161.302789553, + 206.578856918, + 209.40439455700002, + 211.983299615, + 209.26700058999998, + 201.848311897, + 154.276326092, + 102.51923113, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.5541475828, + 77.07648040560001, + 130.25899536699998, + 207.204835516, + 233.955427692, + 250.347491497, + 252.757586241, + 253.182779931, + 253.66886261199997, + 253.989769009, + 251.868400583, + 244.818525686, + 183.40270587299997, + 195.39861634800002, + 173.321469885, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.5541475828, + 77.07648040560001, + 130.21748913800002, + 196.670780285, + 208.59832467299998, + 224.932378019, + 237.500422015, + 244.74502669499998, + 245.481075917, + 245.02932002, + 244.11440395300002, + 240.51411499900001, + 182.928069236, + 194.854800394, + 170.56654966, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.5541475828, + 77.07648040560001, + 130.21748913800002, + 196.480539599, + 207.52010747, + 220.592725659, + 227.32354386400002, + 235.721272164, + 241.422003216, + 243.232805869, + 240.048447541, + 235.22977543599998, + 178.824553821, + 190.13673303, + 165.914838508, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.5541475828, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.16737369299997, + 214.14896883699998, + 236.589480073, + 242.184365195, + 241.720861879, + 240.649894192, + 237.47675890600001, + 231.046839514, + 172.05518534, + 184.899454182, + 163.562893133, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.5541475828, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 200.617016163, + 210.099722247, + 212.008134349, + 212.526730599, + 216.923402206, + 222.34166815, + 222.898898747, + 221.98246532500002, + 174.675610568, + 185.488473929, + 163.35897374799998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 61.7496834272, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 196.14903942799998, + 200.979852951, + 204.777076461, + 207.758793371, + 210.026644951, + 211.412041642, + 211.97876583800002, + 211.430698105, + 147.402431281, + 121.546033664, + 116.464006474, + 80.0448304186, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.681495521, + 119.768466093, + 171.501467094, + 181.498424336, + 184.895790979, + 184.155641081, + 182.69058614899998, + 134.191317297, + 87.97936194260001, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 62.98046543219999, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.883503533, + 202.866688502, + 206.586106716, + 208.679171115, + 209.895620463, + 210.35137208400002, + 210.082367207, + 209.400225399, + 163.707074051, + 176.410700254, + 152.162410293, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 62.98046543219999, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 198.322433482, + 208.729888732, + 213.159178693, + 213.76833552500003, + 213.82284062699998, + 212.874002935, + 166.840389474, + 180.033177695, + 153.99827208, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 62.98046543219999, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.30667216499998, + 201.30676036600002, + 203.328543577, + 158.02720595600002, + 169.819311538, + 151.178592192, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 63.0261606101, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 197.937796059, + 205.795664687, + 213.598513145, + 216.909759672, + 216.764355351, + 216.326048386, + 215.631023492, + 167.168412844, + 176.769279425, + 152.636231673, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 63.0249747072, + 77.07869863719999, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 203.499763021, + 217.296073196, + 222.426572728, + 224.251359393, + 225.433316387, + 225.34873791, + 223.743406501, + 177.023401525, + 184.169007475, + 160.817776863, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 61.7496834272, + 59.3628108282, + 94.79014998310001, + 150.529827575, + 214.786579613, + 227.589171661, + 239.527162787, + 248.14582591, + 251.66286369699998, + 252.424525171, + 252.60021714, + 249.11577551000002, + 171.769874748, + 138.143275244, + 133.964176464, + 88.9348344682, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 59.3628108282, + 66.5788499331, + 142.991488061, + 161.61088609200002, + 207.631422641, + 210.72861926899998, + 218.78642796199998, + 218.960099493, + 213.966910334, + 174.599161787, + 121.305798953, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 62.98046543219999, + 77.07648040560001, + 143.866538341, + 241.618836129, + 265.932801625, + 292.406588006, + 295.434293796, + 291.19279942, + 288.848613249, + 285.897484823, + 277.195818539, + 264.168571785, + 205.60041851900002, + 208.068703894, + 185.64117534599998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 62.98046543219999, + 77.07648040560001, + 139.885619403, + 236.64177797699998, + 249.36142481899998, + 261.1117166, + 275.680721094, + 283.268494788, + 280.32660796500005, + 281.525644753, + 276.936409299, + 264.137962324, + 205.94523129, + 209.18248175099998, + 186.043015931, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 62.98046543219999, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 198.16344397999998, + 214.520777366, + 220.770635301, + 226.825583731, + 230.244005141, + 229.90939154, + 229.66927497499998, + 226.170757233, + 175.770836361, + 181.450163835, + 155.446193389, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 62.98046543219999, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 198.954976235, + 215.80226492100002, + 222.020025147, + 224.564123191, + 225.538624564, + 225.075392583, + 223.360809678, + 220.62541697199998, + 173.207926217, + 178.093387537, + 154.00316302299998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 62.98046543219999, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 203.171695593, + 217.86713158199998, + 223.39670778099998, + 223.280155045, + 222.31959707000001, + 221.06024597799998, + 218.64028216900002, + 174.30370242799998, + 179.37785151, + 154.294190983, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 61.7496834272, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 196.14903942799998, + 196.15255805400002, + 197.040689535, + 206.339816646, + 212.968841511, + 214.114830226, + 214.145269571, + 213.434455738, + 150.549732583, + 116.097590294, + 115.357945526, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 87.355433954, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.63566990509999, + 77.2197368443, + 130.21748913800002, + 196.14903942799998, + 196.551296041, + 211.29636516800002, + 226.809192685, + 237.936215056, + 241.010258355, + 237.79389514500002, + 231.753932945, + 223.840996823, + 175.315634249, + 176.551206329, + 154.233420694, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.4067832817, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.175786976, + 199.52310448199998, + 199.485088804, + 199.453834283, + 199.38242670900001, + 199.232735811, + 159.809412931, + 169.60365638, + 151.46535073799998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.5768522433, + 77.12765588890001, + 130.21748913800002, + 196.14903942799998, + 196.845124059, + 203.68806424899998, + 210.46546672899998, + 213.162283296, + 213.079543844, + 212.726840201, + 212.157658157, + 211.290153229, + 171.201570561, + 173.36903368199998, + 153.622255355, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.4519072739, + 77.07648040560001, + 130.21748913800002, + 196.28227086299998, + 200.124890026, + 207.369322402, + 216.791547347, + 226.142655338, + 228.361866015, + 229.00625290800002, + 228.582842013, + 226.616601066, + 180.120587065, + 185.292640872, + 162.606942899, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.4067832817, + 77.07648040560001, + 130.21748913800002, + 196.244352846, + 209.387916272, + 236.683150681, + 249.03723091099997, + 255.38981323000002, + 257.169972014, + 257.416496631, + 249.92899118999998, + 240.718714584, + 192.361402078, + 192.84873672, + 166.778553579, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 65.1760012766, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 196.292604999, + 205.950421074, + 219.290055362, + 223.851279447, + 225.373517207, + 225.812593938, + 224.864112475, + 222.514050567, + 157.365395581, + 118.957347285, + 117.713483262, + 80.60374977929999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.70647758, + 115.586861147, + 159.103688668, + 168.325722223, + 171.979737927, + 171.72235536, + 169.932169945, + 117.919639197, + 92.5905557596, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 113.162331361, + 128.316772078, + 174.335740746, + 171.55453517400002, + 170.771193573, + 167.70770348399998, + 162.640068615, + 114.452935049, + 90.857940986, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.4067832817, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 200.046502117, + 210.971033534, + 211.365441814, + 212.10641808, + 212.720523691, + 212.827895061, + 212.257508219, + 211.11464535399998, + 172.193883197, + 172.330119026, + 153.998246767, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.4067832817, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 205.21843715100002, + 220.48525487, + 221.011125554, + 220.624183885, + 219.682395684, + 218.88342658599998, + 215.74267220000002, + 173.244800605, + 171.65634912000002, + 152.640104396, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.4067832817, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.378047799, + 200.899474315, + 208.72073670700001, + 213.225462968, + 214.812326073, + 214.902870532, + 214.051026577, + 212.64542369199998, + 175.40044015200002, + 173.340638219, + 154.115625559, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.4067832817, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 196.186414175, + 196.806645621, + 198.149307974, + 199.4108906, + 200.718209621, + 201.195478259, + 200.960219611, + 200.817387429, + 164.874722101, + 171.120106711, + 152.376694652, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 68.6023191261, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 198.79150206, + 207.30273783299998, + 208.184655222, + 207.70133106900002, + 206.94152047400001, + 148.697301145, + 115.49634512899999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 112.503819561, + 94.20806965290001, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 69.9512472562, + 77.1369029879, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.38947618, + 199.28894790700002, + 202.308769753, + 203.696684209, + 203.478422587, + 203.103702867, + 168.084887712, + 170.08494646600002, + 151.897466353, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 70.123584253, + 77.1260844031, + 130.21748913800002, + 196.14903942799998, + 196.37279345000002, + 200.117998095, + 206.498542103, + 211.088663585, + 214.13934694300002, + 215.39685536800002, + 214.841333587, + 213.35693178, + 175.663577768, + 172.564299219, + 154.00964487500002, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 69.83310113120001, + 77.07648040560001, + 130.21748913800002, + 196.14903942799998, + 198.217383625, + 201.278214213, + 201.389805258, + 210.60450907, + 220.62475513, + 220.461539281, + 217.410253483, + 212.164102476, + 170.932583777, + 171.946066195, + 153.328241727, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 69.83310113120001, + 77.07648040560001, + 130.21748913800002, + 200.687825797, + 216.217236601, + 215.756529462, + 216.205413414, + 216.322602772, + 216.645915156, + 216.719398577, + 215.62730657900002, + 215.136803379, + 178.77743081699998, + 173.309140689, + 154.67514706600002, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 69.83310113120001, + 77.07648040560001, + 130.517865407, + 211.96986867, + 229.684646663, + 252.369312687, + 252.62634669, + 249.72356093599998, + 249.301101717, + 250.084787452, + 239.384870033, + 223.285072208, + 180.041193143, + 173.90315999499998, + 155.36426346800002, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 68.6023191261, + 59.3628108282, + 94.79014998310001, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.19243676, + 208.585512183, + 216.47936073399998, + 215.241382516, + 212.55655133599998, + 149.481020513, + 115.381513985, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 59.394839475, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931724899, + 147.931158716, + 112.503819561, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 69.96274588520001, + 77.24513760859999, + 130.259833664, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.180163821, + 211.53061052, + 216.939928181, + 215.875917945, + 212.557611355, + 172.890876477, + 168.587904659, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 70.009829063, + 77.1705626258, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 197.138448374, + 200.160305305, + 206.376955084, + 209.347153396, + 208.741051308, + 207.92116435900002, + 172.219932514, + 170.274739591, + 152.007691751, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 70.0072888922, + 77.153800937, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 197.476454927, + 203.27181209399998, + 208.232380387, + 207.813620745, + 207.497139312, + 207.292956326, + 206.522792678, + 171.51776048099998, + 169.837872588, + 151.853574438, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 69.97085777000001, + 80.5530840625, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.193785287, + 197.07870944500002, + 197.755326025, + 197.732020627, + 197.68919601099998, + 197.64886577, + 169.91404649799998, + 169.805917913, + 151.615885253, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 70.3854923508, + 80.82280454379999, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 198.467968935, + 202.979670069, + 203.681883435, + 203.601723444, + 203.59644526, + 203.388421103, + 202.606197414, + 171.497147801, + 170.53060463900002, + 151.881904481, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 69.12727279849999, + 63.2014436889, + 94.8048095768, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 197.301011178, + 199.167475956, + 199.792154885, + 199.670308751, + 199.499964387, + 199.282951602, + 152.70658983599998, + 115.70391593999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 14.7447166483, + 59.4317411192, + 59.3628108282, + 112.503819561, + 113.224869339, + 155.757087594, + 161.442367062, + 161.936476697, + 157.807669274, + 154.08893105500002, + 114.679629612, + 97.63831956339999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 70.3106119435, + 80.8063480597, + 130.21748913800002, + 196.14903942799998, + 197.372425174, + 211.746290201, + 228.795378151, + 237.878789592, + 243.79965079599998, + 247.786455876, + 240.210636495, + 228.52444482800001, + 187.85440626899998, + 181.883823438, + 158.51372840899998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 69.88910110249999, + 80.5163777291, + 130.21748913800002, + 196.233222347, + 202.644358184, + 221.298337928, + 234.60575976, + 244.36323793000003, + 242.875148112, + 234.38194826999998, + 224.155105243, + 215.987741967, + 181.486020301, + 173.903343234, + 153.02433753100001, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 69.8990998023, + 80.52613126540001, + 130.21748913800002, + 196.399584718, + 209.187755149, + 220.98142882300002, + 220.527582688, + 220.20678650099998, + 220.32038059, + 220.21884916300002, + 219.966630395, + 219.516925037, + 176.704516295, + 171.37767475500002, + 152.88116227999998, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 69.92872631430001, + 80.55051447640001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.184235258, + 198.08547725199998, + 199.840646167, + 199.710134664, + 199.65047105800002, + 199.489383739, + 202.637868588, + 170.482011034, + 169.389215938, + 150.876189156, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 70.5881472472, + 81.00156727720001, + 130.24777281500002, + 196.14903942799998, + 196.14903942799998, + 196.268049328, + 197.761952142, + 199.379635246, + 199.841058219, + 199.814018036, + 199.641445793, + 202.909046625, + 171.221833205, + 169.922150884, + 151.357198363, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 69.1023640495, + 63.1824647072, + 94.8235783483, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 199.575357277, + 150.775396235, + 115.34805707999999, + 115.34805707999999, + 79.9435045609, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 14.7447166483, + 59.884343028100005, + 59.4559285857, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 115.93013741, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 57.0991588005, + 77.1966537903, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.21256394699998, + 197.72073428, + 199.15573241799999, + 199.288897161, + 199.187009554, + 202.38204551599998, + 219.22265568, + 169.857476625, + 169.178864766, + 150.79597698, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.8673997584, + 77.31373180279999, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 202.02824735299998, + 211.869909613, + 212.658141272, + 212.404163692, + 210.979151542, + 205.44287732499998, + 219.513533787, + 169.83029883999998, + 169.360577727, + 151.024874843, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.527639650199994, + 77.1457538714, + 130.21748913800002, + 196.14903942799998, + 196.88917304, + 204.347238449, + 210.440341841, + 210.648497797, + 210.227013323, + 209.542757415, + 210.868605148, + 220.905786517, + 170.662971471, + 169.766650712, + 151.694152392, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.6693295448, + 77.1022734316, + 130.249568798, + 202.530317384, + 218.34906288, + 227.862844286, + 235.303339102, + 233.89110074799999, + 228.04885506099998, + 221.59214461099998, + 220.831344954, + 232.774019853, + 174.977792222, + 171.446330074, + 152.939777506, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.2532805711, + 77.07648040560001, + 130.21748913800002, + 197.463414153, + 211.39232482300002, + 225.40982387, + 230.89262451000002, + 232.11507810799998, + 229.976289192, + 226.940507828, + 223.188260116, + 230.926469628, + 173.202919624, + 172.218047644, + 153.73290166, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 54.9551974171, + 59.3628108282, + 94.79014998310001, + 148.960057412, + 213.436320118, + 223.22467256, + 224.022603661, + 225.347369859, + 229.757426569, + 229.650284175, + 223.70019022, + 232.24722252299998, + 154.424121275, + 118.031625811, + 117.506107634, + 80.3364116499, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 18.171034497799997, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 148.420554517, + 148.506316357, + 155.32570409099998, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.58880349539999, + 77.1821689592, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.7652937465, + 77.1289506922, + 130.21748913800002, + 196.14903942799998, + 196.193932329, + 198.78959593000002, + 206.36129141, + 210.717640034, + 210.322702173, + 209.86922537, + 208.927972959, + 219.62400217500002, + 170.53271117399999, + 169.43891061, + 150.940749445, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 56.956353165900005, + 77.2310929325, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.314719863, + 196.44246092199998, + 196.432049888, + 203.265797279, + 216.952387416, + 168.55294360000002, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 58.1075231296, + 78.681677573, + 131.614458448, + 197.003400865, + 196.522799561, + 196.603387576, + 196.41726301600002, + 196.14903942799998, + 196.342158997, + 196.304350599, + 203.256658026, + 217.179633282, + 168.99707058200002, + 168.97779117, + 151.284839882, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 61.214324398500004, + 77.8198209267, + 130.233479497, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 59.145902437000004, + 59.5537894429, + 94.79014998310001, + 147.931158716, + 196.14903942799998, + 196.174724376, + 196.75934470200002, + 197.01951262199998, + 197.00176695599998, + 196.971044648, + 203.772075453, + 217.404627504, + 151.02089641900002, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 21.5973523472, + 11.3183987988, + 59.478384562100004, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 154.783794414, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 60.2497903316, + 77.5801975138, + 130.419670254, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.45703523900002, + 196.816298287, + 196.77504233300002, + 203.581699902, + 217.257503008, + 168.77767391700002, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 60.0799069163, + 77.10475052460001, + 130.21748913800002, + 198.77954255, + 217.2082838, + 231.360496988, + 240.23498423, + 242.831744378, + 238.357847268, + 231.440364496, + 227.367610185, + 233.054605605, + 175.465536418, + 172.642907076, + 154.018150095, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 59.575491187900006, + 77.07648040560001, + 130.21748913800002, + 198.15943777500001, + 201.834349616, + 210.811998945, + 215.509077523, + 217.118372224, + 217.440854509, + 217.235596586, + 221.064734171, + 223.675506074, + 172.458072087, + 171.221855786, + 152.156044874, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 21.5973523472, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 154.783794414, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 60.471993278700005, + 77.7192411397, + 130.478251905, + 196.14903942799998, + 196.14903942799998, + 196.16210359500002, + 196.80013813, + 197.437122241, + 197.360895077, + 197.185435203, + 203.835170689, + 216.75021975899998, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 58.9608671368, + 59.7746959361, + 95.046408884, + 147.938882798, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 150.775396235, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 21.5973523472, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 154.783794414, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 60.177014169500005, + 77.1379328245, + 130.21748913800002, + 196.207753289, + 198.493760022, + 206.565113386, + 216.646844716, + 220.755104777, + 222.188827933, + 221.43199589000002, + 222.80333202100002, + 229.509496485, + 173.340909712, + 171.072895935, + 151.715346393, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 63.8589395508, + 77.4484246531, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.697239823, + 197.559504837, + 197.613774928, + 197.528597018, + 197.558187615, + 204.274627173, + 217.569462338, + 168.597588932, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.4028736323, + 77.4865201083, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 197.485072883, + 200.390219663, + 201.116859346, + 200.951448526, + 200.72852355999999, + 206.91808207900002, + 219.181938621, + 169.432359631, + 168.56968848900001, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.30970058, + 77.608487952, + 130.21748913800002, + 196.14903942799998, + 196.289403623, + 198.62568298300002, + 199.502806515, + 199.407039433, + 199.34224023599998, + 199.313019516, + 205.8118041, + 217.9260735, + 168.86329233, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.0436862193, + 77.52321013119999, + 130.219209996, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.7988953, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 63.2692404363, + 60.456450868699996, + 95.55870563719999, + 148.18754710899998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 150.786658811, + 115.522935929, + 115.623962647, + 80.35011228980001, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 25.0236701967, + 11.3183987988, + 61.2092338575, + 60.7963010474, + 113.73663268899999, + 113.687810522, + 149.012420174, + 148.99001692299998, + 148.974317342, + 148.997770406, + 155.887222219, + 133.933229452, + 98.6349997115, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 65.08633296139999, + 78.46717097, + 131.066854811, + 196.238714758, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.797835451, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.3072508739, + 77.64311909, + 130.225592042, + 196.14903942799998, + 196.684004283, + 202.937244375, + 207.060183594, + 201.87142001, + 200.734392375, + 199.55716218, + 207.960763172, + 217.121738483, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 63.6085891304, + 77.1730492765, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.42503495100001, + 196.822463939, + 196.806918171, + 196.79383854099999, + 196.75836777499998, + 206.979545447, + 217.225333288, + 168.98817268000002, + 168.640211285, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 63.6358553966, + 77.3177902876, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 206.427992976, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 64.1057948287, + 77.5683477194, + 130.230447138, + 196.14903942799998, + 196.169407646, + 197.063359668, + 197.679311279, + 197.667199385, + 197.651918973, + 197.671688657, + 207.895525242, + 217.90302774, + 169.32847182600003, + 168.5309635, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 66.2036203635, + 60.0406222799, + 94.8957532734, + 147.931158716, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 206.427992976, + 216.706946524, + 150.775396235, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 59.5543442746, + 59.3628108282, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 158.210112264, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.346509155, + 33.392057242599996, + 33.3695262576, + 68.2914835058, + 78.3719490132, + 130.729643972, + 196.159115006, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.500818925, + 168.921224596, + 151.619856366, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.2503839361, + 33.264699195, + 33.8027606411, + 34.095540346300005, + 34.4217098373, + 68.95656775009999, + 78.6505492145, + 130.649642476, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.3144229257, + 33.5815587627, + 34.0041479176, + 34.072259395399996, + 34.376078837, + 68.8762144113, + 78.3324955203, + 130.362274738, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.401671038399996, + 33.526202160900006, + 33.539112979, + 33.8001186573, + 34.1416222222, + 68.6781547491, + 77.97311474039999, + 130.23510433799999, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.2162920253, + 33.3363472554, + 68.1781353352, + 77.75184048460001, + 130.21748913800002, + 196.14903942799998, + 196.14903942799998, + 196.185549886, + 196.358975589, + 196.347234006, + 196.342833174, + 196.34058234999998, + 203.152505389, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 66.5327447411, + 60.066128698200004, + 94.8160268814, + 147.931158716, + 196.14903942799998, + 196.64884369499998, + 197.754728659, + 197.67726596699998, + 197.604659314, + 197.593504299, + 204.380933184, + 217.299449058, + 150.775396235, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 28.4499880461, + 11.3183987988, + 59.3628108282, + 59.3628108282, + 113.80123406199999, + 117.642375095, + 159.463086358, + 156.578329061, + 157.448420706, + 159.96683866200001, + 160.080286679, + 134.407984272, + 98.11667474869999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.4926085616, + 77.37189117829999, + 130.21748913800002, + 196.15579065699998, + 201.775190081, + 220.322473164, + 230.783975898, + 233.4242731, + 223.442354917, + 216.55591360399998, + 216.25951451, + 220.74618134899998, + 171.487835572, + 170.530549526, + 152.061209479, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 67.1381684582, + 77.1554385759, + 130.21748913800002, + 197.19499671100002, + 210.384370916, + 229.583653936, + 232.996633164, + 230.376094502, + 225.303298218, + 221.737355197, + 222.502660627, + 229.639300792, + 175.027679269, + 173.267111776, + 154.605506693, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.5574719854, + 77.07648040560001, + 130.21748913800002, + 197.495614601, + 211.289723669, + 228.414635967, + 240.400164001, + 240.365352027, + 232.697754887, + 227.321539928, + 220.44818051299998, + 221.588052683, + 171.721629148, + 170.467264839, + 151.877494568, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.76227187479999, + 77.0848090427, + 130.21748913800002, + 197.7928988, + 209.943545352, + 226.90393992900002, + 225.616668974, + 221.461725382, + 220.94573128300001, + 217.483815271, + 214.126789986, + 220.95895033399998, + 171.645244213, + 170.80300186300002, + 152.122239918, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 66.961547701, + 77.1679174736, + 130.21748913800002, + 196.64799258600002, + 201.46840092699998, + 206.680328333, + 206.41997232399999, + 206.39570768, + 206.36773063700002, + 206.6096921, + 209.828817381, + 219.97761011400002, + 170.185698645, + 169.240674484, + 150.87909960300001, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 66.1918194813, + 59.8862619068, + 94.8136124284, + 147.931158716, + 196.485604341, + 197.458121219, + 197.627222483, + 198.200383824, + 198.23184036, + 198.103221338, + 204.630425516, + 217.670389171, + 150.775396235, + 115.34805707999999, + 115.34805707999999, + 79.9207179249, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 59.781529059899995, + 59.3628108282, + 112.50802103299999, + 114.038338189, + 150.478289582, + 148.852011234, + 148.094607873, + 147.931158716, + 154.783794414, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.77559417169999, + 78.2239903833, + 130.455350508, + 196.14903942799998, + 196.814023813, + 209.828300482, + 226.23687999100002, + 217.81685062100001, + 209.17908017399998, + 204.858425148, + 205.35211895, + 217.829547982, + 169.216481009, + 168.543561939, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 59.695098535599996, + 59.3628108282, + 113.729637362, + 118.12289634, + 166.55101111599998, + 172.61114179, + 169.034032159, + 161.046656523, + 158.561292114, + 133.079947242, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 70.9102656636, + 77.8428545655, + 130.547628094, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.0642269696, + 77.9263248142, + 130.306171652, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 71.13484557039999, + 77.8049019394, + 130.294465699, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.775396235, + 60.9083742719, + 33.107087900699995, + 33.107087900699995, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 69.84820696710001, + 60.1350454134, + 95.0915201973, + 147.93454004400002, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.65061968499998, + 198.415645705, + 196.707236458, + 203.001675127, + 216.706946524, + 150.775396235, + 115.34805707999999, + 115.414618495, + 80.18184590189999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 11.3183987988, + 60.2770735445, + 59.620162439, + 112.503819561, + 112.503819561, + 147.931158716, + 147.931158716, + 147.931158716, + 147.931158716, + 154.783794414, + 133.061726657, + 97.63438750239999, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 31.876305895599998, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 33.107087900699995, + 70.6639834548, + 77.5810678375, + 130.464736801, + 196.150760285, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 196.14903942799998, + 203.001675127, + 216.706946524, + 168.489065812, + 168.489065812, + 150.790891642, + 60.9083742719, + 33.107087900699995, + 33.107087900699995 + ], + "critical_load_series_kw": [ + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.0825779467, + 16.1940740764, + 16.3792709196, + 16.36236526635, + 5.8159841199999995, + 30.4454442535, + 29.948087641, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 75.67873828249999, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.93463043525, + 39.144601623499995, + 65.2503425405, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 108.353473262, + 84.244532906, + 84.2459556135, + 75.425857705, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.7737453346, + 39.133430126049994, + 65.52504359250001, + 98.244702057, + 98.08727139, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 108.353473262, + 84.258767659, + 84.3606472095, + 75.54641717, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.8289266807, + 39.1525388612, + 65.4387355805, + 98.0766909895, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.7032525087, + 39.13324098535, + 65.73176077400001, + 98.6273313215, + 98.5803765585, + 98.5217491685, + 98.5224687115, + 98.5364321545, + 98.536721342, + 98.3879792935, + 100.0259452265, + 108.680057484, + 84.6323553725, + 84.696616961, + 75.87522944749999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 16.06619674345, + 16.4401459875, + 16.42034179565, + 16.5319430043, + 35.5986135471, + 30.8088586586, + 47.996797263800005, + 74.0402767375, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 108.353473262, + 75.3876981175, + 57.674028539999995, + 57.684197782999995, + 40.10646857055, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.0157476851, + 16.030614242, + 16.0572089538, + 5.697231791, + 30.045383660949998, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 75.67873828249999, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.793373751, + 39.14933736705, + 65.4495116485, + 98.08212518399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.80861916715, + 39.017204696200004, + 65.1718288305, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.6494164684, + 38.94465598535, + 65.144496535, + 98.07451971399999, + 98.0822480495, + 98.41418898399999, + 98.7151813425, + 98.676603145, + 98.6810024995, + 98.681689083, + 100.22670647749999, + 108.37881044100001, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.58504826065, + 39.0096579653, + 65.33071794199999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.57246591345, + 38.88007140075, + 65.1237501025, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 34.93611638135, + 30.0042599661, + 47.4168087889, + 73.965579358, + 98.07451971399999, + 98.484086617, + 99.896680656, + 101.850011469, + 103.0826315105, + 101.177759614, + 99.80134404750001, + 108.980054612, + 75.3876981175, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.3249371345, + 58.079079978500005, + 76.41081332350001, + 76.256148506, + 76.25560495549999, + 76.0934708835, + 74.99023676, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 30.08682480305, + 29.69035465255, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 66.5308633285, + 48.8279426668, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 36.0276125896, + 39.200030410000004, + 65.2527652505, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 108.353473262, + 84.244532906, + 84.244532906, + 75.392416238, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 36.05644885275, + 39.342321552650006, + 65.7206993975, + 98.559464615, + 98.559205739, + 98.33126073, + 98.2877148765, + 98.3097371195, + 98.3615093635, + 98.372864253, + 98.4283925325, + 108.8239585915, + 84.7904081745, + 84.8047097815, + 75.90711537600001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.57422693465, + 16.57898958425, + 16.6080614608, + 36.2021079645, + 39.2880445205, + 65.260379016, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.67504943475, + 38.89988518965, + 65.12451180949999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.9710777979, + 16.10178004525, + 16.1326024643, + 16.152001938799998, + 35.3153079417, + 30.28601806375, + 47.5725971765, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 108.353473262, + 75.3876981175, + 57.674028539999995, + 57.674028539999995, + 39.9845509273, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.09308223645, + 16.205957639999998, + 16.28593611605, + 16.415423073750002, + 5.931463814, + 30.1729329521, + 29.68818033495, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.622126355949998, + 16.553543950349997, + 35.8657489497, + 39.13145512685, + 65.2196297, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.62602431165, + 16.636828804500002, + 35.8115790579, + 39.04652165185, + 65.2027517455, + 98.07451971399999, + 98.07451971399999, + 98.1018454865, + 98.2329326805, + 98.225058757, + 98.23074081349999, + 98.227244665, + 98.220534113, + 108.3605367575, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.76813046775, + 38.8518314275, + 65.10874456900001, + 98.07451971399999, + 99.102700913, + 100.49345672199999, + 100.3190243075, + 104.961138758, + 108.712375115, + 107.2212460555, + 102.4426518805, + 108.2068983375, + 85.303369421, + 85.247404257, + 76.3916161165, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.50356531845, + 38.6383230115, + 65.10874456900001, + 98.07451971399999, + 99.03420573349999, + 105.994454397, + 112.12772770950001, + 115.5460249655, + 117.8097664995, + 118.3157915685, + 114.61594689649999, + 117.672513899, + 90.1234317925, + 85.8485134225, + 76.414337214, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.26244490135, + 38.5435328082, + 65.10874456900001, + 98.12839789399999, + 101.9768567665, + 109.30702717800001, + 115.797920811, + 120.55840448750001, + 120.18231262, + 114.024602098, + 106.36261798, + 112.312113923, + 89.94162105, + 86.9262679015, + 76.56327491, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 32.69633070685, + 29.71778223215, + 47.395074991550004, + 73.965579358, + 98.07451971399999, + 102.9431003075, + 112.213818456, + 113.129633114, + 110.564747535, + 106.2688053445, + 100.927779559, + 107.684346612, + 75.50069591500001, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 29.75501205395, + 29.6814054141, + 56.277154749000005, + 57.5316308305, + 75.73599943149999, + 75.72346821299999, + 75.702877039, + 75.23963964449999, + 74.5806606025, + 64.817704404, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.77251288715, + 38.86041186415, + 65.1401928685, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 106.6403143375, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.00752682465, + 39.03969494675, + 65.344951919, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 106.6403143375, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.0669362397, + 39.08994822935, + 65.4178807665, + 98.081606894, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 106.6403143375, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.79483765455, + 38.9582250467, + 65.365875693, + 98.1176908675, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 106.6403143375, + 84.244532906, + 84.244532906, + 75.41451564, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.8648353716, + 38.9932845652, + 65.4124149925, + 98.205875721, + 98.0872745625, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 106.6403143375, + 84.3019628105, + 84.4020390965, + 75.62017386400001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.003226943650002, + 33.82339635555, + 30.40652977085, + 47.5884316693, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 104.927155413, + 75.3876981175, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.974537339649999, + 14.33389988365, + 5.7636614557999994, + 30.09603338595, + 29.6915831959, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 63.10454547900001, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.063895478700005, + 38.99877963805, + 65.25398926849999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 104.927155413, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.85370309525, + 38.99961352365, + 65.3742951265, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 104.927155413, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.961788867799996, + 39.0103906644, + 65.2676472455, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 104.927155413, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.0097782284, + 38.9176217682, + 65.392000716, + 98.1764522985, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 104.927155413, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.406229639500005, + 39.1807677567, + 65.30615338749999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.50511811700001, + 99.93492709, + 100.323427327, + 99.89326239149999, + 105.715254201, + 84.3159407825, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 31.409527547600003, + 29.86456387985, + 47.395074991550004, + 74.009958864, + 102.2614060815, + 107.68623964199999, + 107.38768409849999, + 107.257512324, + 107.21726776999999, + 107.043520781, + 106.15184967649999, + 109.3470595985, + 76.505554181, + 58.0620030795, + 57.771072617, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 29.68157749985, + 29.6814054141, + 56.387758264999995, + 56.8663631285, + 75.3052176715, + 76.337036001, + 77.617099907, + 78.1841646625, + 77.19246588749999, + 64.193983108, + 48.841956917299996, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.72014607755, + 38.56333167815, + 65.10874456900001, + 101.31546794650001, + 108.67704792800001, + 114.570592078, + 119.6953879875, + 123.76539824900001, + 120.8625042015, + 117.8501001665, + 112.8659600795, + 112.4535447055, + 86.00407892850001, + 85.4208818675, + 76.210518069, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.69433838085, + 38.55758386465, + 65.10874456900001, + 98.46200540599999, + 104.7878013635, + 113.8479107225, + 112.661012328, + 110.62469788, + 110.5692181135, + 110.0599928795, + 108.207342968, + 107.82749134800001, + 85.795846215, + 85.2384394855, + 75.9498439935, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.7683217976, + 38.627071481899996, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.3166363135, + 98.704372847, + 98.685733684, + 98.6474697015, + 98.587141701, + 103.557016222, + 84.317359627, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.77875820095, + 38.7520692947, + 65.19417269350001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 103.213996488, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.0803201619, + 38.9238544249, + 65.32241882299999, + 98.10096803600001, + 98.07451971399999, + 98.1099485585, + 98.16790913550001, + 98.183795389, + 98.128775144, + 98.14318587, + 98.2381379585, + 103.40922031999999, + 84.47329634, + 84.5364651375, + 75.7103515275, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 32.0297434838, + 30.439978275399998, + 47.81290057175, + 73.98425708900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 103.213996488, + 75.3876981175, + 57.674028539999995, + 57.678596153499996, + 40.0606098906, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 30.0821584746, + 29.74040143045, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 61.391386554499995, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 10.7986761736, + 5.6591993994, + 30.3433534517, + 30.055558625899998, + 56.452568955000004, + 56.543683924, + 74.273772199, + 74.0816883225, + 73.965579358, + 73.965579358, + 73.965579358, + 61.41064672899999, + 48.95025825355, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.597227067, + 16.86142088345, + 16.95276079085, + 31.04917794345, + 39.32514993065, + 65.361963559, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 103.213996488, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.7035501998, + 16.73312733725, + 30.8322173642, + 39.0472604349, + 65.1741034485, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 103.213996488, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.53462322765, + 38.97310648845, + 65.230709216, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 103.213996488, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.54921717395, + 38.8935430045, + 65.2480167455, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 103.213996488, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 29.92588499115, + 30.031432651, + 47.413589192799996, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 75.3876981175, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 10.7986761736, + 5.6591993994, + 29.851854803, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.96810369299999, + 73.974135278, + 73.969446158, + 59.6782276295, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.5149274853, + 38.9054884566, + 65.152893856, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.58928989345, + 16.6712117219, + 29.014368063600003, + 38.9879468675, + 65.149562117, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.62608151605, + 29.021088645149998, + 39.10303874525, + 65.28393804650001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.0128575079, + 39.026534117900006, + 65.178799505, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.4750300706, + 38.809745577399994, + 65.197016767, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 28.0223609547, + 29.9175153636, + 47.40827822835, + 73.965579358, + 98.07451971399999, + 98.2979970045, + 99.784810022, + 106.800088075, + 109.18490448, + 105.790830107, + 103.4169707915, + 102.992785225, + 75.642756823, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 9.085517248899999, + 5.6591993994, + 29.74549684475, + 29.6814054141, + 56.703132699499996, + 60.994708945, + 85.008084238, + 84.48079325650001, + 84.26080761, + 84.1544003205, + 79.83234800550001, + 59.922803639, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.254090965150002, + 38.741919199950004, + 65.2686842935, + 98.1483184095, + 98.088164725, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.549023597, + 84.38970073899999, + 84.47456168800001, + 75.65605656999999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.8926355969, + 39.1859586324, + 65.5188762695, + 98.143165576, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 84.244532906, + 84.25666808849999, + 75.451234652, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.957832926650003, + 38.9207132366, + 65.317285544, + 98.097520554, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.84150755835, + 38.7268796795, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.6298624113, + 38.7182278429, + 65.17079464, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 26.22626591605, + 29.95655610885, + 47.540186799800004, + 73.9676873955, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 75.3876981175, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 7.37235832415, + 30.0456155229, + 29.7215369688, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 40.25139912755, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.2901045464, + 40.525427091400005, + 65.2632722925, + 98.0769185905, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 75.67873828249999, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.5568600344, + 40.697975590599995, + 65.378890203, + 98.1218256545, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 75.67873828249999, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.5281429471, + 40.67123797285, + 65.316404577, + 98.094495588, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 75.67873828249999, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.882804682599996, + 39.2413309782, + 65.5205912515, + 98.1212663485, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 75.67873828249999, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.874901270600006, + 39.2144245229, + 65.4506732905, + 98.0856400025, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 75.67873828249999, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 34.9812058788, + 30.2052614192, + 47.63853367615, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 66.821903494, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 30.0620452643, + 29.772577769199998, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 40.25139912755, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.716105598149994, + 39.0937862095, + 65.39172703, + 98.0816496265, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 75.67873828249999, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.85797168855, + 39.21343614665, + 65.508932277, + 98.1322463035, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.6939922987, + 39.106060531900006, + 65.5376964565, + 98.2354629665, + 98.28879297900001, + 98.3757997715, + 98.4060945505, + 98.2430134895, + 98.07451971399999, + 98.07451971399999, + 98.2617152675, + 98.359952571, + 74.2162483265, + 84.6214401975, + 75.83794524049999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.6161109316, + 16.80385561, + 16.900189342450002, + 17.0894780326, + 17.18735530235, + 34.500845624899995, + 39.6778908178, + 65.8190149585, + 98.303260816, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.108211023100004, + 39.19945496745, + 65.465470873, + 98.1024730355, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 84.244532906, + 75.4043754665, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 33.42202249885, + 30.3038349218, + 47.78403443285, + 74.00577666950001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 65.10874456900001, + 57.674028539999995, + 57.674028539999995, + 39.9776715248, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 30.26606783315, + 29.743317767649998, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 74.0091549725, + 74.1003288045, + 74.1015272545, + 56.2519097805, + 38.538240202800004, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.81322979065, + 38.9283390146, + 65.2449435765, + 98.07451971399999, + 98.201276773, + 100.2474496705, + 101.652857185, + 101.97067619, + 102.00452934799999, + 101.888690317, + 101.719283735, + 99.64102364050001, + 74.60950773249999, + 84.3163050885, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.7714846699, + 38.93409074305, + 65.346225398, + 98.083388106, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.7719505527, + 38.9428514243, + 65.263488485, + 98.07451971399999, + 98.07451971399999, + 99.08005053000001, + 104.90299253299999, + 106.2951802945, + 106.111169697, + 105.7534371105, + 102.310797865, + 99.6286412275, + 74.528792058, + 84.2919453025, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.7459353924, + 38.89293327575, + 65.18833862049999, + 98.07451971399999, + 98.091547128, + 101.4212421215, + 105.301703399, + 106.438027196, + 106.906674753, + 107.089153173, + 106.55631514950001, + 104.5557858225, + 76.033840651, + 85.00755424649999, + 75.8078738905, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.738759888049998, + 38.695693064349996, + 65.1137508905, + 98.07451971399999, + 98.373480019, + 104.17638291050001, + 112.0000967885, + 115.9307951655, + 115.167594537, + 111.7266678255, + 108.3912424595, + 105.6894239765, + 76.37602321300001, + 84.797570387, + 75.569770888, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 31.196115925300003, + 29.83895122005, + 47.396433216750005, + 73.97834893, + 103.862532371, + 111.8843373035, + 114.848854532, + 114.33741903149999, + 115.4735995335, + 117.5176985225, + 115.899542938, + 110.600640419, + 68.16186093399999, + 58.0223442855, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 29.9703804, + 29.7410299124, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 38.538240202800004, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.22035429725, + 39.058624137, + 65.41002795499999, + 98.1000492985, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 82.5313739815, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.218769849050005, + 39.025893668749994, + 65.3598359285, + 98.0825393955, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 82.5313739815, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.1781430978, + 38.992153010150005, + 65.308225655, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 82.5313739815, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.15163269125, + 38.9766922229, + 65.3506875785, + 98.086511172, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 82.5313739815, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.3051944862, + 38.8963122588, + 65.2511521695, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 82.5313739815, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 29.59059362355, + 29.977751991999998, + 47.4956488567, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.1326844555, + 98.253096204, + 98.24533985299999, + 65.23754952300001, + 55.9967731575, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 10.7986761736, + 5.6591993994, + 29.73717154105, + 29.6814054141, + 57.400733757, + 63.555959166, + 85.3892346655, + 84.66240955800001, + 84.54998130899999, + 84.77077988100001, + 84.0992064685, + 60.752022205500005, + 39.2549343904, + 14.22499402305, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.006203894400002, + 38.6792463663, + 65.11742348749999, + 98.07451971399999, + 98.5719937105, + 100.615668165, + 100.564999469, + 100.515721814, + 100.5242584085, + 100.453209724, + 100.386047686, + 100.3160942505, + 74.82932031450001, + 82.86647974399999, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.154258203, + 38.774642119949995, + 65.1661872405, + 98.07451971399999, + 98.07451971399999, + 98.769939488, + 100.97542737549999, + 99.794988612, + 99.81627336550001, + 99.8481498835, + 99.755589792, + 99.628686728, + 74.98569662099999, + 82.97013608450001, + 75.447970438, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.0859772802, + 38.74259781735, + 65.161837699, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.1829267285, + 108.31570781699999, + 113.132840591, + 122.20611606700001, + 126.77019099299999, + 97.8240336675, + 99.0090056835, + 85.966380652, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.8163008652, + 38.5473539508, + 65.10874456900001, + 99.6699328575, + 107.4967236595, + 112.8577478425, + 116.498263894, + 119.0662659385, + 117.9337545855, + 116.570822426, + 115.7777316775, + 112.69819825200001, + 84.1442926765, + 87.4325722595, + 76.11028948500001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.9844685124, + 38.64628622495, + 65.10874456900001, + 98.2896532875, + 105.214588052, + 112.7052671065, + 118.764563376, + 119.2667743785, + 116.571411585, + 113.6959118035, + 111.050585562, + 108.572857128, + 80.218289226, + 83.6385196615, + 75.7869844955, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 27.766196797950002, + 29.87146968385, + 47.4224870858, + 73.965579358, + 98.07451971399999, + 98.1910002095, + 98.449861798, + 98.44750059750001, + 98.4606926085, + 98.475484298, + 98.4592485795, + 98.44565389200001, + 65.4143694755, + 55.9864205155, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 9.085517248899999, + 5.6591993994, + 29.8536628029, + 29.683557641, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.9881702645, + 74.10245446249999, + 74.09985808350001, + 74.093550845, + 56.291121193, + 38.538240202800004, + 14.22499402305, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.37649750205, + 38.688605235850005, + 65.11368382549999, + 98.07451971399999, + 98.07451971399999, + 99.027266536, + 102.3699263665, + 103.486044883, + 103.670547322, + 104.3982462965, + 104.5091683105, + 104.547451092, + 78.333325131, + 81.56556923999999, + 75.782242934, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.362804532349998, + 38.706166010749996, + 65.12999856399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 80.81821505650001, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.43302460845, + 38.7792078132, + 65.180315173, + 98.07451971399999, + 98.07451971399999, + 98.07541311199999, + 98.0799822735, + 98.0800445175, + 98.0797548875, + 98.0794844955, + 98.085165414, + 98.089021464, + 73.972575285, + 80.8193637845, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.43945235235, + 38.7561919068, + 65.1409910565, + 98.07451971399999, + 98.07451971399999, + 98.147678406, + 98.91951918950001, + 99.83651969649999, + 99.82913775600001, + 99.81934135099999, + 99.7706321095, + 99.687567701, + 74.68196364500001, + 81.18023436249999, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.31848686665, + 38.715952223799995, + 65.1726954815, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 80.81821505650001, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 27.8789508453, + 29.9587233498, + 47.55333931545, + 73.968611831, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 65.10874456900001, + 54.2477106905, + 57.696065312, + 40.08440521925, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 7.37235832415, + 5.6591993994, + 30.291508921149997, + 29.97024752715, + 56.368615534499995, + 56.516424005, + 74.1090291735, + 74.0755285615, + 74.0581831785, + 73.965579358, + 73.965579358, + 56.2519097805, + 38.549083287849996, + 12.51183509835, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 27.4327187321, + 39.289454041300004, + 65.59513661449999, + 98.4908639695, + 98.4325366325, + 98.411894961, + 98.37822704749999, + 98.15379797099999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 74.01529572449999, + 80.9966867315, + 75.61964372349999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 27.44881694895, + 39.253230050300004, + 65.543318723, + 98.22877416200001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 80.81821505650001, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.98001427705, + 38.92502733415, + 65.285341212, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 80.81821505650001, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.780440215149998, + 38.82899404465, + 65.2773053045, + 98.1017682725, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 80.81821505650001, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.806280874, + 38.8043976762, + 65.223398863, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 80.81821505650001, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 26.095837045350002, + 29.915427358400002, + 47.519684413149996, + 73.96741295599999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.0808050295, + 65.263463118, + 54.455333335999995, + 57.885566324500004, + 40.239202856300004, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 7.37235832415, + 5.6591993994, + 30.2745937995, + 29.962516198899998, + 56.344493272, + 56.267772427000004, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 38.538240202800004, + 10.7986761736, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.817335614250002, + 38.94321656265, + 65.4309433115, + 98.229232273, + 98.1532929725, + 98.1667552745, + 98.1322353925, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.9712563835, + 79.16829470949999, + 75.4893785995, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 25.285536312599998, + 38.93723850365, + 65.2867743205, + 98.07628759, + 98.07451971399999, + 98.07451971399999, + 98.07608173099999, + 99.3772359005, + 100.97224349950001, + 103.5654563195, + 104.4670398935, + 104.2443513445, + 76.805748665, + 79.3005070185, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 25.0526140179, + 38.7669257163, + 65.15906666699999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.889705605, + 100.34668015000001, + 100.2601201925, + 100.14560295, + 74.228437207, + 79.1220970255, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.966954213749997, + 38.7251824636, + 65.13824255850001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 79.105056132, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.914231115350002, + 38.718921743799996, + 65.160539479, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 79.105056132, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 24.346634564600002, + 29.88478424175, + 47.443859023899996, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 65.10874456900001, + 52.5345517655, + 57.674028539999995, + 39.9707962686, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 5.6591993994, + 29.94468893035, + 29.75160823545, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 38.538240202800004, + 10.7986761736, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 25.20772197395, + 38.9113722418, + 65.2838871885, + 98.0782257885, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 79.105056132, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 25.10291610475, + 38.7388799874, + 65.1471903975, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 79.105056132, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 25.04683534885, + 38.73972842015, + 65.13433865900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07762824950001, + 98.4125936195, + 99.45013972950001, + 99.4176533365, + 99.3670331575, + 75.178842675, + 79.105056132, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 25.0315557433, + 38.748044128349996, + 65.152582342, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 100.112942657, + 103.1146375065, + 103.8031531255, + 103.977460202, + 104.0422972345, + 103.789045147, + 77.059183299, + 79.53550376349999, + 75.3958640065, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.9284872994, + 38.669260672, + 65.109604998, + 98.07451971399999, + 98.07451971399999, + 98.914075521, + 104.0672690395, + 106.425246153, + 106.543297326, + 107.4108553025, + 107.2972392715, + 106.87976042849999, + 80.991220238, + 80.66153840999999, + 75.69344206950001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 24.2217299462, + 29.8109096282, + 47.4013739491, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.090171598, + 103.9802415205, + 108.915255669, + 109.82659624, + 109.775747387, + 109.492552462, + 72.3325014055, + 51.914299741499995, + 57.7921588245, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 5.6591993994, + 29.75328453865, + 29.68226584285, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 74.0003858195, + 74.1052306435, + 74.10334893150001, + 56.360061197, + 38.538240202800004, + 9.085517248899999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.8947739529, + 38.69713367145, + 65.12364314300001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.8733779975, + 100.879678374, + 101.122568307, + 101.2416498085, + 101.3060311095, + 77.470243111, + 77.7773229635, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.84427306625, + 38.668243996950004, + 65.114800169, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.18095215950001, + 99.24662956, + 99.90963179799999, + 99.823073683, + 99.012067172, + 74.1656818915, + 77.3944474045, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.7906637734, + 38.58950744415, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.14365330999999, + 99.080680031, + 99.4961074835, + 99.4420439875, + 98.8686590675, + 74.13559627000001, + 77.399602915, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.82955535745, + 38.6512692668, + 65.11283657950001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.86233753100001, + 99.1306435645, + 99.0856345875, + 73.977917282, + 77.391897207, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.90641325095, + 38.6996055478, + 65.1374590735, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.080119521, + 98.08777506950001, + 98.0798573645, + 73.965579358, + 77.391897207, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 24.450311084400003, + 29.9549299947, + 47.5421516201, + 73.972313067, + 98.13752248200001, + 98.09615560099999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 65.10874456900001, + 50.821392841, + 57.6776660885, + 40.0692348465, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 5.6591993994, + 30.078942502, + 29.8210970983, + 56.25805029, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 38.538240202800004, + 9.085517248899999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 25.228991535, + 38.86566018155, + 65.2204601305, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 77.391897207, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 25.12755620965, + 38.792096295250005, + 65.1724004675, + 98.07451971399999, + 98.07451971399999, + 98.1167133315, + 99.5227166835, + 102.274793634, + 103.795954722, + 104.020673047, + 104.01104692, + 103.83659178100001, + 79.3118353685, + 78.4945888445, + 75.4054076095, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.851134248599998, + 38.6359764814, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.8409518985, + 102.92317837899999, + 104.9665383385, + 105.0344405235, + 105.09294939850001, + 105.0405470085, + 104.912416991, + 79.763824145, + 78.2358219175, + 75.4658001665, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.852472208800002, + 38.644191366049995, + 65.11371642499999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.53808654449999, + 101.01519648349999, + 100.942488137, + 75.508907719, + 77.47043376650001, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.87518614545, + 38.6542926558, + 65.1111213185, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 77.391897207, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 24.4149338129, + 29.914297248700002, + 47.5028781782, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 65.10874456900001, + 49.108233916299994, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 5.6591993994, + 29.903051375700002, + 29.72227263575, + 56.2519097805, + 56.2519097805, + 74.19253706399999, + 82.845769811, + 81.835713992, + 77.8156359045, + 77.747443099, + 56.9263559865, + 38.5730271334, + 7.37235832415, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 5.6591993994, + 29.683176006449997, + 29.73626586175, + 65.1229896185, + 66.6685203965, + 82.36290091949999, + 83.1155406765, + 84.16493020099999, + 84.30767627300001, + 84.1319761355, + 64.785758479, + 43.45933083715, + 7.37235832415, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.6824197736, + 38.538240202800004, + 65.10874456900001, + 98.397495229, + 104.96030631800001, + 116.49667624850001, + 125.3485198615, + 129.614585667, + 129.953774143, + 126.553789557, + 122.74303519050001, + 119.86900378450001, + 91.640410461, + 89.40377736500001, + 84.365770715, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.6375970172, + 38.538240202800004, + 65.3847079805, + 112.5923159425, + 116.96089152500001, + 119.9564857645, + 121.365255677, + 122.24165235449999, + 122.584946199, + 122.07127696849999, + 121.0927655665, + 118.8165402705, + 90.918069609, + 88.428238129, + 83.41055026549999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 99.5095982765, + 104.3736861725, + 108.076021092, + 111.3853889095, + 112.1137675825, + 112.22484593749999, + 111.9173828525, + 110.99680464299999, + 84.025984727, + 80.38118779050001, + 75.931102849, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.7645456989, + 38.5634999197, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.0820714715, + 98.083569401, + 98.08259700949999, + 73.96714483550001, + 75.67873828249999, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 24.45118104355, + 29.9022597602, + 47.42719078335, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 65.10874456900001, + 49.108233916299994, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 5.6591993994, + 29.80440449725, + 29.68674720725, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 38.538240202800004, + 7.37235832415, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.8659175196, + 38.67046969345, + 65.127930502, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 75.67873828249999, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.8864004115, + 38.686263518400004, + 65.14611579849999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 75.67873828249999, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.9972268198, + 38.7320919908, + 65.1614498665, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.0926665205, + 98.1946939165, + 98.5276904565, + 98.5231179035, + 98.5090164935, + 74.035529445, + 75.67873828249999, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.85323078675, + 38.658859346099995, + 65.1187689915, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.512523658, + 100.5101799765, + 102.0370543145, + 102.77261493900001, + 102.731653974, + 102.6019243785, + 78.15250407250001, + 76.2132925665, + 75.4087759195, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.89647456545, + 38.6915495788, + 65.200374519, + 98.0831517495, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 73.965579358, + 75.67873828249999, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 24.239757506049997, + 29.78970546825, + 47.40652278225, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.89913478300001, + 99.4453678495, + 99.4294224155, + 99.3984300045, + 65.10874456900001, + 49.108233916299994, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 5.6591993994, + 29.820554654250003, + 29.70076587055, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 38.538240202800004, + 7.37235832415, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.8207545339, + 38.63005241515, + 65.11143349199999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.0778579005, + 98.09465853750001, + 98.83328328350001, + 99.52713584150001, + 99.491815469, + 99.4463035005, + 74.10341802399999, + 75.6804045845, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.792715698, + 38.603152672600004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.074818134, + 98.075119262, + 98.8299726865, + 100.42173804849999, + 100.745459254, + 100.6691254005, + 75.0889036435, + 75.71202608349999, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.74819905295, + 38.55819528305, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.134949078, + 99.64461114150001, + 100.3980517225, + 101.4717044665, + 102.531204725, + 102.3231662175, + 76.570849369, + 74.2843985495, + 75.42635133350001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.78069449965, + 38.606508981850006, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.076195074, + 98.08343097599999, + 98.0873794715, + 98.0892656035, + 98.07966069899999, + 73.965579358, + 73.965579358, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.7705314446, + 38.57539444365, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.4018580045, + 100.097002415, + 101.4511615765, + 102.7237103545, + 102.899126854, + 102.8101124705, + 78.489795441, + 76.679797253, + 75.5173695845, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 24.0605712116, + 29.68233069455, + 47.395074991550004, + 73.965579358, + 98.106865837, + 101.0841984865, + 105.4311787465, + 109.37987640200001, + 110.2025223805, + 110.106283297, + 110.044432453, + 109.53034122349999, + 72.624522877, + 48.94768786115, + 57.815790512499994, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 74.85557142350001, + 76.6486767185, + 78.345169948, + 79.9282565995, + 79.80276618949999, + 57.219078826, + 38.5755843719, + 5.6591993994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.75890243015, + 38.5649196881, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.053949092, + 100.0896494125, + 100.100518945, + 100.08420307, + 100.006099403, + 99.9082008415, + 74.258121996, + 74.15843695400001, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.8153002288, + 38.5886831524, + 65.10874456900001, + 98.07451971399999, + 98.41094017649999, + 100.2762974655, + 100.823632952, + 104.59253954900001, + 106.2927868725, + 106.3431369085, + 106.1106743875, + 105.803979812, + 81.09481135050001, + 76.7224674645, + 75.681720489, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.7754382715, + 38.584280781000004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.32927582500001, + 101.412953309, + 104.046529235, + 104.87941281399999, + 104.8025715605, + 104.55395604, + 104.31471953350001, + 79.90974368750001, + 75.854134407, + 75.5403782275, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.776891838850002, + 38.57577934975, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 99.76304260350001, + 104.1914032345, + 104.620663188, + 106.0353637435, + 106.9046354225, + 106.6606356725, + 106.18468420549999, + 80.417686175, + 75.2866987745, + 75.5918085615, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.082401304, + 99.9826064155, + 104.6105425425, + 108.576571031, + 110.6723112655, + 111.6136799375, + 111.00487138449999, + 110.4935074435, + 84.0979102665, + 79.174549377, + 75.982940578, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 24.02220601465, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 98.5383789395, + 110.05741349200001, + 113.999216965, + 112.945096764, + 113.6094108915, + 114.5508630115, + 115.1980758365, + 114.4591934755, + 74.4598567975, + 49.1681128706, + 57.885195619, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 74.222457191, + 75.764132757, + 76.754648411, + 77.13613397350001, + 58.0670750005, + 38.71395976395, + 5.6591993994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.69545890765, + 38.5423859129, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.20278293749999, + 101.795334063, + 105.32650555000001, + 108.58004845800001, + 110.22819047200001, + 109.88940262850001, + 109.107339407, + 81.06871252799999, + 75.45764926449999, + 75.6639719495, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.7137012254, + 38.54808332525, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.261936882, + 103.438012876, + 106.6967666275, + 106.704439707, + 106.6051608935, + 106.4444750685, + 106.1870353095, + 80.029689635, + 74.575228202, + 75.503541145, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.7230965683, + 38.547733760949995, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.720249965, + 101.6266385345, + 105.0192813255, + 106.760430069, + 106.75185155950001, + 106.50619822350001, + 106.00392403250001, + 79.6834926185, + 74.8924384465, + 75.6280727015, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.787441059549998, + 38.55787165145, + 65.10874456900001, + 103.7157358635, + 111.682885724, + 116.451847537, + 119.7736773035, + 123.095066333, + 123.9530531285, + 122.98167910400001, + 121.066390728, + 118.97358759149999, + 90.774184351, + 86.7968559105, + 84.3044116275, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 13.12722610085, + 24.6375970172, + 38.538240202800004, + 65.12533963050001, + 103.92540889, + 108.63106910350001, + 111.78134960150001, + 114.5461656415, + 117.518939681, + 121.02665636100001, + 123.086457624, + 122.09142962950001, + 119.262618886, + 91.39474238049999, + 85.6809844815, + 82.8344959165, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 24.06052878525, + 29.6814054141, + 47.4059474023, + 79.506458408, + 111.4865675845, + 117.504894015, + 120.628722164, + 122.9542612945, + 123.73241124399999, + 124.38306695449998, + 124.08092479100002, + 121.4045366745, + 80.72656943999999, + 56.173797231, + 60.1531474245, + 40.03491110115, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 38.538240202800004, + 5.6591993994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.7316903037, + 38.5572363358, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.95304300549999, + 100.185989259, + 102.7322960095, + 103.9166169545, + 103.75106256800001, + 79.3955935405, + 79.045433323, + 77.1817460745, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.70121379215, + 38.543739571699994, + 65.10874456900001, + 98.07451971399999, + 101.3297835505, + 107.643005673, + 109.557296244, + 111.8548867815, + 113.6831708885, + 115.493852257, + 115.3395148735, + 114.413616875, + 87.420537263, + 82.8293598205, + 80.09490923, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 38.538240202800004, + 5.6591993994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.25556493799999, + 102.186426812, + 103.80815078350001, + 105.1826787485, + 105.1337966835, + 104.87968713149999, + 80.369826734, + 78.255194963, + 75.93032973, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.5178998955, + 100.5654403185, + 101.878097063, + 102.1018928885, + 102.0284399045, + 77.736246946, + 77.517235601, + 76.101244107, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 24.02220601465, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 101.618013412, + 110.721838854, + 116.811012113, + 117.714143703, + 117.158843518, + 116.258792849, + 76.4997686185, + 52.364946419, + 58.196102125500005, + 39.9884951618, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 75.504904454, + 77.589416531, + 82.70792497549999, + 87.89210913149999, + 88.64036956250001, + 69.7666886955, + 46.3452811303, + 5.6591993994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 66.25850553949999, + 113.9664126375, + 116.60045235, + 119.222204867, + 122.27633471300001, + 124.98375129349999, + 127.10502372650001, + 128.2145070425, + 126.33112191000001, + 123.362827512, + 94.19283686499999, + 88.481377155, + 85.6051942655, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 67.5720217275, + 112.88740766049999, + 119.73307786299999, + 125.1605309725, + 126.88683649699999, + 128.465518775, + 129.753566726, + 132.539087309, + 132.7933116995, + 130.21257019, + 101.069942099, + 94.533325387, + 89.903605437, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 67.14189700850001, + 115.8475416185, + 121.5966780915, + 126.05077643349999, + 127.1936540325, + 127.9809748335, + 128.313472323, + 128.1323022605, + 125.89580284949999, + 122.63381176399999, + 94.37587022849999, + 89.176380588, + 85.6415131485, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 105.61954479350001, + 116.2351462065, + 123.132957826, + 126.08916098700001, + 128.04073215900002, + 129.11147055400002, + 127.80120262349999, + 125.12898736250001, + 121.51650659500001, + 93.102217782, + 87.4112549905, + 83.9196726105, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.201426382, + 100.870341126, + 108.043829247, + 113.5026115145, + 115.12666378450001, + 116.0927701075, + 116.4660672955, + 115.8913312225, + 114.8027409455, + 87.7260825285, + 83.022551131, + 78.749471527, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 24.02220601465, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 98.5056369545, + 104.19129238000001, + 111.0012901955, + 114.49317870899999, + 115.0637801795, + 115.446988641, + 115.278668438, + 114.824216816, + 77.27180797349999, + 54.08669639, + 58.962694774, + 39.994794390050004, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 76.55055500499999, + 83.374017944, + 86.0951400615, + 87.6333574, + 87.85322121050001, + 65.872858506, + 42.5150894995, + 5.6591993994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 101.4725988615, + 106.991464841, + 111.183200587, + 113.600433052, + 115.46105588799999, + 114.6603609405, + 113.65976679900001, + 87.13302628950001, + 82.9784575945, + 79.9817974445, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 101.94198757849999, + 108.08649049499999, + 111.01771509849999, + 113.4245191075, + 115.2850335515, + 116.871717136, + 117.3675787595, + 116.828378692, + 89.2361396215, + 84.76491918650001, + 82.8880651015, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 100.9106653035, + 104.5776415355, + 105.313776128, + 105.8696295075, + 106.5448472575, + 106.4326949015, + 82.183966732, + 82.6350867725, + 78.2156423135, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 14.8403850256, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 100.120916935, + 105.1020621255, + 110.47345848100001, + 114.6150542015, + 116.325376807, + 116.265228491, + 115.5894763065, + 89.7562652895, + 87.68802828199999, + 83.714769661, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 99.5115198155, + 112.6334760985, + 121.72919103999999, + 124.9300380135, + 126.9959070095, + 127.92117094650001, + 128.82387967600002, + 126.441997756, + 123.35968583500001, + 93.99950367, + 89.61292562199999, + 85.34481716949999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 24.02220601465, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 103.318218385, + 113.92446185, + 118.9979349315, + 119.981733561, + 119.386244338, + 120.9652789635, + 121.179158092, + 118.904459311, + 79.020840908, + 57.763379549999996, + 61.109216667000005, + 40.094215501949996, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.446257946, + 58.971698352000004, + 83.861142602, + 86.41105387, + 86.6316176695, + 87.297133896, + 87.755024288, + 68.0561881215, + 44.829206153550004, + 7.37235832415, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 99.023954783, + 107.24564836, + 116.6032921625, + 121.3146564005, + 126.579338362, + 128.05321914450002, + 130.955755945, + 127.47155814850001, + 122.86419291850001, + 93.36085458849999, + 90.2077427515, + 85.806711276, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 107.893866117, + 118.49912048300001, + 124.45149363499999, + 126.46268787000001, + 127.58199420000001, + 128.69650144550002, + 131.8867148815, + 127.8163467635, + 122.1986416155, + 92.183294403, + 89.60867378900001, + 85.746205502, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 100.653546179, + 107.8834950575, + 112.179288825, + 115.994705307, + 118.6048207705, + 119.3606442375, + 119.490863164, + 119.3089969275, + 92.77170004300001, + 89.674168763, + 86.079882211, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.986541179, + 107.53341614050001, + 117.471673317, + 120.34857082250001, + 122.805129522, + 123.9309337275, + 123.40454924250001, + 123.23810907849999, + 121.35133927300001, + 92.6561785755, + 89.83503450299999, + 85.569152804, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 100.0380453975, + 109.4366592035, + 114.950201349, + 117.17236067200001, + 118.0798728485, + 118.3455187475, + 117.9996749235, + 116.951060973, + 89.018108679, + 86.366662973, + 83.38154724549999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 24.02220601465, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 99.8276717555, + 103.42660473849999, + 105.55044811949999, + 107.745210726, + 109.61132424399999, + 111.0611508775, + 111.92823737900001, + 111.902971008, + 76.5155853495, + 57.8136844635, + 65.0567171165, + 42.652120590100004, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 5.6591993994, + 29.6814054141, + 31.1959892523, + 70.2222167945, + 76.145575342, + 95.653250567, + 95.980896753, + 96.4818178135, + 96.769719349, + 97.24385985800001, + 75.3338623545, + 51.193795514, + 7.37235832415, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 98.3031800985, + 106.639465333, + 116.051234573, + 121.070413399, + 124.09400025949999, + 125.19334263049998, + 126.324991789, + 124.76082179, + 121.6738489145, + 92.383358554, + 89.3735286855, + 85.420714166, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 99.05172583950001, + 103.836835108, + 111.611364969, + 117.44211554600001, + 121.449534881, + 124.1227695555, + 125.5374492625, + 124.69232166399999, + 122.257759452, + 93.18103004800001, + 89.290489911, + 84.97104042, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.6375970172, + 38.538240202800004, + 65.1176375405, + 109.432100984, + 116.247222982, + 121.290821417, + 122.4213780935, + 122.74149551250001, + 124.00556954750002, + 124.255730952, + 122.85513109549998, + 119.4598299535, + 90.138168762, + 87.64367733600001, + 83.3689030555, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 24.6375970172, + 38.538240202800004, + 65.10874456900001, + 103.2313650195, + 114.884795205, + 119.9328321605, + 121.5725895435, + 123.6795043395, + 123.21239297650001, + 121.8436397855, + 120.479436604, + 118.86940033149999, + 90.98702227700001, + 87.965002201, + 83.58054681, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.350755941899997, + 38.538240202800004, + 65.10874456900001, + 100.2187111925, + 107.090884335, + 112.136661086, + 115.4704543155, + 118.110046928, + 120.007652036, + 120.9207385935, + 119.1136676825, + 115.0892407425, + 85.60316526199999, + 84.0992452295, + 76.8332797755, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 25.7353649394, + 29.6814054141, + 47.395074991550004, + 73.9890170895, + 102.7344778735, + 109.248836945, + 113.614591069, + 116.12307936900001, + 116.955275152, + 116.93424824, + 116.97998387800001, + 115.88804820850001, + 76.06602664399999, + 55.0790248525, + 58.154085583000004, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 7.37235832415, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.96681780200001, + 73.9728508735, + 73.9730341585, + 56.2519097805, + 38.538240202800004, + 9.085517248899999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.4696311204, + 38.57932254595, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.721630836, + 102.526891061, + 103.6413103965, + 103.921278915, + 103.94982162250001, + 103.6691431645, + 78.923162366, + 78.142360143, + 75.4938787635, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.350755941899997, + 38.538240202800004, + 65.10874456900001, + 106.5723235695, + 115.2429457885, + 121.3582935535, + 125.866542173, + 131.22838105600002, + 133.24959318350002, + 130.582288352, + 127.9746124005, + 125.721379226, + 97.300466358, + 96.0656522835, + 90.522113618, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.350755941899997, + 38.538240202800004, + 71.3876887365, + 122.0887274855, + 132.071247459, + 136.92776590449998, + 139.410629428, + 142.622872992, + 142.053435507, + 142.32849072099998, + 140.685513718, + 138.16884658950002, + 103.554567416, + 96.76132381000001, + 89.2872536695, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.350755941899997, + 38.538240202800004, + 74.247374478, + 123.81926745850001, + 127.0710472215, + 131.149196566, + 135.7862619045, + 138.2547452125, + 137.42002567650002, + 136.142020751, + 133.3719645715, + 128.4678150815, + 96.46473808799999, + 92.356682155, + 84.9595881415, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.350755941899997, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 100.2771266265, + 106.1926863065, + 109.237663123, + 111.495734559, + 112.9736252505, + 114.250065635, + 113.563866396, + 112.454392478, + 84.3534760835, + 82.84795954149999, + 76.7604849405, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 25.7353649394, + 29.6814054141, + 47.395074991550004, + 76.169729102, + 113.8194971735, + 121.9799879135, + 126.14345248250001, + 126.79732045349999, + 127.49644674099999, + 128.548936973, + 128.791614553, + 125.07050179400001, + 82.820631307, + 62.227269676999995, + 65.3153965275, + 41.579828543750004, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 7.37235832415, + 5.6591993994, + 30.36398131, + 38.56418102205, + 73.9699234825, + 76.711921145, + 97.2469863105, + 100.10779217800001, + 101.22941686349999, + 101.6841044265, + 102.153468472, + 77.562633183, + 52.2287982705, + 9.085517248899999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.350755941899997, + 38.538240202800004, + 67.54016762149999, + 115.398776982, + 122.450691236, + 127.067907426, + 130.3484219875, + 133.1675330145, + 133.7062781305, + 133.541069472, + 133.31985868299998, + 129.4667516495, + 98.081461809, + 96.281248806, + 88.446160667, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.350755941899997, + 38.538240202800004, + 66.3219265005, + 114.7456955005, + 121.307273055, + 127.749166759, + 131.99589525000002, + 134.0806961015, + 135.47079019650002, + 133.7065439435, + 128.8708658365, + 123.45612662100001, + 91.247185622, + 90.1801516615, + 82.72555009, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.350755941899997, + 38.538240202800004, + 65.8373695355, + 113.4342761735, + 119.6346558845, + 124.198484434, + 129.35077188949998, + 132.427889655, + 131.779884274, + 132.139186905, + 132.1066007105, + 129.11768543, + 99.075366267, + 98.3243006485, + 90.2452048965, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 26.350755941899997, + 38.538240202800004, + 66.98641178049999, + 113.8217701975, + 123.371187247, + 130.26919241849998, + 133.48686673350002, + 134.800083951, + 134.4857784165, + 134.2116456585, + 133.48389684199998, + 130.374245503, + 101.52964967449999, + 101.266937552, + 92.6670747485, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 66.6948833245, + 113.9870235475, + 121.6563049815, + 127.66573506649999, + 130.458446297, + 132.0456916665, + 132.660691222, + 134.20503489549998, + 130.6689188025, + 127.59405203150001, + 97.809020734, + 96.35648711450001, + 88.298672244, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 27.448523864149998, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 98.37961037800001, + 102.317561669, + 106.7069568515, + 109.43224908250001, + 110.5782993285, + 111.8254381835, + 112.041561828, + 110.93159926599999, + 72.53722045350001, + 54.0409914675, + 58.010326595, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 9.085517248899999, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 75.766344463, + 81.815189358, + 85.4450540325, + 86.235628731, + 85.909987848, + 63.015582513, + 39.1202787809, + 10.7986761736, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 99.57856702999999, + 108.386163217, + 114.17124043199999, + 114.8909977485, + 114.553968361, + 114.0865432885, + 111.8444075145, + 81.9259805715, + 82.106420631, + 76.01770572999999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 99.2244075455, + 103.2117403445, + 106.0345290405, + 110.1784575845, + 115.334009148, + 119.0254823785, + 117.9757162655, + 115.564619644, + 86.3782827425, + 87.0018835415, + 79.0875121685, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.906005388, + 104.7329590905, + 109.958110158, + 113.9721320375, + 117.550376593, + 120.8326032585, + 119.751085561, + 117.456939199, + 89.1187140585, + 92.0643412465, + 82.5418780255, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 65.10874456900001, + 98.856603051, + 105.904731116, + 112.5855224035, + 118.44904191750001, + 122.6140481425, + 122.31109569849998, + 121.66412383, + 120.6590813885, + 118.7614537405, + 89.937196151, + 92.26270043400001, + 84.141360355, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 65.11752844600001, + 108.36792885450001, + 115.513324659, + 122.6092998965, + 126.564580465, + 129.29565638, + 131.42179670299998, + 129.7605092885, + 125.015168193, + 120.5658893605, + 91.94805057699999, + 94.279485059, + 85.588974831, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 27.448523864149998, + 29.6814054141, + 47.395074991550004, + 78.436067533, + 115.1087757225, + 123.52458085, + 125.94829589100001, + 127.2252509255, + 127.0845925815, + 126.623012566, + 126.36474425399999, + 122.54231222349999, + 80.9461534815, + 63.917273131500004, + 64.197416722, + 41.45744072305, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 9.085517248899999, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 62.082105059, + 67.51015071100001, + 88.367257158, + 89.818122027, + 90.1951613725, + 89.99398933650001, + 89.7591444715, + 68.68988172, + 46.58827514235, + 12.51183509835, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 65.13061326149999, + 109.862147961, + 118.22139845299999, + 123.62562890999999, + 127.10728094899999, + 130.0743697135, + 129.323873212, + 128.371153034, + 125.740587304, + 122.25569754649999, + 92.9527644205, + 94.160716957, + 84.7064194075, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 65.10874456900001, + 99.6367862175, + 107.333958589, + 113.915549052, + 117.2764752375, + 119.65772892, + 120.182429729, + 119.95241448450001, + 118.9179383785, + 117.6908526795, + 90.238035454, + 92.23871880099999, + 82.7468352855, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 100.605584376, + 106.889535117, + 110.05855841099999, + 112.30064140549999, + 115.370264698, + 117.899387194, + 117.81953024250001, + 116.900405533, + 89.095411941, + 90.695407268, + 81.948850938, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 65.10874456900001, + 98.19100942249999, + 103.0133978325, + 113.152031802, + 119.9852859475, + 122.857026547, + 123.150543429, + 122.66299794400001, + 121.574039939, + 119.29303115500001, + 91.6366685375, + 95.3755300295, + 84.6277742065, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.06391486665, + 38.538240202800004, + 65.10874456900001, + 101.9675730595, + 109.98929742600001, + 115.5836649755, + 118.733202857, + 121.23577631799999, + 121.7396387005, + 121.181777618, + 120.110977838, + 118.5940835635, + 90.027676251, + 91.4106896205, + 78.0069089645, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 29.16168278885, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 98.07451971399999, + 102.673983619, + 110.471298396, + 115.611588259, + 121.0367787095, + 122.54923143449999, + 121.71594524950001, + 119.0544865785, + 76.4636212705, + 60.116647734, + 58.8665490725, + 40.26749078425, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 10.7986761736, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.889338365, + 84.24261981699999, + 90.415524385, + 91.592144136, + 91.478047438, + 91.0225783585, + 69.229476718, + 45.418252755400005, + 14.22499402305, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 10.7986761736, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 76.3456176375, + 79.39554425, + 80.4498357515, + 80.481483693, + 80.64585825850001, + 61.89573148149999, + 39.31701452855, + 14.22499402305, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.7770737914, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.81437693150001, + 102.885747443, + 109.8649656105, + 113.0887828745, + 112.74937714149999, + 112.237909665, + 111.5738845745, + 84.8844686675, + 88.87583794150001, + 76.873737659, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.7770737914, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 100.03575540050001, + 108.39849860199999, + 112.281142535, + 116.75491578750001, + 119.6787577795, + 120.7570521335, + 120.290778801, + 118.676176481, + 89.874692803, + 94.0731507685, + 83.913367307, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.7770737914, + 38.538240202800004, + 65.10874456900001, + 100.17787604450001, + 108.155114574, + 118.30860883749999, + 122.98947928199999, + 124.84939894050001, + 127.7366576185, + 127.00572252399999, + 124.87344863199999, + 122.19279302049999, + 93.96505543449999, + 98.63537804, + 88.814470721, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.7770737914, + 38.538240202800004, + 65.674524028, + 111.987675254, + 120.57868615, + 125.2618316465, + 127.4239487865, + 130.292708685, + 132.097617496, + 131.818983883, + 129.100727693, + 126.481037137, + 98.407044027, + 103.4635876845, + 91.09182340650001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 29.16168278885, + 29.6814054141, + 47.4271306465, + 85.70074720400001, + 122.47165682949999, + 128.528834685, + 131.2197374425, + 132.9692197425, + 133.1125947505, + 131.414336281, + 129.0741575905, + 126.427112199, + 85.501031224, + 72.47120231400001, + 70.172984917, + 49.02421880125, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 10.7986761736, + 5.6591993994, + 29.8000756819, + 34.8927002704, + 72.611094722, + 80.6513947765, + 103.289428459, + 104.70219727850001, + 105.9916498075, + 104.63350029499999, + 100.9241559485, + 77.138163046, + 51.259615565, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.7770737914, + 38.538240202800004, + 65.12949768349999, + 103.602417758, + 116.977713846, + 125.1737457485, + 126.3787931205, + 126.5913899655, + 126.83443130599998, + 126.9948845045, + 125.9342002915, + 122.409262843, + 91.70135293649999, + 97.69930817400001, + 86.6607349425, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.7770737914, + 38.538240202800004, + 65.10874456900001, + 98.3353901425, + 104.29916233649999, + 112.4661890095, + 118.7502110075, + 122.37251334749999, + 122.7405379585, + 122.51466001, + 122.05720197650001, + 120.25705749950001, + 91.464034618, + 97.427400197, + 85.28327483, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.7770737914, + 38.538240202800004, + 65.10874456900001, + 98.2402697995, + 103.760053735, + 110.2963628295, + 113.66177193200001, + 117.860636082, + 120.711001608, + 121.6164029345, + 120.0242237705, + 117.61488771799999, + 89.4122769105, + 95.068366515, + 82.957419254, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.7770737914, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.08368684649999, + 107.07448441849999, + 118.2947400365, + 121.0921825975, + 120.8604309395, + 120.324947096, + 118.73837945300001, + 115.523419757, + 86.02759267, + 92.449727091, + 81.7814465665, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.7770737914, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 100.3085080815, + 105.0498611235, + 106.0040671745, + 106.2633652995, + 108.461701103, + 111.170834075, + 111.4494493735, + 110.99123266250001, + 87.337805284, + 92.7442369645, + 81.67948687399999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 30.8748417136, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 98.07451971399999, + 100.4899264755, + 102.3885382305, + 103.8793966855, + 105.0133224755, + 105.706020821, + 105.98938291900001, + 105.7153490525, + 73.7012156405, + 60.773016832, + 58.232003237, + 40.0224152093, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.3407477605, + 59.8842330465, + 85.750733547, + 90.749212168, + 92.4478954895, + 92.0778205405, + 91.34529307449999, + 67.0956586485, + 43.989680971300004, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.490232716099996, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.4417517665, + 101.433344251, + 103.293053358, + 104.3395855575, + 104.9478102315, + 105.17568604200001, + 105.0411836035, + 104.7001126995, + 81.8535370255, + 88.205350127, + 76.0812051465, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.490232716099996, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.161216741, + 104.364944366, + 106.5795893465, + 106.88416776250001, + 106.91142031349999, + 106.4370014675, + 83.420194737, + 90.0165888475, + 76.99913604, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.490232716099996, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.65333608249999, + 100.65338018300001, + 101.6642717885, + 79.01360297800001, + 84.909655769, + 75.589296096, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.51308030505, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.9688980295, + 102.8978323435, + 106.7992565725, + 108.454879836, + 108.3821776755, + 108.163024193, + 107.815511746, + 83.584206422, + 88.3846397125, + 76.3181158365, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.5124873536, + 38.539349318599996, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 101.7498815105, + 108.648036598, + 111.213286364, + 112.1256796965, + 112.7166581935, + 112.674368955, + 111.8717032505, + 88.5117007625, + 92.0845037375, + 80.4088884315, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 30.8748417136, + 29.6814054141, + 47.395074991550004, + 75.2649137875, + 107.3932898065, + 113.7945858305, + 119.7635813935, + 124.072912955, + 125.83143184849999, + 126.2122625855, + 126.30010857, + 124.55788775500001, + 85.884937374, + 69.071637622, + 66.982088232, + 44.4674172341, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 29.6814054141, + 33.28942496655, + 71.4957440305, + 80.80544304600001, + 103.8157113205, + 105.36430963449999, + 109.39321398099999, + 109.4800497465, + 106.983455167, + 87.2995808935, + 60.6528994765, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.490232716099996, + 38.538240202800004, + 71.9332691705, + 120.8094180645, + 132.9664008125, + 146.203294003, + 147.717146898, + 145.59639971, + 144.4243066245, + 142.9487424115, + 138.5979092695, + 132.0842858925, + 102.80020925950001, + 104.034351947, + 92.82058767299999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.490232716099996, + 38.538240202800004, + 69.9428097015, + 118.32088898849999, + 124.68071240949999, + 130.5558583, + 137.840360547, + 141.634247394, + 140.16330398250003, + 140.7628223765, + 138.4682046495, + 132.068981162, + 102.972615645, + 104.59124087549999, + 93.0215079655, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.490232716099996, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 99.08172198999999, + 107.260388683, + 110.3853176505, + 113.4127918655, + 115.1220025705, + 114.95469577, + 114.83463748749999, + 113.0853786165, + 87.8854181805, + 90.7250819175, + 77.7230966945, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.490232716099996, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 99.4774881175, + 107.90113246050001, + 111.0100125735, + 112.2820615955, + 112.769312282, + 112.5376962915, + 111.680404839, + 110.31270848599999, + 86.6039631085, + 89.0466937685, + 77.00158151149999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.490232716099996, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 101.5858477965, + 108.93356579099999, + 111.69835389049999, + 111.6400775225, + 111.15979853500001, + 110.53012298899999, + 109.32014108450001, + 87.15185121399999, + 89.688925755, + 77.1470954915, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 30.8748417136, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 98.07451971399999, + 98.07627902700001, + 98.5203447675, + 103.169908323, + 106.4844207555, + 107.057415113, + 107.0726347855, + 106.717227869, + 75.2748662915, + 58.048795147, + 57.678972763, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 43.677716977, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.317834952549994, + 38.60986842215, + 65.10874456900001, + 98.07451971399999, + 98.2756480205, + 105.64818258400001, + 113.4045963425, + 118.968107528, + 120.5051291775, + 118.89694757250001, + 115.8769664725, + 111.9204984115, + 87.6578171245, + 88.2756031645, + 77.116710347, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.20339164085, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.587893488, + 99.76155224099999, + 99.742544402, + 99.7269171415, + 99.69121335450001, + 99.6163679055, + 79.9047064655, + 84.80182819, + 75.73267536899999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.28842612165, + 38.563827944450004, + 65.10874456900001, + 98.07451971399999, + 98.4225620295, + 101.84403212449999, + 105.23273336449999, + 106.581141648, + 106.539771922, + 106.3634201005, + 106.0788290785, + 105.6450766145, + 85.6007852805, + 86.68451684099999, + 76.8111276775, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.22595363695, + 38.538240202800004, + 65.10874456900001, + 98.14113543149999, + 100.062445013, + 103.684661201, + 108.3957736735, + 113.071327669, + 114.1809330075, + 114.50312645400001, + 114.2914210065, + 113.308300533, + 90.0602935325, + 92.646320436, + 81.3034714495, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.20339164085, + 38.538240202800004, + 65.10874456900001, + 98.122176423, + 104.693958136, + 118.3415753405, + 124.51861545549998, + 127.69490661500001, + 128.584986007, + 128.7082483155, + 124.96449559499999, + 120.359357292, + 96.180701039, + 96.42436836, + 83.3892767895, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 32.5880006383, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 98.1463024995, + 102.975210537, + 109.645027681, + 111.9256397235, + 112.6867586035, + 112.906296969, + 112.4320562375, + 111.2570252835, + 78.6826977905, + 59.4786736425, + 58.856741631, + 40.301874889649994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.35323879, + 57.7934305735, + 79.551844334, + 84.1628611115, + 85.9898689635, + 85.86117768, + 84.9660849725, + 58.9598195985, + 46.2952778798, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.5811656805, + 64.158386039, + 87.167870373, + 85.77726758700001, + 85.3855967865, + 83.85385174199999, + 81.3200343075, + 57.2264675245, + 45.428970493, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.20339164085, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 100.0232510585, + 105.485516767, + 105.682720907, + 106.05320904, + 106.3602618455, + 106.4139475305, + 106.1287541095, + 105.55732267699999, + 86.0969415985, + 86.165059513, + 76.9991233835, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.20339164085, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 102.60921857550001, + 110.242627435, + 110.505562777, + 110.3120919425, + 109.841197842, + 109.44171329299999, + 107.87133610000001, + 86.6224003025, + 85.82817456000001, + 76.320052198, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.20339164085, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.1890238995, + 100.4497371575, + 104.36036835350001, + 106.612731484, + 107.4061630365, + 107.451435266, + 107.0255132885, + 106.32271184599999, + 87.70022007600001, + 86.6703191095, + 77.0578127795, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.20339164085, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 98.0932070875, + 98.4033228105, + 99.074653987, + 99.7054453, + 100.3591048105, + 100.5977391295, + 100.4801098055, + 100.4086937145, + 82.4373610505, + 85.5600533555, + 76.188347326, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 34.30115956305, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.39575103, + 103.65136891649999, + 104.092327611, + 103.85066553450001, + 103.47076023700001, + 74.3486505725, + 57.748172564499995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 56.2519097805, + 47.104034826450004, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.9756236281, + 38.56845149395, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.69473809, + 99.64447395350001, + 101.1543848765, + 101.8483421045, + 101.7392112935, + 101.5518514335, + 84.042443856, + 85.04247323300001, + 75.9487331765, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.0617921265, + 38.56304220155, + 65.10874456900001, + 98.07451971399999, + 98.18639672500001, + 100.0589990475, + 103.2492710515, + 105.5443317925, + 107.06967347150001, + 107.69842768400001, + 107.4206667935, + 106.67846589, + 87.831788884, + 86.2821496095, + 77.00482243750001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.916550565600005, + 38.538240202800004, + 65.10874456900001, + 98.07451971399999, + 99.1086918125, + 100.6391071065, + 100.694902629, + 105.302254535, + 110.312377565, + 110.2307696405, + 108.7051267415, + 106.082051238, + 85.4662918885, + 85.9730330975, + 76.6641208635, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.916550565600005, + 38.538240202800004, + 65.10874456900001, + 100.3439128985, + 108.1086183005, + 107.878264731, + 108.102706707, + 108.161301386, + 108.322957578, + 108.3596992885, + 107.81365328950001, + 107.5684016895, + 89.38871540849999, + 86.6545703445, + 77.33757353300001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.916550565600005, + 38.538240202800004, + 65.2589327035, + 105.984934335, + 114.8423233315, + 126.1846563435, + 126.313173345, + 124.86178046799999, + 124.6505508585, + 125.042393726, + 119.6924350165, + 111.642536104, + 90.0205965715, + 86.95157999749999, + 77.68213173400001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 34.30115956305, + 29.6814054141, + 47.395074991550004, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.09621838, + 104.2927560915, + 108.23968036699999, + 107.620691258, + 106.27827566799999, + 74.7405102565, + 57.6907569925, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 29.6974197375, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.9658624495, + 73.965579358, + 56.2519097805, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.981372942600004, + 38.622568804299995, + 65.129916832, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.5900819105, + 105.76530526, + 108.4699640905, + 107.9379589725, + 106.2788056775, + 86.4454382385, + 84.2939523295, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.0049145315, + 38.5852813129, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.569224187, + 100.0801526525, + 103.188477542, + 104.673576698, + 104.370525654, + 103.96058217950001, + 86.109966257, + 85.1373697955, + 76.0038458755, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.0036444461, + 38.5769004685, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.7382274635, + 101.63590604699999, + 104.1161901935, + 103.9068103725, + 103.748569656, + 103.646478163, + 103.261396339, + 85.75888024049999, + 84.918936294, + 75.926787219, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.985428885000005, + 40.27654203125, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.0968926435, + 98.53935472250001, + 98.8776630125, + 98.8660103135, + 98.84459800549999, + 98.824432885, + 84.95702324899999, + 84.9029589565, + 75.8079426265, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.1927461754, + 40.411402271899995, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 99.2339844675, + 101.4898350345, + 101.8409417175, + 101.800861722, + 101.79822263, + 101.6942105515, + 101.303098707, + 85.7485739005, + 85.26530231950001, + 75.9409522405, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 34.563636399249994, + 31.60072184445, + 47.4024047884, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.650505589, + 99.583737978, + 99.8960774425, + 99.8351543755, + 99.7499821935, + 99.641475801, + 76.35329491799999, + 57.851957969999994, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 7.37235832415, + 29.7158705596, + 29.6814054141, + 56.2519097805, + 56.6124346695, + 77.878543797, + 80.721183531, + 80.9682383485, + 78.903834637, + 77.04446552750001, + 57.339814806, + 48.819159781699994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.15530597175, + 40.40317402985, + 65.10874456900001, + 98.07451971399999, + 98.686212587, + 105.8731451005, + 114.3976890755, + 118.939394796, + 121.89982539799999, + 123.893227938, + 120.1053182475, + 114.26222241400001, + 93.92720313449999, + 90.941911719, + 79.25686420449999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.944550551249996, + 40.25818886455, + 65.10874456900001, + 98.1166111735, + 101.322179092, + 110.649168964, + 117.30287988, + 122.18161896500001, + 121.437574056, + 117.19097413499999, + 112.0775526215, + 107.9938709835, + 90.7430101505, + 86.951671617, + 76.51216876550001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.94954990115, + 40.263065632700005, + 65.10874456900001, + 98.199792359, + 104.5938775745, + 110.49071441150001, + 110.263791344, + 110.10339325049999, + 110.160190295, + 110.10942458150001, + 109.9833151975, + 109.7584625185, + 88.3522581475, + 85.68883737750001, + 76.44058113999999, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 34.964363157150004, + 40.275257238200005, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.092117629, + 99.04273862599999, + 99.9203230835, + 99.855067332, + 99.82523552900001, + 99.7446918695, + 101.318934294, + 85.241005517, + 84.694607969, + 75.438094578, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.2940736236, + 40.500783638600005, + 65.12388640750001, + 98.07451971399999, + 98.07451971399999, + 98.134024664, + 98.880976071, + 99.689817623, + 99.9205291095, + 99.907009018, + 99.8207228965, + 101.4545233125, + 85.6109166025, + 84.961075442, + 75.6785991815, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 34.55118202475, + 31.5912323536, + 47.41178917415, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 99.7876786385, + 75.3876981175, + 57.674028539999995, + 57.674028539999995, + 39.97175228045, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 7.37235832415, + 29.942171514050003, + 29.72796429285, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 57.965068705, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.54957940025, + 38.59832689515, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.10628197349999, + 98.86036714, + 99.57786620899999, + 99.6444485805, + 99.593504777, + 101.19102275799999, + 109.61132784, + 84.9287383125, + 84.589432383, + 75.39798849, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.4336998792, + 38.656865901399996, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 101.01412367649999, + 105.9349548065, + 106.329070636, + 106.202081846, + 105.489575771, + 102.72143866249999, + 109.7567668935, + 84.91514941999999, + 84.6802888635, + 75.5124374215, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.263819825099997, + 38.5728769357, + 65.10874456900001, + 98.07451971399999, + 98.44458652, + 102.1736192245, + 105.2201709205, + 105.3242488985, + 105.1135066615, + 104.7713787075, + 105.434302574, + 110.4528932585, + 85.3314857355, + 84.883325356, + 75.847076196, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.3346647724, + 38.5511367158, + 65.124784399, + 101.265158692, + 109.17453144, + 113.931422143, + 117.651669551, + 116.94555037399999, + 114.02442753049999, + 110.79607230549999, + 110.415672477, + 116.3870099265, + 87.488896111, + 85.723165037, + 76.469888753, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.12664028555, + 38.538240202800004, + 65.10874456900001, + 98.7317070765, + 105.69616241150001, + 112.704911935, + 115.44631225500001, + 116.05753905399999, + 114.988144596, + 113.470253914, + 111.594130058, + 115.463234814, + 86.601459812, + 86.109023822, + 76.86645083, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 27.47759870855, + 29.6814054141, + 47.395074991550004, + 74.480028706, + 106.718160059, + 111.61233628, + 112.0113018305, + 112.6736849295, + 114.8787132845, + 114.8251420875, + 111.85009511, + 116.12361126149999, + 77.2120606375, + 59.0158129055, + 58.753053817, + 40.16820582495, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 9.085517248899999, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 74.2102772585, + 74.2531581785, + 77.66285204549999, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.294401747699997, + 38.5910844796, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.38264687325, + 38.5644753461, + 65.10874456900001, + 98.07451971399999, + 98.0969661645, + 99.39479796500001, + 103.180645705, + 105.358820017, + 105.1613510865, + 104.934612685, + 104.4639864795, + 109.81200108750001, + 85.26635558699999, + 84.719455305, + 75.4703747225, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 28.478176582950002, + 38.61554646625, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.1573599315, + 98.22123046099999, + 98.216024944, + 101.6328986395, + 108.476193708, + 84.27647180000001, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.0537615648, + 39.3408387865, + 65.807229224, + 98.5017004325, + 98.2613997805, + 98.301693788, + 98.20863150800001, + 98.07451971399999, + 98.1710794985, + 98.1521752995, + 101.628329013, + 108.589816641, + 84.49853529100001, + 84.488895585, + 75.642419941, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.607162199250002, + 38.90991046335, + 65.1167397485, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 29.572951218500002, + 29.77689472145, + 47.395074991550004, + 73.965579358, + 98.07451971399999, + 98.087362188, + 98.37967235100001, + 98.50975631099999, + 98.50088347799999, + 98.485522324, + 101.8860377265, + 108.702313752, + 75.51044820950001, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 10.7986761736, + 5.6591993994, + 29.739192281050002, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 77.391897207, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.1248951658, + 38.7900987569, + 65.209835127, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.22851761950001, + 98.4081491435, + 98.38752116650001, + 101.790849951, + 108.628751504, + 84.38883695850001, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.03995345815, + 38.552375262300004, + 65.10874456900001, + 99.389771275, + 108.6041419, + 115.680248494, + 120.117492115, + 121.415872189, + 119.178923634, + 115.720182248, + 113.6838050925, + 116.5273028025, + 87.732768209, + 86.321453538, + 77.0090750475, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 29.787745593950003, + 38.538240202800004, + 65.10874456900001, + 99.07971888750001, + 100.917174808, + 105.4059994725, + 107.7545387615, + 108.559186112, + 108.7204272545, + 108.617798293, + 110.5323670855, + 111.837753037, + 86.2290360435, + 85.610927893, + 76.078022437, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 10.7986761736, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 77.391897207, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.235996639350002, + 38.85962056985, + 65.2391259525, + 98.07451971399999, + 98.07451971399999, + 98.08105179750001, + 98.400069065, + 98.7185611205, + 98.6804475385, + 98.5927176015, + 101.9175853445, + 108.37510987949999, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 29.4804335684, + 29.88734796805, + 47.523204442, + 73.969441399, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 75.3876981175, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 10.7986761736, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 77.391897207, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 30.088507084750002, + 38.56896641225, + 65.10874456900001, + 98.1038766445, + 99.246880011, + 103.282556693, + 108.323422358, + 110.3775523885, + 111.0944139665, + 110.71599794500001, + 111.40166601050001, + 114.7547482425, + 86.670454856, + 85.5364479675, + 75.8576731965, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.9294697754, + 38.72421232655, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.3486199115, + 98.7797524185, + 98.806887464, + 98.764298509, + 98.7790938075, + 102.1373135865, + 108.784731169, + 84.298794466, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.20143681615, + 38.74326005415, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.7425364415, + 100.1951098315, + 100.558429673, + 100.475724263, + 100.36426177999999, + 103.45904103950001, + 109.5909693105, + 84.7161798155, + 84.28484424450001, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.15485029, + 38.804243976, + 65.10874456900001, + 98.07451971399999, + 98.1447018115, + 99.31284149150001, + 99.7514032575, + 99.7035197165, + 99.67112011799999, + 99.656509758, + 102.90590205, + 108.96303675, + 84.431646165, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.02184310965, + 38.761605065599994, + 65.109604998, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.39944765, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 31.63462021815, + 30.228225434349998, + 47.779352818599996, + 74.09377355449999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 75.3933294055, + 57.7614679645, + 57.8119813235, + 40.175056144900005, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 12.51183509835, + 5.6591993994, + 30.60461692875, + 30.3981505237, + 56.868316344499995, + 56.843905261, + 74.506210087, + 74.49500846149999, + 74.487158671, + 74.498885203, + 77.9436111095, + 66.966614726, + 49.31749985575, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.543166480699995, + 39.233585485, + 65.5334274055, + 98.119357379, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3989177255, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.15362543695, + 38.821559545, + 65.112796021, + 98.07451971399999, + 98.3420021415, + 101.4686221875, + 103.530091797, + 100.935710005, + 100.3671961875, + 99.77858109, + 103.980381586, + 108.5608692415, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.8042945652, + 38.58652463825, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.21251747550001, + 98.4112319695, + 98.4034590855, + 98.39691927049999, + 98.37918388749999, + 103.4897727235, + 108.612666644, + 84.49408634000001, + 84.3201056425, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 31.8179276983, + 38.6588951438, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 103.213996488, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 32.05289741435, + 38.7841738597, + 65.115223569, + 98.07451971399999, + 98.084703823, + 98.531679834, + 98.8396556395, + 98.8335996925, + 98.8259594865, + 98.8358443285, + 103.947762621, + 108.95151387, + 84.66423591300001, + 84.26548175, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 33.10181018175, + 30.02031113995, + 47.4478766367, + 73.965579358, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 103.213996488, + 108.353473262, + 75.3876981175, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 29.7771721373, + 29.6814054141, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 79.105056132, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.6732545775, + 16.696028621299998, + 16.6847631288, + 34.1457417529, + 39.1859745066, + 65.364821986, + 98.079557503, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.2504094625, + 84.460612298, + 75.809928183, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.62519196805, + 16.6323495975, + 16.90138032055, + 17.047770173150003, + 17.21085491865, + 34.478283875049996, + 39.32527460725, + 65.324821238, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.65721146285, + 16.79077938135, + 17.0020739588, + 17.036129697699998, + 17.1880394185, + 34.43810720565, + 39.16624776015, + 65.181137369, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.700835519199998, + 16.763101080450003, + 16.7695564895, + 16.90005932865, + 17.0708111111, + 34.33907737455, + 38.986557370199996, + 65.11755216899999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.60814601265, + 16.6681736277, + 34.0890676676, + 38.875920242300005, + 65.10874456900001, + 98.07451971399999, + 98.07451971399999, + 98.092774943, + 98.1794877945, + 98.173617003, + 98.171416587, + 98.17029117499999, + 101.5762526945, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 33.26637237055, + 30.033064349100002, + 47.4080134407, + 73.965579358, + 98.07451971399999, + 98.32442184749999, + 98.8773643295, + 98.83863298349999, + 98.802329657, + 98.7967521495, + 102.190466592, + 108.649724529, + 75.3876981175, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 14.22499402305, + 5.6591993994, + 29.6814054141, + 29.6814054141, + 56.900617030999996, + 58.8211875475, + 79.731543179, + 78.2891645305, + 78.724210353, + 79.98341933100001, + 80.0401433395, + 67.203992136, + 49.058337374349996, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.7463042808, + 38.685945589149995, + 65.10874456900001, + 98.07789532849999, + 100.8875950405, + 110.161236582, + 115.391987949, + 116.71213655, + 111.7211774585, + 108.27795680199999, + 108.129757255, + 110.37309067449999, + 85.743917786, + 85.265274763, + 76.0306047395, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.5690842291, + 38.57771928795, + 65.10874456900001, + 98.59749835550001, + 105.192185458, + 114.791826968, + 116.498316582, + 115.188047251, + 112.651649109, + 110.8686775985, + 111.2513303135, + 114.819650396, + 87.5138396345, + 86.633555888, + 77.3027533465, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.2787359927, + 38.538240202800004, + 65.10874456900001, + 98.7478073005, + 105.6448618345, + 114.2073179835, + 120.2000820005, + 120.1826760135, + 116.3488774435, + 113.660769964, + 110.22409025649999, + 110.7940263415, + 85.860814574, + 85.2336324195, + 75.938747284, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.381135937399996, + 38.54240452135, + 65.10874456900001, + 98.8964494, + 104.971772676, + 113.45196996450001, + 112.808334487, + 110.730862691, + 110.47286564150001, + 108.7419076355, + 107.063394993, + 110.47947516699999, + 85.8226221065, + 85.40150093150001, + 76.061119959, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 33.4807738505, + 38.5839587368, + 65.10874456900001, + 98.32399629300001, + 100.73420046349999, + 103.3401641665, + 103.20998616199999, + 103.19785384, + 103.18386531850001, + 103.30484605, + 104.9144086905, + 109.98880505700001, + 85.0928493225, + 84.620337242, + 75.43954980150001, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 33.09590974065, + 29.9431309534, + 47.4068062142, + 73.965579358, + 98.2428021705, + 98.7290606095, + 98.8136112415, + 99.100191912, + 99.11592018, + 99.051610669, + 102.315212758, + 108.8351945855, + 75.3876981175, + 57.674028539999995, + 57.674028539999995, + 39.96035896245, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 29.890764529949998, + 29.6814054141, + 56.254010516499996, + 57.0191690945, + 75.239144791, + 74.426005617, + 74.0473039365, + 73.965579358, + 77.391897207, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.887797085849996, + 39.11199519165, + 65.227675254, + 98.07451971399999, + 98.4070119065, + 104.914150241, + 113.11843999550001, + 108.90842531050001, + 104.58954008699999, + 102.429212574, + 102.676059475, + 108.914773991, + 84.6082405045, + 84.2717809695, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 29.847549267799998, + 29.6814054141, + 56.864818681, + 59.06144817, + 83.27550555799999, + 86.305570895, + 84.5170160795, + 80.5233282615, + 79.280646057, + 66.539973621, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.4551328318, + 38.92142728275, + 65.273814047, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.5321134848, + 38.9631624071, + 65.153085826, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.567422785199994, + 38.9024509697, + 65.1472328495, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.3876981175, + 30.45418713595, + 16.553543950349997, + 16.553543950349997, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 34.924103483550006, + 30.0675227067, + 47.54576009865, + 73.96727002200001, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.32530984249999, + 99.2078228525, + 98.353618229, + 101.5008375635, + 108.353473262, + 75.3876981175, + 57.674028539999995, + 57.7073092475, + 40.090922950949995, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 5.6591993994, + 30.13853677225, + 29.8100812195, + 56.2519097805, + 56.2519097805, + 73.965579358, + 73.965579358, + 73.965579358, + 73.965579358, + 77.391897207, + 66.5308633285, + 48.817193751199994, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 15.938152947799999, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 16.553543950349997, + 35.3319917274, + 38.79053391875, + 65.2323684005, + 98.0753801425, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 98.07451971399999, + 101.5008375635, + 108.353473262, + 84.244532906, + 84.244532906, + 75.395445821, + 30.45418713595, + 16.553543950349997, + 16.553543950349997 + ], + "bau_critical_load_met": true, + "bau_critical_load_met_time_steps": 0, + "annual_calculated_kwh": 1.0e6 + }, + "Messages": { + "errors": [], "warnings": [ [ "core_electric_utility.jl_187", @@ -16,12 +64836,6 @@ "When using stochastic outage modeling (i.e. outage_start_time_steps, outage_durations, outage_probabilities), \n emissions and renewable energy percentage calculations and constraints do not consider outages." ] ], - [ - "core_reopt.jl_547", - [ - "REopt solved with " - ] - ], [ "core_reopt.jl_641", [ @@ -32,10 +64846,137581 @@ [ "core_pv.jl_152", [ + "PV inv_eff will be ignored because dc_coupled_with_storage=true. The inverter of the DC coupled PV and electric storage system will be defined by ElectricStorage inverter_efficiency_fraction and rectifier_efficiency_fraction.", "PV inv_eff will be ignored because dc_coupled_with_storage=true. The inverter of the DC coupled PV and electric storage system will be defined by ElectricStorage inverter_efficiency_fraction and rectifier_efficiency_fraction." ] + ], + [ + "src_operators.jl_279", + [ + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y." + ] ] ] }, - "status": "error" + "PV": [ + { + "electric_to_grid_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "production_factor_series": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0286, + 0.450571, + 0.633268, + 0.744947, + 0.793452, + 0.78297, + 0.715558, + 0.588895, + 0.40189299999999994, + 0.101677, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028162, + 0.45753699999999997, + 0.642251, + 0.754753, + 0.803629, + 0.793688, + 0.7219990000000001, + 0.595598, + 0.408476, + 0.007211, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028044, + 0.19891999999999999, + 0.646805, + 0.767886, + 0.824961, + 0.815863, + 0.748986, + 0.618642, + 0.427358, + 0.109796, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10198600000000001, + 0.46055799999999997, + 0.646065, + 0.761364, + 0.808933, + 0.798491, + 0.731373, + 0.603872, + 0.418497, + 0.107887, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027690000000000003, + 0.44222100000000003, + 0.623648, + 0.736392, + 0.784879, + 0.774659, + 0.5752849999999999, + 0.384918, + 0.407344, + 0.051701000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034294, + 0.43924, + 0.607711, + 0.49395999999999995, + 0.470439, + 0.590503, + 0.701127, + 0.582704, + 0.406561, + 0.11155, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09420300000000001, + 0.423632, + 0.5959139999999999, + 0.7097100000000001, + 0.763675, + 0.760593, + 0.702431, + 0.5813189999999999, + 0.4016, + 0.1135, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.099858, + 0.451869, + 0.6443920000000001, + 0.768126, + 0.8269099999999999, + 0.819444, + 0.75181, + 0.627075, + 0.436331, + 0.131458, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026475000000000002, + 0.205537, + 0.631447, + 0.743663, + 0.795695, + 0.788168, + 0.726307, + 0.604583, + 0.425152, + 0.137095, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.04018, + 0.439099, + 0.618131, + 0.621395, + 0.559123, + 0.663237, + 0.450356, + 0.433272, + 0.25259899999999996, + 0.04169, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0039169999999999995, + 0.025873999999999998, + 0.168769, + 0.677282, + 0.745774, + 0.582485, + 0.5360069999999999, + 0.581296, + 0.369096, + 0.135547, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09023, + 0.421796, + 0.607395, + 0.726932, + 0.783492, + 0.777952, + 0.713266, + 0.5940599999999999, + 0.419165, + 0.147207, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.094402, + 0.425144, + 0.6031749999999999, + 0.7110639999999999, + 0.7654890000000001, + 0.7645, + 0.7089529999999999, + 0.594789, + 0.419214, + 0.144476, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10291800000000001, + 0.443369, + 0.627301, + 0.7420359999999999, + 0.660114, + 0.556516, + 0.502782, + 0.5106539999999999, + 0.335623, + 0.16300299999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.044334000000000005, + 0.40844600000000003, + 0.581538, + 0.505087, + 0.598952, + 0.344792, + 0.696433, + 0.224176, + 0.02542, + 0.017504000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09154999999999999, + 0.40002, + 0.591764, + 0.715178, + 0.777251, + 0.7770410000000001, + 0.7196910000000001, + 0.603445, + 0.42285700000000004, + 0.15934299999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.096468, + 0.403909, + 0.5793959999999999, + 0.693592, + 0.753745, + 0.585834, + 0.70137, + 0.5902000000000001, + 0.417464, + 0.16236699999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.073009, + 0.300634, + 0.329412, + 0.5555910000000001, + 0.6068490000000001, + 0.586326, + 0.375901, + 0.352163, + 0.16000399999999998, + 0.018201000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.079705, + 0.039686, + 0.182792, + 0.30805, + 0.276697, + 0.7603300000000001, + 0.70805, + 0.336334, + 0.277441, + 0.017983, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.098058, + 0.409474, + 0.606632, + 0.72363, + 0.7864650000000001, + 0.295967, + 0.053444000000000005, + 0.078268, + 0.007386, + 0.01093, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034525, + 0.169334, + 0.444776, + 0.56665, + 0.59008, + 0.608679, + 0.456737, + 0.347829, + 0.344897, + 0.182774, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.11413, + 0.428121, + 0.6001340000000001, + 0.713409, + 0.7776660000000001, + 0.7805700000000001, + 0.722752, + 0.609504, + 0.440609, + 0.182881, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10841500000000001, + 0.407538, + 0.589562, + 0.47498599999999996, + 0.598577, + 0.520196, + 0.482027, + 0.448958, + 0.284584, + 0.050682000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016729, + 0.157054, + 0.171817, + 0.261702, + 0.26113099999999995, + 0.276725, + 0.22903, + 0.07654000000000001, + 0.039643, + 0.015227000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.050504, + 0.15126699999999998, + 0.09453700000000001, + 0.163939, + 0.004285, + 0.751994, + 0.632285, + 0.448647, + 0.188441, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.100645, + 0.23713499999999998, + 0.44599500000000003, + 0.022806999999999997, + 0.5645410000000001, + 0.555473, + 0.448182, + 0.011151999999999999, + 0.418286, + 0.152155, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.125967, + 0.452179, + 0.666222, + 0.804135, + 0.833333, + 0.833333, + 0.8020309999999999, + 0.685693, + 0.493643, + 0.221669, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.149752, + 0.466714, + 0.659509, + 0.782608, + 0.833333, + 0.833333, + 0.779763, + 0.65934, + 0.479859, + 0.22078, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.149283, + 0.458294, + 0.637745, + 0.7479389999999999, + 0.797717, + 0.792046, + 0.561855, + 0.534002, + 0.260548, + 0.070947, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.044878999999999995, + 0.430502, + 0.616332, + 0.598413, + 0.643923, + 0.632186, + 0.5630850000000001, + 0.47594200000000003, + 0.33596499999999996, + 0.10489, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022372, + 0.260567, + 0.429184, + 0.832736, + 0.833333, + 0.780323, + 0.66086, + 0.482171, + 0.18476900000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10989, + 0.388042, + 0.584493, + 0.701311, + 0.760602, + 0.772002, + 0.7273310000000001, + 0.626444, + 0.457374, + 0.200685, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.15815, + 0.461204, + 0.650505, + 0.638783, + 0.667528, + 0.623993, + 0.761259, + 0.6451319999999999, + 0.479234, + 0.23832, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.173528, + 0.46302, + 0.6451699999999999, + 0.7592369999999999, + 0.815883, + 0.812612, + 0.753826, + 0.644084, + 0.478806, + 0.240957, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.164988, + 0.44464499999999996, + 0.6259880000000001, + 0.746251, + 0.803201, + 0.802269, + 0.743349, + 0.632984, + 0.468763, + 0.23313, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036122, + 0.217928, + 0.364184, + 0.5746359999999999, + 0.623495, + 0.5682590000000001, + 0.472519, + 0.459391, + 0.275068, + 0.086787, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.16855099999999998, + 0.43074799999999996, + 0.5974400000000001, + 0.71784, + 0.782592, + 0.790762, + 0.621947, + 0.512969, + 0.378907, + 0.15110900000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08886100000000001, + 0.30909800000000004, + 0.44502600000000003, + 0.539613, + 0.660063, + 0.516105, + 0.483675, + 0.375995, + 0.34377199999999997, + 0.13292099999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.077481, + 0.183764, + 0.364105, + 0.368695, + 0.294676, + 0.5210359999999999, + 0.5571889999999999, + 0.32177, + 0.28090899999999996, + 0.081801, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.15431, + 0.29091300000000003, + 0.43531200000000003, + 0.45634399999999997, + 0.5829500000000001, + 0.148619, + 0.16697800000000002, + 0.09240999999999999, + 0.076974, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020406, + 0.177107, + 0.077952, + 0.179719, + 0.512512, + 0.47045499999999996, + 0.522221, + 0.4382, + 0.348827, + 0.047588, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.426782, + 0.619888, + 0.7427630000000001, + 0.813002, + 0.8206509999999999, + 0.764043, + 0.65728, + 0.48028899999999997, + 0.23641, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.159789, + 0.41400200000000004, + 0.383481, + 0.7319880000000001, + 0.801713, + 0.8031459999999999, + 0.7624529999999999, + 0.6487050000000001, + 0.473391, + 0.012986000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.182844, + 0.444467, + 0.6377200000000001, + 0.307536, + 0.821686, + 0.82773, + 0.776646, + 0.6681739999999999, + 0.379492, + 0.244171, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.19666, + 0.4618, + 0.649791, + 0.778346, + 0.833333, + 0.833333, + 0.7903640000000001, + 0.674843, + 0.503323, + 0.261649, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.063964, + 0.46842399999999995, + 0.6415599999999999, + 0.753082, + 0.81137, + 0.8115950000000001, + 0.753113, + 0.6421979999999999, + 0.477145, + 0.250693, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.202893, + 0.44939999999999997, + 0.628192, + 0.7456470000000001, + 0.806683, + 0.810988, + 0.75764, + 0.646557, + 0.48032400000000003, + 0.24621700000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1977, + 0.44957100000000005, + 0.632799, + 0.75189, + 0.811101, + 0.8096230000000001, + 0.753838, + 0.640026, + 0.388192, + 0.047199, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.053673, + 0.270929, + 0.339274, + 0.450962, + 0.373411, + 0.21321, + 0.46469299999999997, + 0.467673, + 0.352525, + 0.161339, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025070000000000002, + 0.01982, + 0.026404, + 0.092708, + 0.593568, + 0.48880399999999996, + 0.646008, + 0.48217899999999997, + 0.250653, + 0.006632, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.20622300000000002, + 0.452774, + 0.62728, + 0.739916, + 0.801964, + 0.8072630000000001, + 0.7589349999999999, + 0.657741, + 0.488255, + 0.261502, + 0.009914, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.196677, + 0.43737200000000004, + 0.602696, + 0.7128479999999999, + 0.783792, + 0.797941, + 0.7564160000000001, + 0.655254, + 0.493145, + 0.26468, + 0.012121999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.195046, + 0.13467400000000002, + 0.126432, + 0.08637099999999999, + 0.4903, + 0.6004619999999999, + 0.547961, + 0.42044600000000004, + 0.32540199999999997, + 0.15460300000000002, + 0.0016979999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.234482, + 0.504428, + 0.693958, + 0.819987, + 0.833333, + 0.833333, + 0.833333, + 0.726069, + 0.545953, + 0.29538600000000004, + 0.007253999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.235769, + 0.493041, + 0.6696660000000001, + 0.783592, + 0.826952, + 0.813374, + 0.749607, + 0.651683, + 0.503247, + 0.280216, + 0.007592, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.223576, + 0.470523, + 0.6536109999999999, + 0.7803089999999999, + 0.833333, + 0.833333, + 0.591489, + 0.10359900000000001, + 0.031994, + 0.05282, + 0.015186, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.218893, + 0.46704399999999996, + 0.640811, + 0.762932, + 0.828513, + 0.833333, + 0.7819109999999999, + 0.674176, + 0.50845, + 0.273312, + 0.021475, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003749, + 0.492428, + 0.6835800000000001, + 0.6376040000000001, + 0.651986, + 0.833333, + 0.8287859999999999, + 0.711244, + 0.041110999999999995, + 0.049970999999999995, + 0.002016, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.248348, + 0.50992, + 0.695159, + 0.8175549999999999, + 0.833333, + 0.833333, + 0.833333, + 0.7190700000000001, + 0.542566, + 0.006356, + 0.0149, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025703, + 0.28707, + 0.22825299999999998, + 0.31976499999999997, + 0.484998, + 0.068646, + 0.47113, + 0.28612400000000004, + 0.080551, + 0.121452, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.065211, + 0.270589, + 0.34073899999999996, + 0.43450700000000003, + 0.564427, + 0.470264, + 0.440012, + 0.303741, + 0.20243799999999998, + 0.08629, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.000625, + 0.10296599999999999, + 0.274528, + 0.43856799999999996, + 0.6285890000000001, + 0.64235, + 0.6104959999999999, + 0.69977, + 0.5169210000000001, + 0.294677, + 0.117826, + 0.003814, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004866, + 0.23189099999999999, + 0.467852, + 0.439327, + 0.595376, + 0.635923, + 0.66084, + 0.491358, + 0.429028, + 0.481851, + 0.260872, + 0.025587, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006404, + 0.23831899999999998, + 0.468815, + 0.621392, + 0.729179, + 0.512265, + 0.7930119999999999, + 0.745931, + 0.522497, + 0.478852, + 0.125235, + 0.025823, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0023239999999999997, + 0.110476, + 0.26891000000000004, + 0.34832, + 0.735032, + 0.7888780000000001, + 0.626105, + 0.7520209999999999, + 0.644224, + 0.47677600000000003, + 0.258363, + 0.027822, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014503, + 0.248988, + 0.491815, + 0.6668529999999999, + 0.631985, + 0.66659, + 0.59104, + 0.587684, + 0.5590170000000001, + 0.390397, + 0.27675700000000003, + 0.0071070000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020686, + 0.26943599999999995, + 0.512773, + 0.6897960000000001, + 0.801706, + 0.833333, + 0.833333, + 0.784597, + 0.674201, + 0.508015, + 0.21973900000000002, + 0.023818000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00929, + 0.193048, + 0.490407, + 0.656295, + 0.763794, + 0.805766, + 0.783956, + 0.7152000000000001, + 0.624163, + 0.366973, + 0.205098, + 0.032366, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022431999999999997, + 0.257743, + 0.366151, + 0.652868, + 0.765331, + 0.8191269999999999, + 0.815251, + 0.763028, + 0.6505259999999999, + 0.48769999999999997, + 0.26577300000000004, + 0.03592, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022263, + 0.155226, + 0.333334, + 0.681357, + 0.642654, + 0.622414, + 0.6835019999999999, + 0.557971, + 0.494259, + 0.314836, + 0.19498, + 0.025546, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027193000000000002, + 0.266175, + 0.5036809999999999, + 0.675987, + 0.791523, + 0.833333, + 0.833333, + 0.7767229999999999, + 0.6628390000000001, + 0.49724599999999997, + 0.27077300000000004, + 0.039682, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.029364, + 0.263062, + 0.49554000000000004, + 0.665284, + 0.7763880000000001, + 0.831767, + 0.833333, + 0.776888, + 0.663154, + 0.49977699999999997, + 0.27498500000000003, + 0.042381999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034777, + 0.272615, + 0.500659, + 0.6572709999999999, + 0.754832, + 0.803843, + 0.802212, + 0.753706, + 0.6511849999999999, + 0.49210899999999996, + 0.27166500000000005, + 0.042554, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036937, + 0.272994, + 0.508205, + 0.674024, + 0.788607, + 0.833333, + 0.8306549999999999, + 0.774006, + 0.656318, + 0.49120199999999997, + 0.26981700000000003, + 0.04192, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.035573, + 0.258268, + 0.480442, + 0.625922, + 0.727953, + 0.766827, + 0.7822100000000001, + 0.740966, + 0.6431950000000001, + 0.49036, + 0.274265, + 0.044278, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.043862000000000005, + 0.28632799999999997, + 0.519708, + 0.687342, + 0.801947, + 0.833333, + 0.833333, + 0.796066, + 0.684133, + 0.458973, + 0.199952, + 0.034779000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.046604, + 0.29249200000000003, + 0.532813, + 0.701804, + 0.8111240000000001, + 0.833333, + 0.833333, + 0.7815610000000001, + 0.671753, + 0.5065930000000001, + 0.284866, + 0.048066000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.048201999999999995, + 0.293671, + 0.5304869999999999, + 0.694885, + 0.803686, + 0.833333, + 0.833333, + 0.7690710000000001, + 0.65273, + 0.49297399999999997, + 0.277183, + 0.047128, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020489999999999998, + 0.159672, + 0.297165, + 0.609066, + 0.676987, + 0.642823, + 0.636871, + 0.605011, + 0.443596, + 0.481607, + 0.26773, + 0.045341, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.048548, + 0.27296, + 0.489988, + 0.647985, + 0.748813, + 0.8024439999999999, + 0.8025789999999999, + 0.751006, + 0.6422720000000001, + 0.47753300000000004, + 0.258759, + 0.042466000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.048032, + 0.263108, + 0.477387, + 0.626881, + 0.70925, + 0.7532530000000001, + 0.7694719999999999, + 0.7346670000000001, + 0.63935, + 0.479748, + 0.26255900000000004, + 0.044708, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.052124000000000004, + 0.274038, + 0.36294099999999996, + 0.476195, + 0.705324, + 0.656172, + 0.6397569999999999, + 0.572809, + 0.531555, + 0.461238, + 0.18224100000000001, + 0.033141, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.050497999999999994, + 0.264375, + 0.351066, + 0.5514819999999999, + 0.745287, + 0.7885650000000001, + 0.7804439999999999, + 0.717212, + 0.434625, + 0.404483, + 0.19178399999999998, + 0.042551, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.052564, + 0.267226, + 0.47595800000000005, + 0.630185, + 0.7523869999999999, + 0.8087409999999999, + 0.80862, + 0.653411, + 0.6360990000000001, + 0.47718299999999997, + 0.256821, + 0.04431, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.059616999999999996, + 0.290353, + 0.5164500000000001, + 0.682253, + 0.797115, + 0.833333, + 0.16717400000000002, + 0.45448099999999997, + 0.46339199999999997, + 0.29006099999999996, + 0.10355299999999999, + 0.046447, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.059647, + 0.29149400000000003, + 0.513788, + 0.673314, + 0.769463, + 0.813923, + 0.8218840000000001, + 0.76376, + 0.654168, + 0.486163, + 0.110514, + 0.047460999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.060957, + 0.279205, + 0.487477, + 0.634207, + 0.7255739999999999, + 0.6654990000000001, + 0.664925, + 0.60641, + 0.559984, + 0.45113, + 0.24507900000000002, + 0.045424, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.061514000000000006, + 0.158634, + 0.34015300000000004, + 0.626716, + 0.743757, + 0.7635510000000001, + 0.576456, + 0.615402, + 0.624807, + 0.430882, + 0.166222, + 0.032039, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07167799999999999, + 0.320742, + 0.547427, + 0.710536, + 0.817975, + 0.833333, + 0.833333, + 0.792452, + 0.676607, + 0.5065919999999999, + 0.27848399999999995, + 0.049923, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06979600000000001, + 0.299483, + 0.5156040000000001, + 0.672848, + 0.783323, + 0.833333, + 0.833333, + 0.781905, + 0.670515, + 0.49901, + 0.0035600000000000002, + 0.001519, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.076033, + 0.325241, + 0.555669, + 0.7183440000000001, + 0.828828, + 0.833333, + 0.833333, + 0.8065650000000001, + 0.683909, + 0.5125149999999999, + 0.27913299999999996, + 0.051022, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07630500000000001, + 0.317442, + 0.534298, + 0.690827, + 0.788548, + 0.828337, + 0.812378, + 0.618195, + 0.6447459999999999, + 0.484323, + 0.267463, + 0.049756999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07509199999999999, + 0.295948, + 0.409665, + 0.5080330000000001, + 0.700648, + 0.754485, + 0.7657820000000001, + 0.722059, + 0.6255620000000001, + 0.46718200000000004, + 0.25702600000000003, + 0.049191000000000006, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.077741, + 0.301195, + 0.332797, + 0.548603, + 0.757414, + 0.8126749999999999, + 0.8148029999999999, + 0.760481, + 0.650139, + 0.488832, + 0.26615300000000003, + 0.051476, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.081947, + 0.31866500000000003, + 0.542439, + 0.707737, + 0.8066409999999999, + 0.833333, + 0.833333, + 0.79441, + 0.6744969999999999, + 0.294969, + 0.266897, + 0.053130000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.086087, + 0.322366, + 0.544869, + 0.707036, + 0.818068, + 0.833333, + 0.833333, + 0.781256, + 0.664436, + 0.493467, + 0.266914, + 0.05339, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.087821, + 0.32359, + 0.5374439999999999, + 0.691071, + 0.782223, + 0.81831, + 0.801588, + 0.740737, + 0.635092, + 0.48212900000000003, + 0.265005, + 0.052945, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.065011, + 0.30724, + 0.505894, + 0.6535359999999999, + 0.754046, + 0.80425, + 0.799144, + 0.743028, + 0.6292490000000001, + 0.46536500000000003, + 0.257074, + 0.050731, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.087405, + 0.30928300000000003, + 0.508621, + 0.6600090000000001, + 0.756638, + 0.8083859999999999, + 0.808361, + 0.753652, + 0.640535, + 0.471777, + 0.232572, + 0.045505000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09006399999999999, + 0.322381, + 0.529067, + 0.6774049999999999, + 0.7831319999999999, + 0.833333, + 0.831739, + 0.769178, + 0.653711, + 0.489156, + 0.267332, + 0.051216, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.318284, + 0.296548, + 0.688505, + 0.131945, + 0.40971199999999997, + 0.833333, + 0.775517, + 0.552646, + 0.324836, + 0.052094, + 0.001581, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.093538, + 0.32006999999999997, + 0.296445, + 0.6869059999999999, + 0.787072, + 0.833271, + 0.690156, + 0.75807, + 0.35645, + 0.170287, + 0.145337, + 0.030512, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.31214600000000003, + 0.530008, + 0.144901, + 0.017404, + 0.057464, + 0.02689, + 0.10618899999999999, + 0.104592, + 0.19900700000000002, + 0.06780599999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06933299999999999, + 0.342296, + 0.558711, + 0.7151430000000001, + 0.809067, + 0.833333, + 0.833333, + 0.772605, + 0.654187, + 0.490548, + 0.26618400000000003, + 0.049963, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0012330000000000002, + 0.09572, + 0.321052, + 0.5200220000000001, + 0.65449, + 0.728992, + 0.757262, + 0.762134, + 0.719857, + 0.620426, + 0.46901600000000004, + 0.253298, + 0.050327, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0016690000000000001, + 0.09465900000000001, + 0.31650599999999995, + 0.510839, + 0.647573, + 0.7342380000000001, + 0.7676499999999999, + 0.749907, + 0.70039, + 0.6027250000000001, + 0.454475, + 0.248599, + 0.049688, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002056, + 0.092822, + 0.314685, + 0.50071, + 0.627832, + 0.704061, + 0.742521, + 0.7506520000000001, + 0.709469, + 0.6083970000000001, + 0.456293, + 0.249084, + 0.04615, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004171, + 0.079361, + 0.312446, + 0.505381, + 0.5305059999999999, + 0.6073970000000001, + 0.768773, + 0.758687, + 0.707098, + 0.602851, + 0.451488, + 0.196221, + 0.046654, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00368, + 0.09466, + 0.31739999999999996, + 0.5110779999999999, + 0.641614, + 0.718328, + 0.7459199999999999, + 0.7219439999999999, + 0.656686, + 0.561312, + 0.423359, + 0.228249, + 0.047985, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0031160000000000003, + 0.09451000000000001, + 0.296693, + 0.48783800000000005, + 0.626103, + 0.7262540000000001, + 0.7552960000000001, + 0.730158, + 0.6605030000000001, + 0.552884, + 0.423077, + 0.234292, + 0.043821, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003677, + 0.095359, + 0.31258600000000003, + 0.494859, + 0.622539, + 0.699718, + 0.727936, + 0.7180639999999999, + 0.668481, + 0.574665, + 0.433135, + 0.237929, + 0.045067, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003932, + 0.095683, + 0.307305, + 0.48436, + 0.618182, + 0.715095, + 0.757069, + 0.752592, + 0.699485, + 0.595964, + 0.440961, + 0.24171299999999998, + 0.047500999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004831, + 0.102782, + 0.320268, + 0.511568, + 0.645338, + 0.736718, + 0.780067, + 0.771028, + 0.7257100000000001, + 0.616525, + 0.462174, + 0.253173, + 0.049109, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0065190000000000005, + 0.066915, + 0.314789, + 0.487471, + 0.6466580000000001, + 0.62102, + 0.356428, + 0.425276, + 0.453667, + 0.15556999999999999, + 0.141686, + 0.0891, + 0.023103000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.077063, + 0.22902, + 0.30123300000000003, + 0.35945499999999997, + 0.16671100000000003, + 0.455053, + 0.591701, + 0.5196029999999999, + 0.295059, + 0.328498, + 0.182773, + 0.046209, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006555, + 0.100576, + 0.321745, + 0.516317, + 0.65977, + 0.753534, + 0.7979740000000001, + 0.791191, + 0.350196, + 0.44869099999999995, + 0.18113900000000002, + 0.102381, + 0.017366, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008257, + 0.106676, + 0.332041, + 0.5264310000000001, + 0.663759, + 0.753968, + 0.789001, + 0.767882, + 0.705055, + 0.5944210000000001, + 0.445972, + 0.23931200000000002, + 0.0505, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008976000000000001, + 0.107257, + 0.32126499999999997, + 0.5135080000000001, + 0.654913, + 0.748992, + 0.775543, + 0.74678, + 0.6782, + 0.569312, + 0.42905, + 0.236399, + 0.048375, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010291, + 0.108006, + 0.31831099999999996, + 0.505023, + 0.638344, + 0.7184769999999999, + 0.7381449999999999, + 0.713146, + 0.660882, + 0.564436, + 0.424891, + 0.229594, + 0.051271000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010466, + 0.10596599999999999, + 0.310052, + 0.481008, + 0.612304, + 0.703692, + 0.747678, + 0.74293, + 0.6925560000000001, + 0.584621, + 0.430902, + 0.242638, + 0.04711, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010247, + 0.104661, + 0.324788, + 0.512518, + 0.644531, + 0.726992, + 0.750174, + 0.716337, + 0.652427, + 0.572123, + 0.433572, + 0.23425, + 0.046297, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011493, + 0.104272, + 0.31566500000000003, + 0.49829199999999996, + 0.623115, + 0.701994, + 0.725149, + 0.6996140000000001, + 0.654077, + 0.568095, + 0.42760000000000004, + 0.22891999999999998, + 0.048407, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010798, + 0.10084, + 0.30776299999999995, + 0.488156, + 0.612795, + 0.69465, + 0.720113, + 0.703209, + 0.640765, + 0.549727, + 0.410707, + 0.221828, + 0.049038, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012454, + 0.10273499999999999, + 0.29896100000000003, + 0.462991, + 0.5818289999999999, + 0.673712, + 0.715769, + 0.713335, + 0.662376, + 0.566331, + 0.421135, + 0.22682400000000003, + 0.050051000000000005, + 0.000265, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013356, + 0.10736, + 0.315653, + 0.475482, + 0.547633, + 0.649818, + 0.649512, + 0.755608, + 0.697936, + 0.478663, + 0.39053699999999997, + 0.211218, + 0.052392, + 0.000885, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017774, + 0.114646, + 0.269629, + 0.455324, + 0.634439, + 0.718846, + 0.765439, + 0.26036200000000004, + 0.315164, + 0.609187, + 0.455052, + 0.18510400000000002, + 0.061958, + 0.0011120000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021055, + 0.120321, + 0.326667, + 0.249369, + 0.6607000000000001, + 0.7526860000000001, + 0.796169, + 0.695712, + 0.331509, + 0.07050100000000001, + 0.382584, + 0.186471, + 0.050327, + 0.002114, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016376, + 0.114142, + 0.334106, + 0.523788, + 0.46036, + 0.743443, + 0.774518, + 0.7570990000000001, + 0.48442599999999997, + 0.47536399999999995, + 0.429522, + 0.23114099999999999, + 0.053783000000000004, + 0.001906, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017890999999999997, + 0.11111199999999999, + 0.305196, + 0.478737, + 0.6079049999999999, + 0.6958719999999999, + 0.740216, + 0.733753, + 0.680134, + 0.57128, + 0.422783, + 0.22766499999999998, + 0.060482999999999995, + 0.001453, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02252, + 0.118865, + 0.309426, + 0.489388, + 0.6264160000000001, + 0.72094, + 0.765513, + 0.758164, + 0.696181, + 0.592469, + 0.43827499999999997, + 0.234696, + 0.054144, + 0.002975, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020886, + 0.115802, + 0.315673, + 0.494723, + 0.63, + 0.7193780000000001, + 0.760879, + 0.752655, + 0.6970230000000001, + 0.592936, + 0.4432, + 0.23829599999999998, + 0.050184, + 0.003494, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01805, + 0.113789, + 0.322474, + 0.506938, + 0.6386000000000001, + 0.7380220000000001, + 0.7788529999999999, + 0.767454, + 0.707477, + 0.599621, + 0.447622, + 0.24037899999999998, + 0.049343000000000005, + 0.002857, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017647, + 0.11895900000000001, + 0.351456, + 0.5451950000000001, + 0.6781309999999999, + 0.758325, + 0.792749, + 0.776025, + 0.710465, + 0.606226, + 0.45502699999999996, + 0.24554900000000002, + 0.053021, + 0.0037949999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021425999999999997, + 0.11785899999999999, + 0.33396499999999996, + 0.520678, + 0.652086, + 0.738655, + 0.77783, + 0.768207, + 0.708399, + 0.603823, + 0.451034, + 0.244024, + 0.056997, + 0.0046, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025890999999999997, + 0.121327, + 0.32797000000000004, + 0.517463, + 0.656903, + 0.74773, + 0.787175, + 0.683625, + 0.145391, + 0.449699, + 0.448711, + 0.241917, + 0.059165, + 0.004690000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024353000000000003, + 0.116798, + 0.319142, + 0.502363, + 0.6362279999999999, + 0.721268, + 0.762564, + 0.753633, + 0.701221, + 0.594227, + 0.360646, + 0.212177, + 0.060020000000000004, + 0.006011, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023062000000000003, + 0.115385, + 0.318305, + 0.508492, + 0.649561, + 0.744592, + 0.787408, + 0.780338, + 0.716335, + 0.610981, + 0.456218, + 0.245863, + 0.053357999999999996, + 0.004723, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018521999999999997, + 0.11134999999999999, + 0.325488, + 0.507606, + 0.630612, + 0.700866, + 0.728102, + 0.714431, + 0.666462, + 0.568956, + 0.429075, + 0.23388399999999998, + 0.047885, + 0.004823, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018206, + 0.110859, + 0.326323, + 0.508023, + 0.63478, + 0.713638, + 0.7416079999999999, + 0.72251, + 0.6599729999999999, + 0.5539189999999999, + 0.419891, + 0.23247800000000002, + 0.049087000000000006, + 0.004857, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018628, + 0.107973, + 0.315065, + 0.490662, + 0.616642, + 0.689198, + 0.711938, + 0.687785, + 0.6243920000000001, + 0.5432359999999999, + 0.41836399999999996, + 0.22775299999999998, + 0.050698, + 0.005151, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018358, + 0.105473, + 0.303141, + 0.469229, + 0.596981, + 0.684713, + 0.72653, + 0.722366, + 0.670046, + 0.569789, + 0.426495, + 0.230902, + 0.048235, + 0.005031, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017026, + 0.105659, + 0.310141, + 0.476236, + 0.59358, + 0.669273, + 0.698151, + 0.688505, + 0.635335, + 0.545533, + 0.414512, + 0.225163, + 0.051445, + 0.005476, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020076, + 0.104229, + 0.297725, + 0.46619, + 0.588707, + 0.6781739999999999, + 0.717313, + 0.714263, + 0.663059, + 0.565624, + 0.42561200000000005, + 0.232578, + 0.047889, + 0.005946, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017606, + 0.105719, + 0.238644, + 0.491149, + 0.6243139999999999, + 0.560535, + 0.7503329999999999, + 0.7383970000000001, + 0.6829080000000001, + 0.583312, + 0.435453, + 0.236799, + 0.050226999999999994, + 0.006876999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022439, + 0.111043, + 0.32108800000000004, + 0.5059870000000001, + 0.639225, + 0.7277659999999999, + 0.766937, + 0.757749, + 0.703331, + 0.598426, + 0.44866500000000004, + 0.243835, + 0.050792000000000004, + 0.007489, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026583, + 0.116976, + 0.31985800000000003, + 0.503658, + 0.639937, + 0.731346, + 0.76786, + 0.7583289999999999, + 0.699305, + 0.593778, + 0.44572, + 0.241714, + 0.05638, + 0.00869, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025828, + 0.113846, + 0.309731, + 0.48231599999999997, + 0.603705, + 0.689261, + 0.72146, + 0.709804, + 0.661774, + 0.56584, + 0.428647, + 0.236154, + 0.052384, + 0.008686999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02186, + 0.107363, + 0.304884, + 0.47581, + 0.59627, + 0.677749, + 0.707368, + 0.692353, + 0.641794, + 0.5492480000000001, + 0.41504399999999997, + 0.227178, + 0.055352, + 0.008679000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022837, + 0.108329, + 0.297632, + 0.465415, + 0.591086, + 0.6747989999999999, + 0.712321, + 0.704955, + 0.513889, + 0.55824, + 0.41801, + 0.211184, + 0.060215000000000005, + 0.009994999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027086, + 0.10156399999999999, + 0.300896, + 0.47039299999999995, + 0.5929829999999999, + 0.675374, + 0.7154389999999999, + 0.7067680000000001, + 0.656062, + 0.561526, + 0.420931, + 0.23238499999999998, + 0.056902, + 0.01016, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026749, + 0.099407, + 0.22459, + 0.24485200000000001, + 0.5129360000000001, + 0.594277, + 0.499435, + 0.34096499999999996, + 0.113253, + 0.389322, + 0.17610800000000001, + 0.232566, + 0.058821, + 0.01137, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024446000000000002, + 0.10292, + 0.288817, + 0.470563, + 0.587526, + 0.6634479999999999, + 0.711379, + 0.6465850000000001, + 0.47048700000000004, + 0.480901, + 0.383762, + 0.194849, + 0.063973, + 0.011786, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022508, + 0.095442, + 0.233078, + 0.209598, + 0.457675, + 0.538803, + 0.615423, + 0.601993, + 0.558013, + 0.272806, + 0.23549199999999998, + 0.155949, + 0.056026000000000006, + 0.011869999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024080999999999998, + 0.104823, + 0.28908100000000003, + 0.456069, + 0.580834, + 0.6550900000000001, + 0.6732630000000001, + 0.647371, + 0.594966, + 0.51464, + 0.393495, + 0.216064, + 0.055954000000000004, + 0.012646000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022435, + 0.099913, + 0.288506, + 0.454903, + 0.576324, + 0.660193, + 0.700664, + 0.6987089999999999, + 0.650706, + 0.5555789999999999, + 0.417808, + 0.232491, + 0.056086, + 0.012664, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019122, + 0.062392, + 0.166643, + 0.126191, + 0.155042, + 0.553751, + 0.47687799999999997, + 0.709415, + 0.6657759999999999, + 0.45122, + 0.430092, + 0.239257, + 0.069127, + 0.013733, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025147, + 0.104072, + 0.302836, + 0.485308, + 0.618636, + 0.707659, + 0.7501230000000001, + 0.74401, + 0.6906680000000001, + 0.587548, + 0.44193400000000005, + 0.243698, + 0.060195, + 0.014825, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023091999999999998, + 0.107852, + 0.32506799999999997, + 0.514827, + 0.65712, + 0.7487910000000001, + 0.790323, + 0.781319, + 0.718595, + 0.6122340000000001, + 0.461611, + 0.25816300000000003, + 0.059158999999999996, + 0.014372, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02091, + 0.10786499999999999, + 0.329336, + 0.524165, + 0.662985, + 0.7509600000000001, + 0.7790929999999999, + 0.731245, + 0.706564, + 0.601442, + 0.45377999999999996, + 0.251438, + 0.057115, + 0.013441000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020297, + 0.103196, + 0.310813, + 0.49312900000000004, + 0.615524, + 0.6908529999999999, + 0.721373, + 0.705028, + 0.6469, + 0.546747, + 0.417009, + 0.238565, + 0.055630000000000006, + 0.014894000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021984, + 0.10004600000000001, + 0.301289, + 0.476923, + 0.600129, + 0.6742630000000001, + 0.7013550000000001, + 0.6875439999999999, + 0.6399969999999999, + 0.553538, + 0.422827, + 0.239673, + 0.058202, + 0.014279, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020905, + 0.096807, + 0.29156, + 0.46563099999999996, + 0.595129, + 0.68424, + 0.727169, + 0.724508, + 0.676852, + 0.579286, + 0.438503, + 0.246951, + 0.058277, + 0.014452999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020978, + 0.103711, + 0.30124900000000004, + 0.492296, + 0.60519, + 0.691808, + 0.756122, + 0.749417, + 0.693576, + 0.59278, + 0.446956, + 0.251482, + 0.059522, + 0.016097999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024692, + 0.101509, + 0.306178, + 0.486923, + 0.61805, + 0.706105, + 0.746726, + 0.740161, + 0.685342, + 0.58361, + 0.440013, + 0.247858, + 0.05823, + 0.015413999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022692, + 0.099591, + 0.301002, + 0.475352, + 0.5918049999999999, + 0.65971, + 0.677968, + 0.6659660000000001, + 0.631185, + 0.552614, + 0.422991, + 0.240372, + 0.062121, + 0.016402999999999997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0237, + 0.097289, + 0.289606, + 0.455368, + 0.58065, + 0.666376, + 0.7064539999999999, + 0.702767, + 0.653768, + 0.559735, + 0.418342, + 0.237709, + 0.06417199999999999, + 0.015298, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022382000000000003, + 0.094915, + 0.292767, + 0.47190899999999997, + 0.603071, + 0.690392, + 0.73129, + 0.726989, + 0.676063, + 0.57801, + 0.43747, + 0.248535, + 0.060649, + 0.015957000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02445, + 0.098259, + 0.294391, + 0.469688, + 0.592923, + 0.667273, + 0.693997, + 0.684228, + 0.640695, + 0.555057, + 0.424647, + 0.243791, + 0.06313, + 0.017103999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023622, + 0.096822, + 0.293751, + 0.468892, + 0.587795, + 0.6554, + 0.683688, + 0.675655, + 0.635104, + 0.55223, + 0.422313, + 0.24165899999999998, + 0.064717, + 0.017035, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028225999999999998, + 0.101655, + 0.285871, + 0.454168, + 0.573444, + 0.655255, + 0.696434, + 0.694153, + 0.6463289999999999, + 0.549381, + 0.419748, + 0.23971199999999998, + 0.063885, + 0.016486, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023583, + 0.096449, + 0.28380700000000003, + 0.455216, + 0.573911, + 0.652087, + 0.6845330000000001, + 0.682194, + 0.640356, + 0.5502910000000001, + 0.41918900000000003, + 0.239277, + 0.062779, + 0.015814, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023014, + 0.09371800000000001, + 0.288, + 0.461893, + 0.587114, + 0.6716599999999999, + 0.712399, + 0.70778, + 0.658431, + 0.564304, + 0.429375, + 0.24572, + 0.061926, + 0.016263000000000003, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020762, + 0.089423, + 0.283757, + 0.455029, + 0.577249, + 0.66112, + 0.701744, + 0.6999059999999999, + 0.653766, + 0.561375, + 0.427478, + 0.24587399999999998, + 0.062351, + 0.016157, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019960000000000002, + 0.08870600000000001, + 0.281314, + 0.450772, + 0.571198, + 0.638492, + 0.6862569999999999, + 0.6919109999999999, + 0.647716, + 0.558225, + 0.414401, + 0.236504, + 0.062818, + 0.015049, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021803999999999997, + 0.088122, + 0.247201, + 0.406413, + 0.56886, + 0.650404, + 0.6825370000000001, + 0.679723, + 0.563136, + 0.500325, + 0.372995, + 0.20285599999999998, + 0.066905, + 0.016215, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022018999999999997, + 0.091596, + 0.25647699999999996, + 0.41759199999999996, + 0.541029, + 0.6669039999999999, + 0.686589, + 0.666661, + 0.650298, + 0.572316, + 0.436123, + 0.251766, + 0.063527, + 0.015615, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021318, + 0.08708199999999999, + 0.267414, + 0.42529, + 0.5441609999999999, + 0.626165, + 0.666723, + 0.662829, + 0.616031, + 0.339106, + 0.200223, + 0.23109100000000002, + 0.06683599999999999, + 0.017179, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020723, + 0.08841800000000001, + 0.269378, + 0.438927, + 0.559154, + 0.644154, + 0.684859, + 0.684685, + 0.639729, + 0.550276, + 0.418878, + 0.241939, + 0.066716, + 0.016861, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02183, + 0.09173, + 0.287225, + 0.468626, + 0.6022029999999999, + 0.695561, + 0.7390030000000001, + 0.7332150000000001, + 0.6812, + 0.583902, + 0.443425, + 0.255988, + 0.065438, + 0.016097, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023462, + 0.093066, + 0.29536399999999996, + 0.474477, + 0.594953, + 0.6665639999999999, + 0.7020639999999999, + 0.7018, + 0.660861, + 0.5749460000000001, + 0.441888, + 0.256538, + 0.065402, + 0.015889, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019271, + 0.085837, + 0.282464, + 0.453672, + 0.570973, + 0.655236, + 0.700911, + 0.703828, + 0.6606449999999999, + 0.5709890000000001, + 0.43703800000000004, + 0.255383, + 0.062399, + 0.012121999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015525, + 0.083098, + 0.29074500000000003, + 0.471264, + 0.5941620000000001, + 0.666476, + 0.706287, + 0.70486, + 0.659653, + 0.572145, + 0.440029, + 0.256063, + 0.063881, + 0.012581, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015458, + 0.08371899999999999, + 0.292272, + 0.476039, + 0.604306, + 0.686845, + 0.728879, + 0.7254980000000001, + 0.67747, + 0.5848369999999999, + 0.449019, + 0.26106999999999997, + 0.06397800000000001, + 0.012060000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014923, + 0.084548, + 0.290361, + 0.467714, + 0.5809439999999999, + 0.650807, + 0.6858609999999999, + 0.683898, + 0.6411330000000001, + 0.556585, + 0.430581, + 0.250658, + 0.061438, + 0.011205999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014752000000000001, + 0.083088, + 0.27992, + 0.444704, + 0.5475570000000001, + 0.625011, + 0.542512, + 0.667587, + 0.604707, + 0.522306, + 0.39812200000000003, + 0.23974299999999998, + 0.070262, + 0.016050000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019957, + 0.08533299999999999, + 0.259551, + 0.423283, + 0.541607, + 0.622212, + 0.660265, + 0.6567609999999999, + 0.54818, + 0.537731, + 0.411678, + 0.23780500000000002, + 0.06890500000000001, + 0.016466, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025300999999999997, + 0.09675199999999999, + 0.255707, + 0.41941199999999995, + 0.539602, + 0.62264, + 0.666414, + 0.576126, + 0.5447540000000001, + 0.5365270000000001, + 0.409919, + 0.239778, + 0.07345600000000001, + 0.018277, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019161, + 0.084047, + 0.268942, + 0.444732, + 0.5724629999999999, + 0.661275, + 0.7041689999999999, + 0.70201, + 0.660876, + 0.569911, + 0.435745, + 0.252776, + 0.063846, + 0.012654, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015596, + 0.079602, + 0.275878, + 0.45825099999999996, + 0.589977, + 0.67836, + 0.722074, + 0.720493, + 0.672778, + 0.578997, + 0.444415, + 0.26076299999999997, + 0.067411, + 0.012289999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017902, + 0.08257099999999999, + 0.270924, + 0.444865, + 0.567483, + 0.652158, + 0.696374, + 0.695039, + 0.651436, + 0.561582, + 0.424255, + 0.250003, + 0.07804000000000001, + 0.018463, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018394999999999998, + 0.068333, + 0.220519, + 0.175357, + 0.488813, + 0.5133110000000001, + 0.460078, + 0.499653, + 0.469571, + 0.257116, + 0.33198200000000005, + 0.214376, + 0.07343000000000001, + 0.016293, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021617, + 0.090007, + 0.274323, + 0.458315, + 0.594495, + 0.6940109999999999, + 0.738758, + 0.733101, + 0.686984, + 0.594563, + 0.45626, + 0.266219, + 0.068632, + 0.011840999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01468, + 0.080611, + 0.280236, + 0.462341, + 0.589976, + 0.675434, + 0.718328, + 0.716052, + 0.672102, + 0.582233, + 0.447535, + 0.260158, + 0.066204, + 0.011064000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013564, + 0.076969, + 0.277999, + 0.457399, + 0.5802609999999999, + 0.661036, + 0.704718, + 0.7014779999999999, + 0.6572060000000001, + 0.568141, + 0.435956, + 0.254136, + 0.065755, + 0.012052, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004628, + 0.061717, + 0.216007, + 0.33203699999999997, + 0.42419799999999996, + 0.289919, + 0.37951999999999997, + 0.38125400000000004, + 0.440322, + 0.519638, + 0.40256200000000003, + 0.244771, + 0.06940600000000001, + 0.013007, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006535, + 0.07380400000000001, + 0.255538, + 0.424486, + 0.547668, + 0.634656, + 0.677077, + 0.6764690000000001, + 0.630222, + 0.5471079999999999, + 0.417806, + 0.242733, + 0.07062, + 0.012983, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014478, + 0.07508100000000001, + 0.262874, + 0.43830399999999997, + 0.5662290000000001, + 0.654087, + 0.698203, + 0.696646, + 0.653809, + 0.564929, + 0.434158, + 0.254848, + 0.066488, + 0.011514, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012667, + 0.076346, + 0.274509, + 0.455258, + 0.582511, + 0.6675209999999999, + 0.7111559999999999, + 0.708902, + 0.66218, + 0.572129, + 0.439625, + 0.257841, + 0.06777, + 0.011583999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012127, + 0.076393, + 0.277362, + 0.46061799999999997, + 0.592174, + 0.6805739999999999, + 0.726029, + 0.722896, + 0.675523, + 0.581646, + 0.44487400000000005, + 0.26032799999999995, + 0.065473, + 0.009749, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011498, + 0.07521800000000001, + 0.274161, + 0.456083, + 0.587598, + 0.680817, + 0.7278600000000001, + 0.726917, + 0.681245, + 0.589383, + 0.453366, + 0.267001, + 0.06622499999999999, + 0.009749, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011549, + 0.074517, + 0.2769, + 0.457709, + 0.589566, + 0.681406, + 0.726542, + 0.724599, + 0.6802590000000001, + 0.58536, + 0.448698, + 0.26376900000000003, + 0.067418, + 0.009707, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012029, + 0.076544, + 0.271383, + 0.451926, + 0.581679, + 0.670462, + 0.713649, + 0.708481, + 0.665903, + 0.5729829999999999, + 0.437997, + 0.255859, + 0.067228, + 0.010731, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013194, + 0.075078, + 0.25977100000000003, + 0.43105099999999996, + 0.55522, + 0.641657, + 0.685635, + 0.681661, + 0.637246, + 0.5495599999999999, + 0.41673899999999997, + 0.24327600000000002, + 0.066526, + 0.006848, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0012720000000000001, + 0.051014000000000004, + 0.056789, + 0.052455, + 0.5478500000000001, + 0.551359, + 0.6499729999999999, + 0.049083, + 0.15639699999999998, + 0.13254, + 0.016735, + 0.07085, + 0.011986, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012169000000000001, + 0.07522, + 0.255774, + 0.424952, + 0.550921, + 0.641629, + 0.687348, + 0.687721, + 0.644226, + 0.557498, + 0.42799, + 0.251089, + 0.067396, + 0.009917, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010538, + 0.072035, + 0.265319, + 0.443202, + 0.572061, + 0.6619149999999999, + 0.7073039999999999, + 0.705715, + 0.664263, + 0.572346, + 0.438365, + 0.253925, + 0.06802899999999999, + 0.009911, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010423, + 0.07245900000000001, + 0.266138, + 0.44423599999999996, + 0.572506, + 0.657473, + 0.702114, + 0.7038260000000001, + 0.66013, + 0.571194, + 0.439668, + 0.25635, + 0.067789, + 0.009155, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010912000000000002, + 0.073114, + 0.260879, + 0.435747, + 0.562297, + 0.6522519999999999, + 0.696553, + 0.6945979999999999, + 0.653941, + 0.563513, + 0.43092, + 0.251074, + 0.06714700000000001, + 0.008439, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010995, + 0.075171, + 0.26406999999999997, + 0.44027, + 0.5679379999999999, + 0.654803, + 0.697816, + 0.6970270000000001, + 0.655087, + 0.565827, + 0.433409, + 0.251974, + 0.066898, + 0.008345, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009736, + 0.074, + 0.26538, + 0.442835, + 0.570096, + 0.654072, + 0.698145, + 0.6958529999999999, + 0.646836, + 0.559742, + 0.430479, + 0.25247800000000004, + 0.065444, + 0.007019999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009629, + 0.074934, + 0.265065, + 0.44109699999999996, + 0.5665549999999999, + 0.653421, + 0.6977380000000001, + 0.696757, + 0.657166, + 0.566136, + 0.433302, + 0.252695, + 0.066535, + 0.006828, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00895, + 0.075384, + 0.26143099999999997, + 0.436389, + 0.559781, + 0.646471, + 0.6892780000000001, + 0.686742, + 0.641418, + 0.54957, + 0.417097, + 0.245817, + 0.06964100000000001, + 0.005979, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.042686, + 0.006637, + 0.358203, + 0.5673680000000001, + 0.577245, + 0.607641, + 0.615478, + 0.648558, + 0.562297, + 0.42758999999999997, + 0.24985, + 0.067526, + 0.005753, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008407, + 0.07680100000000001, + 0.262219, + 0.436562, + 0.561754, + 0.6511950000000001, + 0.7001710000000001, + 0.7014790000000001, + 0.655922, + 0.5700940000000001, + 0.4355, + 0.25629599999999997, + 0.06561199999999999, + 0.005293999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007109, + 0.07395399999999999, + 0.270024, + 0.446108, + 0.570472, + 0.656852, + 0.6969310000000001, + 0.696861, + 0.655416, + 0.566506, + 0.433398, + 0.252085, + 0.06474099999999999, + 0.004791999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006857, + 0.077874, + 0.265974, + 0.44231099999999995, + 0.5708730000000001, + 0.656091, + 0.7010040000000001, + 0.697132, + 0.504191, + 0.559731, + 0.42486900000000005, + 0.248596, + 0.070513, + 0.004543999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006601, + 0.08469499999999999, + 0.266532, + 0.445038, + 0.580115, + 0.672755, + 0.7217039999999999, + 0.7242799999999999, + 0.6750069999999999, + 0.584368, + 0.44479199999999997, + 0.262043, + 0.06742400000000001, + 0.004683, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0069370000000000005, + 0.080025, + 0.289116, + 0.483524, + 0.624478, + 0.7229500000000001, + 0.7694099999999999, + 0.7636839999999999, + 0.714212, + 0.6133350000000001, + 0.466629, + 0.26996699999999996, + 0.06569799999999999, + 0.003277, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004882, + 0.07692600000000001, + 0.287098, + 0.476315, + 0.612769, + 0.7035359999999999, + 0.751235, + 0.7493329999999999, + 0.698535, + 0.600611, + 0.45809, + 0.266259, + 0.064384, + 0.00329, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004844, + 0.077888, + 0.289605, + 0.476438, + 0.608678, + 0.6937300000000001, + 0.7425309999999999, + 0.7443339999999999, + 0.697496, + 0.6019070000000001, + 0.460738, + 0.26852800000000004, + 0.064038, + 0.0027730000000000003, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004318, + 0.077015, + 0.287494, + 0.47453500000000004, + 0.6097899999999999, + 0.701236, + 0.749715, + 0.751082, + 0.701121, + 0.60526, + 0.461826, + 0.269077, + 0.065229, + 0.00283, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003803, + 0.07689700000000001, + 0.286003, + 0.47014, + 0.605211, + 0.6969740000000001, + 0.745189, + 0.746537, + 0.697662, + 0.602155, + 0.46024400000000004, + 0.266986, + 0.062581, + 0.003162, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004367, + 0.077557, + 0.284992, + 0.474109, + 0.615112, + 0.708534, + 0.7551939999999999, + 0.75049, + 0.702862, + 0.6033419999999999, + 0.45904199999999995, + 0.264962, + 0.061602, + 0.002662, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003832, + 0.075235, + 0.275488, + 0.455628, + 0.587604, + 0.6755890000000001, + 0.717346, + 0.713549, + 0.667135, + 0.5699740000000001, + 0.432887, + 0.250701, + 0.0577, + 0.002069, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003766, + 0.07469799999999999, + 0.273005, + 0.452291, + 0.5791580000000001, + 0.667019, + 0.712179, + 0.710818, + 0.666808, + 0.573551, + 0.436599, + 0.249812, + 0.056856000000000004, + 0.0015509999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0032890000000000003, + 0.07414799999999999, + 0.270334, + 0.445384, + 0.552289, + 0.5316029999999999, + 0.7093079999999999, + 0.705339, + 0.5526380000000001, + 0.41850299999999996, + 0.377523, + 0.227534, + 0.056715, + 0.0005600000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002543, + 0.076658, + 0.269613, + 0.44653699999999996, + 0.5740080000000001, + 0.6577200000000001, + 0.701564, + 0.700024, + 0.653627, + 0.563628, + 0.423556, + 0.235727, + 0.062078, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002186, + 0.077586, + 0.26826799999999995, + 0.442486, + 0.5668179999999999, + 0.646841, + 0.69008, + 0.687998, + 0.640653, + 0.549154, + 0.410123, + 0.229373, + 0.060127, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00273, + 0.076699, + 0.267375, + 0.44297699999999995, + 0.5698920000000001, + 0.661606, + 0.705661, + 0.705322, + 0.6602140000000001, + 0.568335, + 0.427339, + 0.24024700000000002, + 0.058287, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0027280000000000004, + 0.07608, + 0.275271, + 0.45746800000000004, + 0.589716, + 0.6823490000000001, + 0.7283350000000001, + 0.7277619999999999, + 0.678284, + 0.581177, + 0.441774, + 0.250563, + 0.054793, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003267, + 0.073828, + 0.28688400000000003, + 0.47397500000000004, + 0.5482400000000001, + 0.703952, + 0.680172, + 0.745155, + 0.694793, + 0.593942, + 0.449212, + 0.254136, + 0.053938, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0023250000000000002, + 0.08029399999999999, + 0.29437, + 0.480045, + 0.611919, + 0.6984199999999999, + 0.74415, + 0.743555, + 0.689866, + 0.591361, + 0.446406, + 0.250798, + 0.052543999999999993, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.001758, + 0.07896500000000001, + 0.287109, + 0.471032, + 0.602951, + 0.687862, + 0.727938, + 0.72372, + 0.6741090000000001, + 0.575817, + 0.434733, + 0.241907, + 0.053357999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.001286, + 0.07777500000000001, + 0.286416, + 0.471769, + 0.6054189999999999, + 0.694309, + 0.735928, + 0.727256, + 0.6796810000000001, + 0.578447, + 0.433556, + 0.242729, + 0.051383000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.001369, + 0.08148000000000001, + 0.296375, + 0.487702, + 0.627654, + 0.718278, + 0.7641939999999999, + 0.757818, + 0.703286, + 0.60054, + 0.45319, + 0.253834, + 0.051377, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.000859, + 0.080983, + 0.2911, + 0.471852, + 0.60568, + 0.695742, + 0.7391939999999999, + 0.733955, + 0.686178, + 0.5850270000000001, + 0.43987200000000004, + 0.245218, + 0.049717, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00028599999999999996, + 0.077226, + 0.27174200000000004, + 0.453347, + 0.5882200000000001, + 0.679154, + 0.724007, + 0.722152, + 0.5730299999999999, + 0.487927, + 0.360096, + 0.226899, + 0.049052, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.077318, + 0.264808, + 0.40756200000000004, + 0.515223, + 0.66592, + 0.607734, + 0.565789, + 0.560976, + 0.142279, + 0.086342, + 0.200441, + 0.049277, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.076251, + 0.272393, + 0.449427, + 0.579801, + 0.672975, + 0.71786, + 0.713912, + 0.6656839999999999, + 0.569961, + 0.42335300000000003, + 0.23199899999999998, + 0.044802999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.076772, + 0.280738, + 0.450853, + 0.573722, + 0.6623049999999999, + 0.707663, + 0.705832, + 0.6583089999999999, + 0.561391, + 0.421406, + 0.22975, + 0.042415, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.077394, + 0.27872399999999997, + 0.442267, + 0.561292, + 0.64067, + 0.6759550000000001, + 0.672164, + 0.629779, + 0.372318, + 0.23221899999999998, + 0.200868, + 0.043741999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034484, + 0.27456400000000003, + 0.448955, + 0.577234, + 0.671217, + 0.71621, + 0.711653, + 0.298404, + 0.02838, + 0.41194, + 0.052028, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.076614, + 0.263334, + 0.428958, + 0.5518200000000001, + 0.6457390000000001, + 0.6840839999999999, + 0.680338, + 0.635049, + 0.47165300000000004, + 0.346009, + 0.23098500000000002, + 0.041799, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08293099999999999, + 0.294332, + 0.46803500000000003, + 0.599711, + 0.687917, + 0.73317, + 0.731445, + 0.679921, + 0.578455, + 0.429896, + 0.229972, + 0.040606, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08349899999999999, + 0.297692, + 0.465627, + 0.579393, + 0.6691670000000001, + 0.7122809999999999, + 0.168298, + 0.017440999999999998, + 0.013486000000000001, + 0.421836, + 0.224774, + 0.038871, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.081165, + 0.288803, + 0.466765, + 0.597967, + 0.684778, + 0.724682, + 0.716654, + 0.226055, + 0.181448, + 0.041783, + 0.153233, + 0.039250999999999994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.081596, + 0.291173, + 0.464038, + 0.594292, + 0.679375, + 0.71565, + 0.705945, + 0.651207, + 0.550168, + 0.405345, + 0.21164, + 0.037613999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08039400000000001, + 0.28363900000000003, + 0.459699, + 0.584056, + 0.667556, + 0.702353, + 0.6923400000000001, + 0.638196, + 0.541066, + 0.145143, + 0.208316, + 0.01642, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08083, + 0.283387, + 0.463325, + 0.590157, + 0.680508, + 0.722025, + 0.717405, + 0.66488, + 0.562855, + 0.411295, + 0.21374600000000002, + 0.03362, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.082058, + 0.28736700000000004, + 0.46560700000000005, + 0.596176, + 0.68714, + 0.729155, + 0.724485, + 0.673636, + 0.5631029999999999, + 0.405323, + 0.208385, + 0.032292, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08783400000000001, + 0.31195, + 0.506901, + 0.6445839999999999, + 0.73576, + 0.7751140000000001, + 0.764851, + 0.711467, + 0.599876, + 0.44211900000000004, + 0.225365, + 0.033305, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.089965, + 0.31704000000000004, + 0.515319, + 0.655404, + 0.74751, + 0.789505, + 0.775277, + 0.714527, + 0.602128, + 0.442338, + 0.226978, + 0.031569, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.088021, + 0.30609699999999995, + 0.48977800000000005, + 0.623915, + 0.720404, + 0.764923, + 0.757652, + 0.699528, + 0.592502, + 0.437656, + 0.22398300000000002, + 0.029422, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08673399999999999, + 0.308907, + 0.49097, + 0.621409, + 0.7063680000000001, + 0.737344, + 0.716649, + 0.64995, + 0.544202, + 0.404028, + 0.208511, + 0.026652000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08402, + 0.301133, + 0.480499, + 0.6047809999999999, + 0.68675, + 0.717307, + 0.698774, + 0.63093, + 0.533446, + 0.393503, + 0.200775, + 0.026053999999999997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.081199, + 0.29427499999999995, + 0.474688, + 0.604115, + 0.688973, + 0.729838, + 0.7273890000000001, + 0.6664990000000001, + 0.553592, + 0.39467, + 0.180597, + 0.020611, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.076186, + 0.26887700000000003, + 0.450653, + 0.59403, + 0.706471, + 0.744642, + 0.735173, + 0.677592, + 0.555531, + 0.383541, + 0.198412, + 0.023417999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.091524, + 0.326945, + 0.5356449999999999, + 0.687071, + 0.792531, + 0.833333, + 0.819292, + 0.752477, + 0.626927, + 0.454283, + 0.22625, + 0.023404, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.097609, + 0.345224, + 0.551808, + 0.705429, + 0.801021, + 0.833333, + 0.8246079999999999, + 0.751374, + 0.628577, + 0.459171, + 0.227413, + 0.02209, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.096786, + 0.33986500000000003, + 0.5428869999999999, + 0.6872140000000001, + 0.780438, + 0.816801, + 0.795639, + 0.726172, + 0.607062, + 0.441548, + 0.22045599999999999, + 0.018767, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.094247, + 0.32894, + 0.517535, + 0.649841, + 0.731229, + 0.762368, + 0.7442329999999999, + 0.677188, + 0.572231, + 0.420319, + 0.20741900000000002, + 0.015727, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08742799999999999, + 0.306751, + 0.5035149999999999, + 0.651353, + 0.749309, + 0.791015, + 0.781106, + 0.71594, + 0.602262, + 0.430803, + 0.20699299999999998, + 0.013266, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.094812, + 0.334854, + 0.532556, + 0.669088, + 0.7520560000000001, + 0.781653, + 0.759274, + 0.6891799999999999, + 0.576434, + 0.417296, + 0.205063, + 0.011842, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.092682, + 0.322262, + 0.509454, + 0.649606, + 0.738998, + 0.7787350000000001, + 0.764912, + 0.694447, + 0.5777490000000001, + 0.41013299999999997, + 0.192739, + 0.010324, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.080023, + 0.28840499999999997, + 0.47956, + 0.632268, + 0.751885, + 0.798491, + 0.787661, + 0.720281, + 0.602485, + 0.435154, + 0.206253, + 0.01056, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.096716, + 0.343882, + 0.549614, + 0.697564, + 0.789918, + 0.826779, + 0.8064600000000001, + 0.733641, + 0.609169, + 0.435505, + 0.203543, + 0.009023999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.096266, + 0.339086, + 0.5392680000000001, + 0.681166, + 0.767297, + 0.799513, + 0.7754840000000001, + 0.7032430000000001, + 0.582318, + 0.417617, + 0.19570300000000002, + 0.007417, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09411, + 0.336858, + 0.532257, + 0.670243, + 0.757509, + 0.788704, + 0.7645890000000001, + 0.691678, + 0.575564, + 0.412901, + 0.191941, + 0.005817, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08748, + 0.314267, + 0.49972300000000003, + 0.633547, + 0.727117, + 0.766744, + 0.754402, + 0.6947380000000001, + 0.5796520000000001, + 0.41447300000000004, + 0.18912700000000002, + 0.004798, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.094654, + 0.330827, + 0.517004, + 0.650887, + 0.7343569999999999, + 0.7672720000000001, + 0.74859, + 0.684762, + 0.571964, + 0.409229, + 0.186581, + 0.003675, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06918600000000001, + 0.284687, + 0.40991500000000003, + 0.6516810000000001, + 0.640837, + 0.597262, + 0.620324, + 0.42395900000000003, + 0.189798, + 0.412403, + 0.186075, + 0.0025510000000000003, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08379099999999999, + 0.308387, + 0.490259, + 0.6198830000000001, + 0.64715, + 0.6772400000000001, + 0.649732, + 0.556929, + 0.403734, + 0.26719099999999996, + 0.08055200000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.084813, + 0.312623, + 0.5021209999999999, + 0.5615220000000001, + 0.656464, + 0.612754, + 0.351671, + 0.45055399999999995, + 0.251888, + 0.266644, + 0.040715, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.087385, + 0.312525, + 0.487219, + 0.6231180000000001, + 0.711661, + 0.750903, + 0.741106, + 0.675552, + 0.55799, + 0.392288, + 0.170631, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.039078, + 0.274578, + 0.494924, + 0.6267699999999999, + 0.715075, + 0.753089, + 0.741706, + 0.6765410000000001, + 0.557902, + 0.39205900000000005, + 0.169608, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.084552, + 0.315007, + 0.508853, + 0.64604, + 0.7403930000000001, + 0.776867, + 0.7648550000000001, + 0.692774, + 0.5699529999999999, + 0.393096, + 0.165522, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07907800000000001, + 0.319609, + 0.526711, + 0.677661, + 0.7681330000000001, + 0.805468, + 0.7878200000000001, + 0.71602, + 0.420351, + 0.269385, + 0.009849, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.069745, + 0.046383, + 0.211787, + 0.6891079999999999, + 0.34262400000000004, + 0.81826, + 0.7984629999999999, + 0.129915, + 0.198302, + 0.41850400000000004, + 0.002156, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09232800000000001, + 0.35337999999999997, + 0.562568, + 0.7093590000000001, + 0.797221, + 0.832553, + 0.08744299999999999, + 0.216433, + 0.010967000000000001, + 0.017209, + 0.08956, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09317700000000001, + 0.347765, + 0.557428, + 0.698462, + 0.782534, + 0.811904, + 0.7856069999999999, + 0.7065560000000001, + 0.583272, + 0.400089, + 0.162653, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08865300000000001, + 0.337718, + 0.541632, + 0.6783490000000001, + 0.763695, + 0.790509, + 0.767128, + 0.694002, + 0.57304, + 0.401406, + 0.162493, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.088395, + 0.339119, + 0.5344800000000001, + 0.667239, + 0.7358049999999999, + 0.752885, + 0.729962, + 0.663695, + 0.55055, + 0.38830000000000003, + 0.158317, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.083626, + 0.328098, + 0.5205839999999999, + 0.657128, + 0.6154310000000001, + 0.633888, + 0.751035, + 0.675605, + 0.547004, + 0.36993, + 0.144755, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08204900000000001, + 0.32782799999999995, + 0.529906, + 0.665727, + 0.744328, + 0.769812, + 0.7462770000000001, + 0.672236, + 0.5512440000000001, + 0.37904000000000004, + 0.14527400000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.084373, + 0.334637, + 0.531218, + 0.670381, + 0.751812, + 0.781566, + 0.759664, + 0.684359, + 0.55765, + 0.382878, + 0.14928899999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08333, + 0.333183, + 0.526046, + 0.6566219999999999, + 0.729096, + 0.74574, + 0.712372, + 0.6402559999999999, + 0.5327999999999999, + 0.372125, + 0.14454599999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08132500000000001, + 0.321942, + 0.505543, + 0.531186, + 0.628436, + 0.728611, + 0.622981, + 0.5122709999999999, + 0.539091, + 0.316109, + 0.12946100000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.069771, + 0.281949, + 0.479825, + 0.622484, + 0.703116, + 0.735587, + 0.7170890000000001, + 0.6619210000000001, + 0.540678, + 0.361514, + 0.121517, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.073994, + 0.316137, + 0.509618, + 0.645105, + 0.7344579999999999, + 0.77101, + 0.752058, + 0.68022, + 0.556929, + 0.37499400000000005, + 0.132066, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07506600000000001, + 0.329903, + 0.5288189999999999, + 0.669962, + 0.75436, + 0.7805460000000001, + 0.7505259999999999, + 0.669593, + 0.546274, + 0.367042, + 0.129351, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07594799999999999, + 0.33469600000000005, + 0.5404629999999999, + 0.678221, + 0.759999, + 0.784149, + 0.753497, + 0.6700839999999999, + 0.548381, + 0.37117, + 0.12865000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.067917, + 0.32844, + 0.523242, + 0.649293, + 0.737413, + 0.774697, + 0.7590779999999999, + 0.6829489999999999, + 0.558019, + 0.373231, + 0.116453, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.060235, + 0.321887, + 0.522903, + 0.66134, + 0.7388239999999999, + 0.764106, + 0.7355839999999999, + 0.663938, + 0.5459700000000001, + 0.36623, + 0.10873999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.055192, + 0.318624, + 0.520471, + 0.655613, + 0.725698, + 0.745539, + 0.716071, + 0.647002, + 0.527909, + 0.35341, + 0.107935, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.051723, + 0.322864, + 0.528386, + 0.6661549999999999, + 0.751287, + 0.780913, + 0.755735, + 0.678964, + 0.55192, + 0.365546, + 0.120102, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.04988, + 0.323188, + 0.529798, + 0.662609, + 0.742851, + 0.768439, + 0.738955, + 0.663066, + 0.5391330000000001, + 0.357768, + 0.110888, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03703, + 0.290132, + 0.492291, + 0.634021, + 0.723682, + 0.7520650000000001, + 0.7258680000000001, + 0.579526, + 0.273806, + 0.19725499999999999, + 0.050616999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.033932000000000004, + 0.28628899999999996, + 0.491966, + 0.643153, + 0.7302569999999999, + 0.76287, + 0.7335119999999999, + 0.6533869999999999, + 0.505711, + 0.309961, + 0.078503, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.033249, + 0.2959, + 0.519744, + 0.67773, + 0.7724869999999999, + 0.815714, + 0.7995950000000001, + 0.7221029999999999, + 0.590255, + 0.386684, + 0.11690900000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.040188, + 0.340798, + 0.563101, + 0.707622, + 0.7927329999999999, + 0.816487, + 0.784709, + 0.70663, + 0.574032, + 0.383591, + 0.11746899999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.037425, + 0.33852899999999997, + 0.55747, + 0.701844, + 0.784769, + 0.807535, + 0.775019, + 0.688376, + 0.556468, + 0.36551999999999996, + 0.107404, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.032839, + 0.327946, + 0.5421180000000001, + 0.678649, + 0.763641, + 0.78828, + 0.7606620000000001, + 0.679907, + 0.549496, + 0.357584, + 0.10004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030358, + 0.32491699999999996, + 0.5375639999999999, + 0.671922, + 0.7458400000000001, + 0.76644, + 0.735885, + 0.440041, + 0.483379, + 0.275113, + 0.093996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028457999999999997, + 0.31888099999999997, + 0.5279360000000001, + 0.477634, + 0.716495, + 0.747712, + 0.729763, + 0.6608529999999999, + 0.540621, + 0.351203, + 0.030073, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024170999999999998, + 0.312137, + 0.5279980000000001, + 0.685941, + 0.667825, + 0.449124, + 0.31792899999999996, + 0.68565, + 0.390001, + 0.32025099999999995, + 0.066684, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013835, + 0.29871800000000004, + 0.518872, + 0.66926, + 0.7559130000000001, + 0.779464, + 0.752802, + 0.683199, + 0.5535869999999999, + 0.36177699999999996, + 0.089503, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01821, + 0.33626799999999996, + 0.559174, + 0.71211, + 0.802959, + 0.8321660000000001, + 0.800361, + 0.714853, + 0.570804, + 0.370468, + 0.085726, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015080999999999999, + 0.324504, + 0.5412089999999999, + 0.690302, + 0.7776810000000001, + 0.805843, + 0.776123, + 0.692526, + 0.556356, + 0.351922, + 0.07431, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010805, + 0.305906, + 0.522848, + 0.667957, + 0.755856, + 0.78654, + 0.75751, + 0.67748, + 0.53965, + 0.347092, + 0.07054200000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008667, + 0.299342, + 0.515717, + 0.65528, + 0.7360789999999999, + 0.757438, + 0.728174, + 0.651712, + 0.526399, + 0.344615, + 0.068788, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007969, + 0.300274, + 0.5095810000000001, + 0.64179, + 0.71697, + 0.747503, + 0.725487, + 0.652981, + 0.524933, + 0.338949, + 0.065881, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003077, + 0.293784, + 0.507337, + 0.6458579999999999, + 0.726481, + 0.749827, + 0.718604, + 0.641595, + 0.5127200000000001, + 0.32316500000000004, + 0.05602, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004224, + 0.28614999999999996, + 0.496679, + 0.615192, + 0.6905309999999999, + 0.732201, + 0.5296420000000001, + 0.648601, + 0.522007, + 0.328353, + 0.057686999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.293768, + 0.513991, + 0.65822, + 0.751837, + 0.7826000000000001, + 0.758028, + 0.6754779999999999, + 0.5398780000000001, + 0.336031, + 0.054354999999999994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.229303, + 0.454669, + 0.621816, + 0.727923, + 0.759908, + 0.73499, + 0.443108, + 0.496525, + 0.293755, + 0.002265, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.231903, + 0.28092700000000004, + 0.624068, + 0.724563, + 0.759909, + 0.738721, + 0.664337, + 0.5331269999999999, + 0.334949, + 0.055779, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10041599999999999, + 0.287881, + 0.632407, + 0.721325, + 0.6127100000000001, + 0.517942, + 0.416767, + 0.369634, + 0.20540899999999998, + 0.002205, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020344, + 0.48115800000000003, + 0.388367, + 0.734931, + 0.7734249999999999, + 0.754199, + 0.677771, + 0.542781, + 0.335702, + 0.01334, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.253521, + 0.485854, + 0.643393, + 0.736509, + 0.772089, + 0.7487659999999999, + 0.668156, + 0.529126, + 0.326788, + 0.044567999999999997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.300174, + 0.5451849999999999, + 0.708502, + 0.80134, + 0.831197, + 0.799507, + 0.716394, + 0.575545, + 0.35889800000000005, + 0.053811, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.282563, + 0.5187430000000001, + 0.6723830000000001, + 0.7659579999999999, + 0.7958310000000001, + 0.768602, + 0.682907, + 0.547088, + 0.278557, + 0.007331000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.099217, + 0.31859699999999996, + 0.6646989999999999, + 0.569653, + 0.64242, + 0.35803500000000005, + 0.25294300000000003, + 0.100123, + 0.273293, + 0.006157, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.24607099999999998, + 0.228103, + 0.628096, + 0.493699, + 0.51686, + 0.16775800000000002, + 0.666389, + 0.530216, + 0.32371300000000003, + 0.033112, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.25875099999999995, + 0.48815, + 0.636755, + 0.732501, + 0.6356219999999999, + 0.505801, + 0.44678500000000004, + 0.198896, + 0.06913899999999999, + 0.00046800000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.248726, + 0.490769, + 0.6524070000000001, + 0.736359, + 0.764673, + 0.736735, + 0.655981, + 0.5230049999999999, + 0.321517, + 0.034885, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.081214, + 0.309337, + 0.415222, + 0.717863, + 0.757005, + 0.734993, + 0.659292, + 0.52464, + 0.210478, + 0.006212, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.254383, + 0.515559, + 0.6748310000000001, + 0.774992, + 0.8111, + 0.7836989999999999, + 0.69948, + 0.555818, + 0.346985, + 0.006843, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08201800000000001, + 0.502087, + 0.658883, + 0.748788, + 0.78643, + 0.76538, + 0.689615, + 0.555316, + 0.347454, + 0.040917, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.081954, + 0.500901, + 0.643764, + 0.722268, + 0.762445, + 0.7445320000000001, + 0.6681130000000001, + 0.5307050000000001, + 0.334155, + 0.039174999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.090297, + 0.492899, + 0.636746, + 0.7192200000000001, + 0.7378709999999999, + 0.7117279999999999, + 0.6460499999999999, + 0.5192469999999999, + 0.332792, + 0.042119, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.066106, + 0.268338, + 0.423965, + 0.5869800000000001, + 0.557567, + 0.5192140000000001, + 0.610062, + 0.5009089999999999, + 0.31441800000000003, + 0.031341, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.067292, + 0.284527, + 0.6138920000000001, + 0.7181799999999999, + 0.763692, + 0.7462409999999999, + 0.6763239999999999, + 0.540089, + 0.343514, + 0.042225, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.20565, + 0.470835, + 0.629564, + 0.724308, + 0.766805, + 0.7465689999999999, + 0.6720280000000001, + 0.533674, + 0.124861, + 0.000423, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012541, + 0.146346, + 0.218701, + 0.009936, + 0.05912, + 0.021743, + 0.027427, + 0.080292, + 0.053134999999999995, + 0.033429, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.180511, + 0.44994999999999996, + 0.480558, + 0.563862, + 0.520109, + 0.564016, + 0.383623, + 0.13995500000000002, + 0.017038, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.037923, + 0.082157, + 0.072137, + 0.117772, + 0.405541, + 0.387872, + 0.488442, + 0.374099, + 0.307741, + 0.012944, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.17328100000000002, + 0.003713, + 0.631733, + 0.353815, + 0.444603, + 0.492788, + 0.20970599999999998, + 0.004253, + 0.33504, + 0.003823, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.180171, + 0.48429099999999997, + 0.662058, + 0.762557, + 0.805327, + 0.7852169999999999, + 0.7080230000000001, + 0.56678, + 0.346855, + 0.004444, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.179709, + 0.46717000000000003, + 0.6276470000000001, + 0.7230850000000001, + 0.767178, + 0.5914020000000001, + 0.680023, + 0.360042, + 0.241241, + 0.028045999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.169067, + 0.47007499999999997, + 0.638692, + 0.7366739999999999, + 0.7774, + 0.7561380000000001, + 0.45593, + 0.5411459999999999, + 0.335918, + 0.031799, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.169875, + 0.48206099999999996, + 0.651482, + 0.7582770000000001, + 0.800237, + 0.777166, + 0.6993429999999999, + 0.558841, + 0.34334, + 0.032179, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.16505099999999998, + 0.486207, + 0.657125, + 0.6986079999999999, + 0.693381, + 0.7683150000000001, + 0.557194, + 0.553859, + 0.351525, + 0.036669, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.155145, + 0.461129, + 0.630808, + 0.735178, + 0.785512, + 0.777556, + 0.225082, + 0.15044300000000002, + 0.342557, + 0.03123, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.14418199999999998, + 0.458913, + 0.479303, + 0.380979, + 0.775091, + 0.023267, + 0.199731, + 0.066807, + 0.153915, + 0.022161, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.151681, + 0.470808, + 0.650428, + 0.7594529999999999, + 0.807166, + 0.788475, + 0.706433, + 0.5650510000000001, + 0.358124, + 0.038231, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.151543, + 0.478238, + 0.651402, + 0.758953, + 0.800665, + 0.7795639999999999, + 0.702674, + 0.56286, + 0.357308, + 0.041568, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.138708, + 0.210651, + 0.622953, + 0.716237, + 0.743563, + 0.734023, + 0.6681849999999999, + 0.5414829999999999, + 0.343507, + 0.038011, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.121145, + 0.23294, + 0.6289, + 0.5152709999999999, + 0.507863, + 0.473408, + 0.066858, + 0.39196, + 0.349071, + 0.0055899999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.134658, + 0.470459, + 0.6508379999999999, + 0.7654489999999999, + 0.8158200000000001, + 0.801414, + 0.72621, + 0.585942, + 0.377149, + 0.054387, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.138851, + 0.470574, + 0.6401760000000001, + 0.741839, + 0.781397, + 0.76232, + 0.691926, + 0.560845, + 0.364261, + 0.006595, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.096102, + 0.065228, + 0.613275, + 0.5733469999999999, + 0.5743980000000001, + 0.753479, + 0.625656, + 0.558945, + 0.358668, + 0.052375, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.127584, + 0.465435, + 0.6368630000000001, + 0.740158, + 0.779592, + 0.761161, + 0.687929, + 0.5615610000000001, + 0.364584, + 0.050676, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.120866, + 0.450305, + 0.61999, + 0.69971, + 0.7320570000000001, + 0.727034, + 0.665661, + 0.537581, + 0.343251, + 0.040179, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038506, + 0.201413, + 0.30916899999999997, + 0.605852, + 0.767018, + 0.574845, + 0.710862, + 0.58084, + 0.374729, + 0.039710999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10720099999999999, + 0.422965, + 0.6094339999999999, + 0.7143740000000001, + 0.55702, + 0.755105, + 0.6869160000000001, + 0.557506, + 0.35659199999999996, + 0.051065, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10942400000000001, + 0.43626, + 0.6105119999999999, + 0.717865, + 0.7653110000000001, + 0.751, + 0.369433, + 0.453274, + 0.111301, + 0.002709, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.105634, + 0.425738, + 0.613294, + 0.71697, + 0.7653390000000001, + 0.7526849999999999, + 0.6871799999999999, + 0.494915, + 0.35642399999999996, + 0.012266, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.116429, + 0.469032, + 0.6505650000000001, + 0.7637849999999999, + 0.806976, + 0.625709, + 0.4617, + 0.37878500000000004, + 0.153164, + 0.005131999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.113733, + 0.463537, + 0.642828, + 0.749715, + 0.654027, + 0.691058, + 0.7094790000000001, + 0.580594, + 0.390424, + 0.07828199999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.103739, + 0.437002, + 0.6106699999999999, + 0.542218, + 0.577558, + 0.528649, + 0.43344900000000003, + 0.32770900000000003, + 0.155053, + 0.005602, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01668, + 0.11138200000000001, + 0.152782, + 0.324201, + 0.515428, + 0.602601, + 0.40186, + 0.209235, + 0.36279, + 0.017186, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006552, + 0.26812400000000003, + 0.430122, + 0.327291, + 0.139334, + 0.128154, + 0.035482, + 0.086597, + 0.082486, + 0.002897, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014361, + 0.005632, + 0.151531, + 0.07006399999999999, + 0.106531, + 0.040536, + 0.093756, + 0.394959, + 0.051283, + 0.06218, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.081358, + 0.034476999999999994, + 0.218393, + 0.043686, + 0.13411199999999998, + 0.136252, + 0.114898, + 0.08026000000000001, + 0.081997, + 0.0038900000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.083077, + 0.396892, + 0.586102, + 0.714333, + 0.767248, + 0.553376, + 0.476887, + 0.574817, + 0.264644, + 0.10291, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "annual_energy_produced_kwh_bau": 71463.73, + "electric_to_load_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.295, + 17.556, + 26.273, + 48.938, + 61.118, + 55.855, + 45.968, + 31.371, + 7.937, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.839, + 18.257, + 27.039, + 30.854, + 30.078, + 40.563, + 46.492, + 31.885, + 0.563, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.613, + 28.064, + 32.519, + 31.809, + 26.589, + 48.014, + 33.359, + 8.571, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.074, + 18.555, + 27.555, + 31.268, + 30.453, + 47.058, + 47.137, + 32.667, + 8.422, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.161, + 34.519, + 48.681, + 57.482, + 61.267, + 60.469, + 44.906, + 30.046, + 31.797, + 4.036, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 2.41, + 15.561, + 6.682, + 4.846, + 14.218, + 39.413, + 45.485, + 31.736, + 8.707, + 0.0, + 0.0, + 0.0, + 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.192, + 14.64, + 23.523, + 27.735, + 27.495, + 44.191, + 45.377, + 31.348, + 8.86, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.396, + 18.424, + 28.083, + 32.671, + 32.089, + 48.487, + 48.949, + 34.059, + 10.261, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 17.414, + 26.173, + 30.235, + 29.647, + 24.935, + 47.193, + 33.187, + 10.701, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.399, + 16.374, + 16.629, + 11.768, + 19.895, + 20.298, + 33.821, + 19.718, + 3.254, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 20.992, + 26.338, + 13.592, + 9.964, + 13.499, + 28.811, + 10.581, + 0.0, + 0.0, + 0.0, + 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.049, + 15.536, + 24.867, + 29.282, + 28.85, + 44.727, + 46.371, + 32.719, + 11.491, + 0.0, + 0.0, + 0.0, + 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.31, + 15.207, + 23.629, + 27.877, + 27.8, + 44.716, + 46.428, + 32.723, + 11.278, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 2.733, + 17.09, + 26.046, + 19.652, + 11.565, + 29.287, + 39.861, + 26.198, + 12.724, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.007, + 13.518, + 7.55, + 14.877, + -0.0, + 34.868, + 17.499, + 1.984, + 1.366, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 14.316, + 23.95, + 28.795, + 28.779, + 44.68, + 47.104, + 33.008, + 12.438, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 13.351, + 22.265, + 26.96, + 13.853, + 43.938, + 46.07, + 32.587, + 12.674, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.493, + 15.494, + 13.892, + 2.476, + 27.489, + 12.49, + 1.421, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + -0.0, + -0.0, + 27.474, + 23.393, + -0.0, + 21.657, + 1.404, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.087, + 15.477, + 24.61, + 29.514, + -0.0, + -0.0, + 0.0, + 0.577, + 0.853, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 2.843, + 12.356, + 14.185, + 15.637, + 3.776, + 25.071, + 26.922, + 14.267, + 0.0, + 0.0, + 0.0, + 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.543, + 14.97, + 23.812, + 28.827, + 29.054, + 47.333, + 47.577, + 34.393, + 14.275, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 14.144, + 5.201, + 14.848, + 8.73, + 28.031, + 35.045, + 22.214, + 3.956, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 0.0, + -0.0, + -0.0, + -0.0, + -0.0, + 3.094, + 1.189, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 0.0, + 26.824, + 17.479, + 35.021, + 14.709, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.938, + 0.0, + 12.191, + 11.483, + 3.108, + -0.0, + 32.651, + 11.877, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.42, + 20.128, + 30.894, + 33.173, + 33.173, + 54.445, + 53.524, + 38.533, + 17.303, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.555, + 19.604, + 29.213, + 33.173, + 33.173, + 54.564, + 51.467, + 37.457, + 17.234, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.898, + 17.905, + 26.507, + 30.393, + 29.95, + 37.518, + 41.683, + 20.338, + 5.538, + 0.0, + 0.0, + 0.0, + 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.728, + 16.234, + 14.835, + 18.388, + 17.472, + 29.464, + 37.151, + 26.225, + 8.188, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.625, + 33.126, + 33.173, + 29.035, + 23.803, + 37.638, + 14.423, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 13.749, + 22.867, + 27.495, + 28.385, + 45.773, + 48.899, + 35.702, + 15.665, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.125, + 18.901, + 17.986, + 20.23, + 16.832, + 53.775, + 50.358, + 37.408, + 18.603, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.267, + 18.485, + 27.389, + 31.811, + 31.555, + 54.395, + 50.276, + 37.375, + 18.809, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 2.832, + 16.988, + 26.375, + 30.821, + 30.748, + 52.911, + 49.41, + 36.591, + 18.198, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 12.979, + 16.793, + 12.481, + 5.008, + 34.248, + 21.471, + 6.774, + 0.0, + 0.0, + 0.0, + 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.748, + 14.759, + 24.158, + 29.212, + 29.85, + 43.712, + 40.042, + 29.577, + 11.795, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 2.862, + 10.245, + 19.648, + 8.41, + 18.95, + 29.35, + 26.834, + 10.376, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 8.795, + 11.617, + 12.091, + 21.927, + 6.385, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.104, + 3.746, + 13.628, + -0.0, + 0.0, + 0.0, + 6.008, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + -0.0, + 8.13, + 4.847, + 8.888, + 2.329, + 27.229, + 3.715, + 0.0, + 0.0, + 0.0, + 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.438, + 16.512, + 26.103, + 31.586, + 32.183, + 41.647, + 51.306, + 37.491, + 18.454, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.44, + -0.0, + 25.262, + 30.705, + 30.816, + 52.054, + 50.637, + 36.952, + 1.014, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 2.818, + 17.904, + -0.0, + 32.264, + 32.735, + 49.033, + 52.157, + 29.623, + 19.06, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.171, + 18.846, + 28.881, + 33.173, + 33.173, + 59.053, + 52.677, + 39.289, + 20.424, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.689, + 18.203, + 26.908, + 31.458, + 31.476, + 45.787, + 50.129, + 37.245, + 19.569, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.204, + 17.16, + 26.328, + 31.093, + 31.429, + 56.985, + 50.469, + 37.493, + 19.219, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.217, + 17.519, + 26.815, + 31.437, + 31.322, + 56.283, + 49.96, + 30.302, + 3.684, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 3.325, + -0.0, + -0.0, + 4.397, + 20.496, + 27.518, + 12.594, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + -0.0, + 14.457, + 6.279, + 18.55, + 37.638, + 19.566, + 0.518, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.467, + 17.089, + 25.881, + 30.724, + 31.138, + 57.346, + 51.342, + 38.112, + 20.412, + 0.774, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.265, + 15.17, + 23.768, + 29.306, + 30.41, + 56.404, + 51.148, + 38.494, + 20.661, + 0.946, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 6.396, + 14.995, + 10.897, + 0.943, + 25.4, + 12.068, + 0.133, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.499, + 22.293, + 32.131, + 33.173, + 33.483, + 65.049, + 56.676, + 42.616, + 23.057, + 0.566, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 6.61, + 20.397, + 29.29, + 32.675, + 32.026, + 58.513, + 50.869, + 39.283, + 21.873, + 0.593, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.852, + 19.144, + 29.034, + 33.173, + 33.173, + 45.63, + 8.087, + 2.497, + 4.123, + 1.185, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.581, + 18.145, + 27.677, + 32.797, + 33.173, + 60.129, + 52.625, + 39.689, + 21.334, + 1.676, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 6.562, + 21.483, + 17.894, + 19.017, + 33.173, + 46.994, + 55.519, + 3.209, + 3.901, + 0.157, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 7.928, + 22.387, + 31.941, + 33.173, + 34.566, + 65.049, + 56.13, + 42.352, + 0.496, + 1.163, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.982, + 0.0, + 4.9, + 0.0, + 6.288, + 9.48, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 2.041, + 12.182, + 4.832, + 5.411, + 23.71, + 15.802, + 6.736, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 2.358, + 17.191, + 18.265, + 15.778, + 34.269, + 40.35, + 23.002, + 9.197, + 0.298, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 4.644, + 2.417, + 14.598, + 17.763, + 20.196, + 38.355, + 33.489, + 37.613, + 20.363, + 1.997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 4.719, + 16.629, + 25.043, + 8.111, + 31.135, + 58.226, + 40.785, + 37.378, + 9.776, + 2.016, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 25.5, + 29.703, + 16.997, + 33.942, + 50.287, + 37.216, + 20.167, + 2.172, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 6.514, + 20.178, + 17.456, + 20.157, + 16.835, + 45.874, + 43.636, + 30.474, + 21.603, + 0.555, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.15, + 21.968, + 30.704, + 33.173, + 37.826, + 61.245, + 52.627, + 39.655, + 17.153, + 1.859, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.404, + 19.353, + 27.745, + 31.021, + 29.318, + 53.628, + 48.721, + 28.645, + 16.01, + 2.526, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 19.086, + 27.865, + 32.064, + 32.343, + 59.561, + 50.779, + 38.069, + 20.746, + 2.804, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 21.31, + 18.289, + 16.709, + 21.477, + 33.559, + 38.581, + 24.576, + 15.22, + 1.994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 7.441, + 20.891, + 29.909, + 33.173, + 38.08, + 60.63, + 51.74, + 38.814, + 21.136, + 3.098, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.805, + 20.055, + 28.728, + 33.051, + 38.006, + 60.643, + 51.765, + 39.012, + 21.465, + 3.308, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 7.205, + 19.43, + 27.045, + 30.871, + 36.745, + 58.833, + 50.831, + 38.413, + 21.206, + 3.322, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 7.794, + 20.737, + 29.682, + 33.173, + 39.164, + 60.418, + 51.231, + 38.343, + 21.062, + 3.272, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 5.627, + 16.983, + 24.947, + 27.981, + 34.126, + 57.839, + 50.207, + 38.277, + 21.409, + 3.456, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 8.692, + 21.777, + 30.723, + 33.173, + 40.954, + 62.14, + 53.402, + 35.827, + 15.608, + 2.715, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 9.715, + 22.906, + 31.439, + 33.173, + 41.649, + 61.008, + 52.436, + 39.544, + 22.236, + 3.752, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 9.533, + 22.366, + 30.859, + 33.173, + 41.866, + 60.033, + 50.951, + 38.481, + 21.637, + 3.679, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 15.667, + 20.969, + 18.302, + 17.837, + 34.616, + 34.626, + 37.594, + 20.899, + 3.539, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 6.372, + 18.705, + 26.575, + 30.762, + 37.875, + 58.622, + 50.135, + 37.276, + 20.198, + 3.315, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 5.388, + 17.057, + 23.487, + 26.922, + 34.482, + 57.347, + 49.907, + 37.448, + 20.495, + 3.49, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 5.295, + 23.181, + 19.344, + 21.984, + 44.713, + 41.492, + 36.004, + 14.225, + 2.587, + 0.0, + 0.0, + 0.0, + 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.172, + 26.3, + 29.678, + 31.157, + 55.985, + 33.926, + 31.573, + 14.97, + 3.321, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.277, + 17.315, + 26.854, + 31.253, + 38.213, + 51.004, + 49.653, + 37.248, + 20.047, + 3.459, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.437, + 21.38, + 30.346, + 33.173, + 0.0, + 25.974, + 36.172, + 22.642, + 8.083, + 3.626, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.23, + 20.682, + 28.187, + 31.658, + 41.695, + 59.618, + 51.063, + 37.949, + 8.627, + 3.705, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.176, + 17.629, + 24.761, + 20.072, + 28.586, + 47.335, + 43.712, + 35.215, + 19.131, + 3.546, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 17.045, + 26.181, + 27.726, + 13.121, + 41.904, + 48.772, + 33.634, + 12.975, + 2.501, + 0.0, + 0.0, + 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.855, + 23.587, + 31.974, + 33.173, + 45.812, + 61.858, + 52.815, + 39.544, + 21.738, + 3.897, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.371, + 20.646, + 29.269, + 33.173, + 44.005, + 61.034, + 52.339, + 38.952, + 0.278, + 0.119, + 0.0, + 0.0, + 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.499, + 24.197, + 32.821, + 33.173, + 46.503, + 62.959, + 53.385, + 40.006, + 21.789, + 3.983, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 9.831, + 22.049, + 29.677, + 32.783, + 44.279, + 48.255, + 50.328, + 37.806, + 20.878, + 3.884, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.102, + 7.78, + 22.816, + 27.018, + 38.87, + 56.363, + 48.83, + 36.468, + 20.063, + 3.84, + 0.0, + 0.0, + 0.0, + 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.947, + 27.247, + 31.56, + 37.413, + 59.362, + 50.749, + 38.158, + 20.776, + 4.018, + 0.0, + 0.0, + 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.466, + 23.369, + 31.089, + 33.173, + 46.451, + 62.011, + 52.65, + 23.025, + 20.834, + 4.147, + 0.0, + 0.0, + 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.656, + 23.314, + 31.981, + 33.173, + 47.063, + 60.984, + 51.865, + 38.519, + 20.835, + 4.168, + 0.0, + 0.0, + 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.076, + 22.068, + 29.183, + 32.0, + 44.816, + 57.821, + 49.574, + 37.634, + 20.686, + 4.133, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 7.613, + 19.138, + 26.984, + 30.903, + 41.568, + 58.0, + 49.118, + 36.326, + 20.067, + 3.96, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 7.826, + 19.643, + 27.186, + 31.225, + 48.008, + 58.829, + 49.999, + 36.826, + 18.154, + 3.552, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 9.422, + 21.001, + 29.254, + 33.173, + 47.25, + 60.041, + 51.028, + 38.183, + 20.868, + 3.998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 21.868, + 0.0, + 0.106, + 33.173, + 37.083, + 43.139, + 25.356, + 4.066, + 0.123, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 21.743, + 29.562, + 33.168, + 27.553, + 59.174, + 27.824, + 13.292, + 11.345, + 2.382, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 9.496, + -0.0, + -0.0, + -0.0, + -0.0, + -0.0, + 0.0, + 15.534, + 5.293, + 0.0, + 0.0, + 0.0, + 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.736, + 23.947, + 31.279, + 33.173, + 47.311, + 60.308, + 51.065, + 38.291, + 20.778, + 3.9, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.716, + 19.213, + 25.028, + 27.235, + 42.251, + 56.191, + 48.43, + 36.611, + 19.772, + 3.928, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 7.999, + 18.673, + 25.438, + 28.046, + 44.706, + 54.671, + 47.048, + 35.476, + 19.405, + 3.879, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 7.209, + 17.132, + 23.082, + 26.084, + 40.696, + 55.38, + 47.491, + 35.618, + 19.443, + 3.602, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 7.573, + 9.535, + 15.537, + 28.133, + 40.262, + 55.195, + 47.058, + 35.243, + 15.317, + 3.642, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 8.018, + 18.207, + 24.196, + 26.349, + 38.937, + 51.26, + 43.815, + 33.047, + 17.817, + 3.746, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.204, + 16.997, + 24.814, + 27.081, + 37.906, + 51.558, + 43.157, + 33.025, + 18.288, + 3.421, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 6.752, + 16.718, + 22.743, + 24.946, + 38.312, + 52.181, + 44.858, + 33.81, + 18.572, + 3.518, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 5.932, + 16.378, + 23.943, + 27.22, + 40.64, + 54.601, + 46.52, + 34.421, + 18.868, + 3.708, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 8.056, + 18.498, + 25.631, + 29.015, + 51.342, + 56.648, + 48.125, + 36.077, + 19.762, + 3.833, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 6.175, + 18.601, + 16.6, + 0.0, + 9.577, + 35.413, + 12.144, + 11.06, + 6.955, + 1.803, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 0.0, + 3.645, + 14.311, + 15.415, + 23.032, + 25.642, + 14.267, + 3.607, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 8.427, + 19.625, + 26.944, + 30.413, + 45.367, + 27.336, + 35.024, + 14.139, + 7.992, + 1.356, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 9.216, + 19.936, + 26.978, + 29.712, + 44.961, + 55.036, + 46.4, + 34.812, + 18.68, + 3.942, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 8.208, + 19.246, + 26.589, + 28.662, + 42.574, + 52.939, + 44.44, + 33.491, + 18.453, + 3.776, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 7.545, + 17.952, + 24.207, + 25.743, + 39.879, + 51.587, + 44.059, + 33.166, + 17.922, + 4.002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 5.671, + 15.92, + 23.053, + 26.487, + 52.853, + 54.06, + 45.635, + 33.636, + 18.94, + 3.677, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 8.13, + 18.435, + 24.872, + 26.682, + 40.369, + 50.928, + 44.659, + 33.844, + 18.285, + 3.614, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.02, + 16.763, + 22.921, + 24.728, + 38.419, + 51.056, + 44.345, + 33.378, + 17.869, + 3.779, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 6.229, + 15.958, + 22.347, + 24.335, + 37.76, + 50.017, + 42.911, + 32.059, + 17.316, + 3.828, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.264, + 13.541, + 20.713, + 23.996, + 38.141, + 51.704, + 44.207, + 32.873, + 17.706, + 3.907, + 0.021, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 5.239, + 10.871, + 18.848, + 18.824, + 43.175, + 54.48, + 37.364, + 30.485, + 16.487, + 4.09, + 0.069, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.666, + 17.647, + 24.236, + 27.873, + 1.837, + 24.601, + 47.552, + 35.521, + 14.449, + 4.836, + 0.087, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 0.0, + 19.697, + 26.878, + 30.272, + 40.204, + 25.877, + 5.503, + 29.864, + 14.556, + 3.928, + 0.165, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 9.01, + 4.059, + 26.156, + 28.582, + 45.497, + 37.814, + 37.106, + 33.528, + 18.043, + 4.198, + 0.149, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 5.494, + 15.576, + 22.443, + 25.904, + 41.3, + 53.09, + 44.593, + 33.002, + 17.771, + 4.721, + 0.113, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 6.325, + 17.021, + 24.4, + 27.879, + 44.501, + 54.343, + 46.247, + 34.211, + 18.32, + 4.226, + 0.232, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 6.741, + 17.301, + 24.278, + 27.517, + 44.192, + 54.409, + 46.284, + 34.596, + 18.601, + 3.917, + 0.273, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 7.695, + 17.972, + 25.733, + 28.92, + 45.5, + 55.225, + 46.806, + 34.941, + 18.764, + 3.852, + 0.223, + 0.0, + 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.681, + 21.058, + 27.318, + 30.005, + 48.803, + 55.458, + 47.321, + 35.519, + 19.167, + 4.139, + 0.296, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.767, + 19.025, + 25.782, + 32.201, + 59.965, + 55.297, + 47.134, + 35.207, + 19.048, + 4.449, + 0.359, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.516, + 19.401, + 26.491, + 29.57, + 40.586, + 11.349, + 35.103, + 35.026, + 18.884, + 4.618, + 0.366, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 7.338, + 17.787, + 24.425, + 27.649, + 44.889, + 54.736, + 46.385, + 28.152, + 16.562, + 4.685, + 0.469, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 7.816, + 18.828, + 26.246, + 29.588, + 46.696, + 55.916, + 47.692, + 35.612, + 19.192, + 4.165, + 0.369, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 7.747, + 17.349, + 22.833, + 24.959, + 41.443, + 52.023, + 44.412, + 33.493, + 18.257, + 3.738, + 0.376, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.78, + 17.674, + 23.83, + 26.013, + 42.076, + 51.517, + 43.238, + 32.776, + 18.147, + 3.832, + 0.379, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 6.424, + 16.258, + 21.922, + 23.697, + 38.295, + 48.739, + 42.404, + 32.657, + 17.778, + 3.957, + 0.402, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 4.751, + 14.723, + 21.572, + 24.981, + 56.387, + 52.303, + 44.477, + 33.292, + 18.024, + 3.765, + 0.393, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 5.298, + 14.458, + 20.366, + 22.621, + 37.661, + 49.593, + 42.584, + 32.356, + 17.576, + 4.016, + 0.427, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 4.514, + 14.078, + 21.061, + 24.116, + 38.828, + 51.757, + 44.152, + 33.223, + 18.155, + 3.738, + 0.464, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.462, + 16.857, + 11.879, + 26.694, + 36.024, + 53.307, + 45.532, + 33.991, + 18.484, + 3.921, + 0.537, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 7.621, + 18.021, + 24.932, + 27.99, + 44.763, + 54.901, + 46.712, + 35.022, + 19.033, + 3.965, + 0.585, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 7.439, + 18.077, + 25.212, + 28.062, + 45.499, + 54.587, + 46.349, + 34.792, + 18.868, + 4.401, + 0.678, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 5.773, + 15.248, + 21.927, + 24.44, + 40.617, + 51.657, + 44.169, + 33.46, + 18.434, + 4.089, + 0.678, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 5.265, + 14.668, + 21.028, + 28.813, + 54.044, + 50.098, + 42.874, + 32.398, + 17.733, + 4.321, + 0.677, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 4.454, + 14.263, + 20.798, + 28.631, + 55.028, + 40.113, + 43.575, + 32.629, + 16.485, + 4.7, + 0.78, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 4.842, + 14.411, + 20.843, + 23.97, + 38.83, + 51.211, + 43.832, + 32.857, + 18.14, + 4.442, + 0.793, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + -0.0, + 8.163, + 14.512, + 7.109, + 0.0, + 0.201, + 30.39, + 13.747, + 18.154, + 4.591, + 0.888, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 4.855, + 13.985, + 19.912, + 23.653, + 33.088, + 36.726, + 37.538, + 29.956, + 15.21, + 4.994, + 0.92, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + -0.0, + 3.849, + 10.182, + 16.163, + 15.115, + 37.45, + 21.295, + 18.382, + 12.173, + 4.373, + 0.927, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 3.724, + 13.463, + 19.259, + 20.678, + 33.291, + 46.442, + 40.172, + 30.716, + 16.866, + 4.368, + 0.987, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.633, + 13.111, + 19.658, + 27.121, + 54.54, + 50.793, + 43.368, + 32.613, + 18.148, + 4.378, + 0.989, + 0.0, + 0.0, + 0.0, + 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.349, + 5.348, + 23.5, + 20.094, + 26.676, + 33.572, + 18.676, + 5.396, + 1.072, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 6.006, + 16.414, + 23.363, + 26.678, + 41.932, + 53.913, + 45.863, + 34.497, + 19.023, + 4.699, + 1.157, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 8.311, + 19.418, + 26.574, + 29.815, + 46.715, + 56.092, + 47.79, + 36.033, + 20.152, + 4.618, + 1.122, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 9.04, + 19.876, + 26.743, + 28.939, + 42.97, + 55.153, + 46.948, + 35.421, + 19.627, + 4.458, + 1.049, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 6.617, + 16.171, + 22.051, + 24.433, + 39.065, + 50.496, + 42.678, + 32.551, + 18.622, + 4.342, + 1.163, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.352, + 14.969, + 20.756, + 22.871, + 36.844, + 49.957, + 43.208, + 33.005, + 18.709, + 4.543, + 1.115, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 4.47, + 14.579, + 21.535, + 30.001, + 56.554, + 52.834, + 45.218, + 34.229, + 19.277, + 4.549, + 1.128, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 6.552, + 15.364, + 22.126, + 27.146, + 41.877, + 54.14, + 46.272, + 34.889, + 19.63, + 4.646, + 1.257, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 6.133, + 16.368, + 23.242, + 26.412, + 41.658, + 53.497, + 45.556, + 34.347, + 19.347, + 4.545, + 1.203, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 5.229, + 14.319, + 19.62, + 21.045, + 35.156, + 49.269, + 43.136, + 33.018, + 18.763, + 4.849, + 1.28, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 3.669, + 13.449, + 20.14, + 23.269, + 37.038, + 51.032, + 43.692, + 32.655, + 18.555, + 5.009, + 1.194, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 4.961, + 15.199, + 22.015, + 25.207, + 38.888, + 52.773, + 45.119, + 34.148, + 19.4, + 4.734, + 1.246, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 4.787, + 14.407, + 20.21, + 22.296, + 36.099, + 50.012, + 43.327, + 33.147, + 19.03, + 4.928, + 1.335, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 4.725, + 14.006, + 19.284, + 31.099, + 52.741, + 49.575, + 43.106, + 32.965, + 18.864, + 5.052, + 1.33, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.576, + 12.886, + 19.272, + 22.487, + 36.769, + 50.452, + 42.884, + 32.765, + 18.712, + 4.987, + 1.287, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 3.658, + 12.923, + 19.025, + 21.558, + 34.905, + 49.985, + 42.955, + 32.721, + 18.678, + 4.9, + 1.234, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.179, + 13.953, + 20.553, + 23.733, + 36.972, + 51.396, + 44.049, + 33.516, + 19.181, + 4.834, + 1.269, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 3.643, + 13.183, + 19.73, + 22.901, + 35.515, + 51.032, + 43.82, + 33.368, + 19.193, + 4.867, + 1.261, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.311, + 12.711, + 17.964, + 21.692, + 34.582, + 50.56, + 43.574, + 32.348, + 18.461, + 4.903, + 1.175, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 0.0, + 12.528, + 18.894, + 21.402, + 30.913, + 43.958, + 39.055, + 29.115, + 15.835, + 5.223, + 1.266, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 0.721, + 10.356, + 20.182, + 27.664, + 52.039, + 50.761, + 44.674, + 34.043, + 19.652, + 4.959, + 1.219, + 0.0, + 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.322, + 10.6, + 17.002, + 20.167, + 31.205, + 48.086, + 26.47, + 15.629, + 18.039, + 5.217, + 1.341, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 2.386, + 11.771, + 18.406, + 21.583, + 33.123, + 49.936, + 42.954, + 32.697, + 18.885, + 5.208, + 1.316, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.704, + 15.131, + 22.418, + 25.81, + 38.65, + 53.173, + 45.579, + 34.613, + 19.982, + 5.108, + 1.257, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 5.161, + 14.565, + 20.155, + 22.926, + 37.064, + 51.586, + 44.879, + 34.493, + 20.025, + 5.105, + 1.24, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.537, + 12.693, + 19.271, + 22.836, + 35.324, + 51.569, + 44.571, + 34.115, + 19.935, + 4.871, + 0.946, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 4.91, + 14.503, + 20.148, + 23.256, + 35.544, + 51.492, + 44.661, + 34.348, + 19.988, + 4.986, + 0.982, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 5.283, + 15.295, + 21.738, + 33.151, + 56.631, + 52.882, + 45.652, + 35.05, + 20.379, + 4.994, + 0.941, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 4.633, + 13.472, + 18.925, + 21.661, + 33.945, + 50.046, + 43.446, + 33.611, + 19.566, + 4.796, + 0.875, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 2.837, + 10.866, + 16.911, + 10.472, + 31.729, + 47.203, + 40.77, + 31.077, + 18.714, + 5.485, + 1.253, + 0.0, + 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.165, + 10.401, + 16.693, + 25.155, + 51.266, + 42.79, + 41.975, + 32.135, + 18.563, + 5.379, + 1.285, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 0.863, + 10.245, + 16.726, + 20.143, + 24.59, + 42.523, + 41.881, + 31.998, + 18.717, + 5.734, + 1.427, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 2.839, + 12.81, + 19.742, + 23.09, + 33.978, + 51.587, + 44.486, + 34.014, + 19.731, + 4.984, + 0.988, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 3.894, + 14.177, + 21.076, + 24.488, + 35.337, + 52.516, + 45.196, + 34.69, + 20.355, + 5.262, + 0.959, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 2.85, + 12.421, + 19.031, + 28.827, + 54.254, + 50.85, + 43.836, + 33.117, + 19.515, + 6.092, + 1.441, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 0.0, + 6.28, + 8.192, + 4.037, + 7.126, + 24.456, + 20.07, + 25.914, + 16.734, + 5.732, + 1.272, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 3.899, + 14.529, + 22.298, + 25.79, + 37.482, + 53.625, + 46.411, + 35.615, + 20.781, + 5.357, + 0.924, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 4.214, + 14.177, + 20.847, + 24.196, + 35.338, + 52.463, + 45.448, + 34.934, + 20.308, + 5.168, + 0.864, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 3.828, + 13.418, + 19.724, + 23.133, + 33.654, + 51.301, + 44.348, + 34.03, + 19.837, + 5.133, + 0.941, + 0.0, + 0.0, + 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.236, + -0.0, + -0.0, + 0.0, + 18.847, + 40.562, + 31.423, + 19.106, + 5.418, + 1.015, + 0.0, + 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.259, + 10.874, + 17.664, + 20.976, + 29.153, + 49.194, + 42.706, + 32.613, + 18.947, + 5.512, + 1.013, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 2.337, + 12.323, + 19.181, + 26.623, + 54.379, + 51.035, + 44.098, + 33.89, + 19.893, + 5.19, + 0.899, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 3.661, + 13.594, + 20.23, + 23.636, + 33.843, + 51.689, + 44.66, + 34.316, + 20.127, + 5.29, + 0.904, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 4.079, + 14.348, + 21.249, + 24.797, + 35.119, + 52.73, + 45.402, + 34.726, + 20.321, + 5.111, + 0.761, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 3.725, + 13.991, + 21.268, + 24.94, + 35.042, + 53.177, + 46.006, + 35.389, + 20.842, + 5.169, + 0.761, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 3.852, + 14.145, + 21.314, + 24.837, + 35.024, + 53.1, + 45.692, + 35.025, + 20.589, + 5.263, + 0.758, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 3.401, + 13.529, + 20.459, + 23.83, + 33.531, + 51.979, + 44.726, + 34.189, + 19.972, + 5.248, + 0.838, + 0.0, + 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.771, + 11.464, + 18.211, + 21.644, + 30.508, + 49.743, + 42.898, + 32.53, + 18.99, + 5.193, + 0.535, + 0.0, + 0.0, + 0.0, + 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.888, + 11.162, + 18.86, + 0.0, + 0.0, + 10.346, + 1.306, + 5.53, + 0.936, + 0.0, + 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.295, + 11.128, + 18.209, + 21.777, + 30.601, + 50.287, + 43.517, + 33.408, + 19.6, + 5.261, + 0.774, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 2.72, + 12.778, + 19.792, + 23.335, + 32.374, + 51.851, + 44.677, + 34.218, + 19.821, + 5.31, + 0.774, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 2.8, + 12.813, + 19.445, + 22.93, + 32.315, + 51.529, + 44.587, + 34.32, + 20.01, + 5.292, + 0.715, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 2.138, + 12.016, + 19.038, + 22.496, + 31.273, + 51.046, + 43.987, + 33.637, + 19.598, + 5.241, + 0.659, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 2.491, + 12.456, + 19.237, + 22.595, + 31.879, + 51.135, + 44.168, + 33.831, + 19.669, + 5.222, + 0.651, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 2.691, + 12.625, + 19.18, + 22.62, + 31.699, + 50.491, + 43.693, + 33.603, + 19.708, + 5.108, + 0.548, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 2.555, + 12.348, + 19.129, + 22.588, + 53.125, + 51.297, + 44.192, + 33.823, + 19.725, + 5.194, + 0.533, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 2.188, + 11.82, + 18.587, + 21.928, + 30.727, + 50.068, + 42.899, + 32.558, + 19.188, + 5.436, + 0.467, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 12.412, + 13.183, + 15.556, + 16.167, + 32.568, + 43.892, + 33.377, + 19.503, + 5.271, + 0.449, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 2.201, + 11.974, + 18.955, + 22.778, + 32.006, + 51.2, + 44.501, + 33.995, + 20.006, + 5.122, + 0.413, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 2.947, + 12.654, + 19.397, + 22.525, + 31.932, + 51.161, + 44.221, + 33.83, + 19.677, + 5.054, + 0.374, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 2.65, + 12.686, + 19.338, + 22.843, + 31.923, + 39.356, + 43.692, + 33.165, + 19.405, + 5.504, + 0.355, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.863, + 13.407, + 20.638, + 24.459, + 34.598, + 52.69, + 45.615, + 34.72, + 20.455, + 5.263, + 0.366, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 5.867, + 16.87, + 24.556, + 28.183, + 55.784, + 55.75, + 47.876, + 36.424, + 21.073, + 5.128, + 0.256, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 5.304, + 15.956, + 23.041, + 26.764, + 37.419, + 54.527, + 46.883, + 35.758, + 20.784, + 5.026, + 0.257, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 5.314, + 15.637, + 22.276, + 26.085, + 37.297, + 54.446, + 46.984, + 35.965, + 20.961, + 4.999, + 0.216, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 5.166, + 15.723, + 22.861, + 26.646, + 37.549, + 54.728, + 47.246, + 36.049, + 21.004, + 5.092, + 0.221, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 4.822, + 15.366, + 22.529, + 26.292, + 37.029, + 54.458, + 47.003, + 35.926, + 20.841, + 4.885, + 0.247, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 5.132, + 16.139, + 23.431, + 27.073, + 37.354, + 54.864, + 47.096, + 35.832, + 20.683, + 4.809, + 0.208, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 3.69, + 13.992, + 20.86, + 24.119, + 33.506, + 52.076, + 44.491, + 33.791, + 19.569, + 4.504, + 0.162, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 3.429, + 13.332, + 20.191, + 23.716, + 49.039, + 52.05, + 44.771, + 34.08, + 19.5, + 4.438, + 0.121, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 2.89, + 11.235, + 9.62, + 23.492, + 32.335, + 43.138, + 32.668, + 29.469, + 17.761, + 4.427, + 0.044, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 2.98, + 12.93, + 19.465, + 22.887, + 32.002, + 51.021, + 43.996, + 33.062, + 18.401, + 4.846, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 2.664, + 12.369, + 18.615, + 21.991, + 31.002, + 50.008, + 42.866, + 32.014, + 17.905, + 4.693, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 2.702, + 12.609, + 19.768, + 23.207, + 32.258, + 51.535, + 44.363, + 33.357, + 18.753, + 4.55, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 3.833, + 14.156, + 21.387, + 24.977, + 34.578, + 52.946, + 45.366, + 34.484, + 19.559, + 4.277, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 5.122, + 10.919, + 23.073, + 21.217, + 36.709, + 54.235, + 46.362, + 35.065, + 19.837, + 4.21, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 5.596, + 15.89, + 22.642, + 26.211, + 49.038, + 53.85, + 46.161, + 34.846, + 19.577, + 4.102, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 4.892, + 15.189, + 21.818, + 24.946, + 35.336, + 52.62, + 44.947, + 33.935, + 18.883, + 4.165, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.95, + 15.382, + 22.321, + 25.569, + 35.428, + 53.055, + 45.153, + 33.843, + 18.947, + 4.011, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + 6.193, + 17.118, + 24.192, + 27.776, + 38.887, + 54.897, + 46.877, + 35.375, + 19.814, + 4.01, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.956, + 15.403, + 22.433, + 25.824, + 36.533, + 53.562, + 45.666, + 34.336, + 19.141, + 3.881, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.512, + 14.04, + 21.138, + 24.639, + 33.763, + 44.73, + 38.087, + 28.109, + 17.711, + 3.829, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.342, + 20.105, + 15.563, + 20.939, + 43.789, + 11.106, + 6.74, + 15.646, + 3.846, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.206, + 13.382, + 20.655, + 24.159, + 40.699, + 51.962, + 44.49, + 33.046, + 18.11, + 3.497, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 3.317, + 12.908, + 19.823, + 23.363, + 33.134, + 51.387, + 43.821, + 32.894, + 17.934, + 3.311, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 2.647, + 11.938, + 18.134, + 20.888, + 30.397, + 49.16, + 29.063, + 18.127, + 15.679, + 3.414, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 3.169, + 13.182, + 20.518, + 24.03, + 29.806, + 23.293, + 2.215, + 32.155, + 4.061, + 0.0, + 0.0, + 0.0, + 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.608, + 11.198, + 18.529, + 21.523, + 29.773, + 49.571, + 36.817, + 27.009, + 18.03, + 3.263, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.658, + 14.937, + 21.822, + 25.354, + 36.675, + 53.074, + 45.153, + 33.557, + 17.951, + 3.17, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 4.47, + 13.351, + 20.358, + 23.724, + 0.0, + 0.0, + -0.0, + 32.928, + 17.546, + 3.034, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 4.559, + 14.8, + 21.577, + 24.692, + 34.951, + 17.646, + 14.164, + 3.262, + 11.961, + 3.064, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.346, + 14.514, + 21.155, + 23.987, + 38.147, + 50.832, + 42.945, + 31.641, + 16.52, + 2.936, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.007, + 13.715, + 20.232, + 22.949, + 32.59, + 49.817, + 42.235, + 11.33, + 16.261, + 1.282, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.29, + 14.191, + 21.243, + 24.484, + 34.561, + 51.9, + 43.936, + 32.105, + 16.685, + 2.624, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.469, + 14.661, + 21.761, + 25.041, + 35.52, + 52.583, + 43.955, + 31.639, + 16.266, + 2.521, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.692, + 18.439, + 25.556, + 28.628, + 41.04, + 55.536, + 46.825, + 34.511, + 17.592, + 2.6, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.349, + 19.284, + 26.474, + 29.752, + 42.418, + 55.775, + 47.001, + 34.528, + 17.718, + 2.464, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 6.355, + 16.826, + 24.358, + 27.833, + 40.036, + 54.604, + 46.25, + 34.163, + 17.484, + 2.297, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 6.448, + 16.63, + 23.262, + 25.68, + 36.955, + 50.734, + 42.48, + 31.538, + 16.276, + 2.08, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.631, + 15.332, + 21.731, + 24.116, + 34.74, + 49.249, + 41.64, + 30.716, + 15.672, + 2.034, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 5.177, + 15.28, + 21.904, + 25.094, + 36.219, + 52.026, + 43.213, + 30.807, + 14.097, + 1.609, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 3.301, + 14.493, + 23.27, + 26.25, + 34.453, + 52.892, + 43.364, + 29.939, + 15.488, + 1.828, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 9.936, + 21.756, + 29.988, + 33.173, + 46.749, + 58.737, + 48.937, + 35.461, + 17.661, + 1.827, + 0.0, + 0.0, + 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.197, + 23.189, + 30.651, + 33.173, + 49.066, + 58.651, + 49.066, + 35.842, + 17.752, + 1.724, + 0.0, + 0.0, + 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.501, + 21.767, + 29.044, + 31.882, + 46.321, + 56.684, + 47.386, + 34.467, + 17.208, + 1.465, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.522, + 18.85, + 25.203, + 27.633, + 41.258, + 52.86, + 44.668, + 32.809, + 16.191, + 1.228, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 7.428, + 18.968, + 26.614, + 29.869, + 41.872, + 55.885, + 47.012, + 33.628, + 16.158, + 1.036, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 9.695, + 20.352, + 26.828, + 29.139, + 42.938, + 53.796, + 44.996, + 32.574, + 16.007, + 0.924, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 7.891, + 18.831, + 25.809, + 28.911, + 42.229, + 54.208, + 45.098, + 32.014, + 15.045, + 0.806, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.558, + 17.478, + 26.815, + 30.453, + 40.374, + 56.224, + 47.029, + 33.967, + 16.1, + 0.824, + 0.0, + 0.0, + 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.026, + 22.575, + 29.784, + 32.661, + 47.474, + 57.267, + 47.551, + 33.995, + 15.888, + 0.704, + 0.0, + 0.0, + 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.218, + 21.295, + 28.018, + 30.533, + 44.647, + 54.894, + 45.455, + 32.599, + 15.276, + 0.579, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 9.671, + 20.442, + 27.254, + 29.689, + 43.455, + 53.991, + 44.928, + 32.23, + 14.983, + 0.454, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 7.132, + 17.578, + 24.882, + 27.975, + 40.379, + 54.23, + 45.247, + 32.353, + 14.763, + 0.375, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.481, + 18.931, + 25.447, + 28.016, + 41.777, + 53.452, + 44.647, + 31.944, + 14.564, + 0.287, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.121, + 18.993, + 18.147, + 14.745, + 26.176, + 33.094, + 14.815, + 32.192, + 14.525, + 0.199, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 6.393, + 16.511, + 18.64, + 20.988, + 31.461, + 43.473, + 31.515, + 20.857, + 6.288, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 7.319, + 11.956, + 19.367, + 15.955, + 8.605, + 35.17, + 19.662, + 20.814, + 3.178, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.156, + 16.764, + 23.675, + 26.738, + 39.197, + 52.733, + 43.556, + 30.621, + 13.319, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.757, + 17.049, + 23.942, + 26.909, + 32.511, + 52.81, + 43.549, + 30.604, + 13.239, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 7.844, + 18.553, + 25.918, + 28.765, + 41.023, + 54.077, + 44.49, + 30.685, + 12.92, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 9.238, + 21.021, + 28.083, + 30.998, + 42.748, + 55.891, + 32.812, + 21.028, + 0.769, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 21.915, + -0.0, + 31.996, + 30.451, + -0.0, + 0.0, + 32.668, + 0.168, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 12.037, + 23.496, + 30.354, + 33.112, + -0.0, + 8.642, + 0.856, + 1.343, + 6.991, + 0.0, + 0.0, + 0.0, + 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.636, + 22.645, + 29.207, + 31.5, + 45.873, + 55.153, + 45.529, + 31.23, + 12.696, + 0.0, + 0.0, + 0.0, + 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.403, + 21.075, + 27.737, + 29.83, + 43.294, + 54.173, + 44.731, + 31.333, + 12.684, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 9.845, + 20.208, + 25.56, + 26.893, + 40.482, + 51.807, + 42.975, + 30.31, + 12.358, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.76, + 19.418, + 16.164, + 17.604, + 40.894, + 52.737, + 42.698, + 28.876, + 11.299, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 9.488, + 20.09, + 26.225, + 28.214, + 40.378, + 52.474, + 43.029, + 29.587, + 11.34, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 9.59, + 20.453, + 26.809, + 29.132, + 42.136, + 53.42, + 43.529, + 29.887, + 11.653, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 9.186, + 19.379, + 25.036, + 26.335, + 38.25, + 49.977, + 41.59, + 29.048, + 11.283, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.586, + 9.588, + 17.179, + 24.998, + 30.238, + 39.987, + 42.081, + 24.675, + 10.106, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 5.578, + 16.714, + 23.008, + 25.543, + 33.561, + 51.669, + 42.205, + 28.219, + 9.485, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 7.904, + 18.48, + 25.455, + 28.308, + 39.289, + 53.097, + 43.473, + 29.271, + 10.309, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 9.403, + 20.42, + 27.008, + 29.052, + 40.327, + 52.267, + 42.641, + 28.651, + 10.097, + 0.0, + 0.0, + 0.0, + 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.312, + 21.065, + 27.448, + 29.334, + 41.002, + 52.306, + 42.806, + 28.973, + 10.042, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.968, + 18.807, + 25.685, + 28.596, + 40.323, + 53.31, + 43.558, + 29.134, + 9.09, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 8.941, + 19.747, + 25.796, + 27.769, + 37.378, + 51.826, + 42.618, + 28.587, + 8.488, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.751, + 19.3, + 24.771, + 26.32, + 35.205, + 50.504, + 41.208, + 27.587, + 8.425, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 9.369, + 20.123, + 26.768, + 29.081, + 38.363, + 52.999, + 43.082, + 28.534, + 9.375, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 9.479, + 19.846, + 26.11, + 28.107, + 36.934, + 51.758, + 42.084, + 27.927, + 8.656, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 6.552, + 17.615, + 24.614, + 26.829, + 32.329, + 45.237, + 21.373, + 15.397, + 3.951, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 6.526, + 18.328, + 25.127, + 27.673, + 32.384, + 51.002, + 39.475, + 24.195, + 6.128, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 8.694, + 21.027, + 28.423, + 31.797, + 38.239, + 56.366, + 46.074, + 30.184, + 9.126, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 12.079, + 23.36, + 30.004, + 31.858, + 41.123, + 55.159, + 44.808, + 29.943, + 9.169, + 0.0, + 0.0, + 0.0, + 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.639, + 22.909, + 29.382, + 31.159, + 39.974, + 53.734, + 43.437, + 28.532, + 8.384, + 0.0, + 0.0, + 0.0, + 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.441, + 21.098, + 27.733, + 29.656, + 37.669, + 53.073, + 42.893, + 27.912, + 7.809, + 0.0, + 0.0, + 0.0, + 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.085, + 20.573, + 26.343, + 27.951, + 35.305, + 34.349, + 37.732, + 21.475, + 7.337, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 9.334, + 5.407, + 24.053, + 26.489, + 34.208, + 51.585, + 42.2, + 27.414, + 2.347, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 9.339, + 21.668, + 20.253, + 3.182, + 1.2, + 53.521, + 30.443, + 24.998, + 5.205, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 8.626, + 20.365, + 27.129, + 28.968, + 33.291, + 53.33, + 43.212, + 28.24, + 6.986, + 0.0, + 0.0, + 0.0, + 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.772, + 23.71, + 30.802, + 33.082, + 40.276, + 55.8, + 44.556, + 28.918, + 6.692, + 0.0, + 0.0, + 0.0, + 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.37, + 22.008, + 28.829, + 31.027, + 37.221, + 54.058, + 43.428, + 27.471, + 5.801, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 8.937, + 20.264, + 27.125, + 29.52, + 33.983, + 52.883, + 42.124, + 27.094, + 5.506, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 8.38, + 19.274, + 25.581, + 27.249, + 31.014, + 50.872, + 41.09, + 26.9, + 5.369, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 7.901, + 18.221, + 24.09, + 26.473, + 30.822, + 50.971, + 40.976, + 26.458, + 5.143, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.726, + 18.539, + 24.832, + 26.654, + 29.396, + 50.082, + 40.022, + 25.226, + 4.373, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 6.894, + 16.145, + 22.026, + 25.279, + 14.14, + 50.629, + 40.747, + 25.631, + 4.503, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.245, + 19.504, + 26.811, + 29.213, + 32.233, + 52.727, + 42.142, + 26.23, + 4.243, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.615, + 16.662, + 24.945, + 27.441, + 25.496, + 34.494, + 38.758, + 22.93, + 0.177, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 16.838, + 24.682, + 27.441, + 25.787, + 42.019, + 41.615, + 26.146, + 4.354, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 17.489, + 24.43, + 15.951, + 8.554, + 12.973, + 28.853, + 16.034, + 0.172, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.683, + 0.0, + 25.492, + 28.496, + 26.996, + 34.94, + 42.369, + 26.204, + 1.041, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.049, + 18.346, + 25.615, + 28.392, + 28.368, + 52.155, + 41.303, + 25.509, + 3.479, + 0.0, + 0.0, + 0.0, + 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.68, + 23.429, + 30.675, + 33.006, + 35.97, + 55.921, + 44.926, + 28.015, + 4.2, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.616, + 20.609, + 27.914, + 30.245, + 32.183, + 53.307, + 42.705, + 21.744, + 0.572, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 20.009, + 12.59, + 18.27, + -0.0, + 0.0, + 6.376, + 21.333, + 0.481, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 17.152, + 6.661, + 8.469, + -0.0, + 20.38, + 41.388, + 25.269, + 2.585, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 6.228, + 17.828, + 25.302, + 17.74, + 9.811, + 34.875, + 15.526, + 5.397, + 0.037, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.433, + 19.05, + 25.603, + 27.813, + 27.054, + 51.205, + 40.825, + 25.097, + 2.723, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.536, + 24.159, + 27.215, + 25.496, + 32.08, + 40.953, + 16.43, + 0.485, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 8.368, + 20.8, + 28.619, + 31.437, + 31.162, + 54.6, + 43.386, + 27.085, + 0.534, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.316, + 19.555, + 26.573, + 29.512, + 27.868, + 42.239, + 43.347, + 27.122, + 3.194, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.224, + 18.375, + 24.503, + 27.639, + 26.241, + 40.556, + 41.426, + 26.084, + 3.058, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.599, + 17.827, + 24.265, + 25.721, + 23.68, + 39.486, + 40.532, + 25.977, + 3.288, + 0.0, + 0.0, + 0.0, + 0.0, + 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.218, + 13.943, + 11.647, + 8.653, + 23.858, + 39.1, + 24.543, + 2.446, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 16.044, + 24.184, + 27.737, + 26.374, + 30.386, + 42.159, + 26.814, + 3.296, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.877, + 17.267, + 24.662, + 27.98, + 26.4, + 50.518, + 41.658, + 9.746, + 0.033, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + -0.0, + -0.0, + 0.0, + -0.0, + 0.0, + 4.148, + 2.609, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.246, + 5.636, + 12.138, + 8.723, + 12.15, + 26.043, + 10.925, + 1.33, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + -0.0, + -0.0, + 6.251, + -0.0, + 24.022, + 1.01, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 17.436, + 0.0, + 2.829, + 6.59, + 0.0, + -0.0, + 26.153, + 0.298, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 5.927, + 19.803, + 27.648, + 30.987, + 29.417, + 51.338, + 44.242, + 27.075, + 0.347, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.591, + 17.117, + 24.567, + 28.009, + 14.288, + 49.117, + 28.104, + 18.831, + 2.189, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.817, + 17.979, + 25.628, + 28.807, + 27.147, + 30.793, + 42.241, + 26.221, + 2.482, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.753, + 18.978, + 27.314, + 30.589, + 28.788, + 49.857, + 43.622, + 26.801, + 2.512, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 6.077, + 19.418, + 22.656, + 22.248, + 28.098, + 38.385, + 43.233, + 27.44, + 2.862, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.119, + 17.364, + 25.511, + 29.44, + 28.819, + 11.688, + 11.743, + 26.74, + 2.438, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.946, + 5.538, + -0.0, + 28.626, + 0.0, + -0.0, + -0.0, + 12.014, + 1.73, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.875, + 18.895, + 27.406, + 31.13, + 29.671, + 48.99, + 44.107, + 27.955, + 2.984, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.455, + 18.972, + 27.367, + 30.623, + 28.976, + 48.686, + 43.936, + 27.891, + 3.245, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 16.751, + 24.032, + 26.165, + 25.421, + 29.559, + 42.267, + 26.814, + 2.967, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 17.215, + 8.345, + 7.767, + 5.078, + -0.0, + 13.585, + 27.248, + 0.436, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.847, + 18.927, + 27.874, + 31.806, + 30.681, + 49.205, + 45.738, + 29.44, + 4.245, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.856, + 18.095, + 26.031, + 29.119, + 27.63, + 46.857, + 43.779, + 28.434, + 0.515, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 15.995, + 12.879, + 12.961, + 26.939, + 16.962, + 38.23, + 27.997, + 4.088, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.455, + 17.837, + 25.9, + 28.978, + 27.539, + 45.665, + 43.835, + 28.459, + 3.956, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 3.274, + 16.52, + 22.742, + 25.267, + 24.875, + 43.403, + 41.963, + 26.794, + 3.136, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 15.416, + 27.996, + 12.996, + 23.613, + 38.332, + 29.251, + 3.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, + 1.14, + 15.696, + 23.887, + 11.604, + 27.066, + 43.995, + 43.518, + 27.835, + 3.986, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.178, + 15.78, + 24.16, + 27.863, + 26.746, + 19.386, + 35.382, + 8.688, + 0.211, + 0.0, + 0.0, + 0.0, + 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.356, + 15.997, + 24.09, + 27.865, + 26.878, + 43.893, + 38.632, + 27.822, + 0.957, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.736, + 18.906, + 27.744, + 31.115, + 16.966, + 27.135, + 29.567, + 11.956, + 0.401, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 4.307, + 18.302, + 26.646, + 19.176, + 22.067, + 46.266, + 45.32, + 30.476, + 6.111, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 2.236, + 15.792, + 10.449, + 13.207, + 9.39, + 23.939, + 25.58, + 12.103, + 0.437, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 8.358, + 15.162, + -0.0, + -0.0, + 28.319, + 1.342, + 0.0, + 0.0, + 0.0, + 0.0, + 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.699, + -0.0, + 0.0, + -0.0, + -0.0, + -0.0, + 6.439, + 0.226, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + -0.0, + 4.003, + 4.854, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + -0.0, + -0.0, + 6.401, + 0.304, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + -0.0, + 13.874, + 23.884, + 28.014, + 11.32, + 24.822, + 44.869, + 20.658, + 8.033, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "size_kw": 81.6667, + "lifecycle_om_cost_after_tax_bau": 6256.0, + "name": "ground", + "annual_energy_produced_kwh": 145904.83, + "year_one_energy_produced_kwh_bau": 74767.0, + "year_one_energy_produced_kwh": 152649.0, + "annual_energy_exported_kwh": 0.0, + "electric_to_storage_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.232, + 31.876, + 31.876, + 31.876, + 12.998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.198, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 15.795, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.189, + 15.527, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.276, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.961, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.032, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.677, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 15.316, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.353, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.64, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.795, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.198, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.067, + 16.044, + 31.876, + 31.876, + 31.876, + 31.876, + 31.759, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.136, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.856, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.306, + 2.02, + 13.174, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.043, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.95, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.369, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.624, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.034, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.959, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.461, + 31.876, + 31.876, + 31.876, + 31.876, + 26.914, + 19.495, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.146, + 31.225, + 31.876, + 31.876, + 31.876, + 31.876, + 11.498, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.53, + 31.529, + 31.876, + 31.876, + 31.876, + 31.876, + 10.81, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.699, + 23.467, + 25.713, + 31.876, + 31.876, + 31.876, + 26.866, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.222, + 3.098, + 14.268, + 24.046, + 21.599, + 31.876, + 31.876, + 26.254, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.654, + 31.876, + 31.876, + 31.876, + 31.876, + 23.103, + 4.172, + 6.109, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.695, + 13.218, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.08, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.909, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.084, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.463, + 31.812, + 31.876, + 31.876, + 31.876, + 31.876, + 9.595, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.306, + 12.259, + 13.412, + 20.428, + 20.384, + 21.601, + 17.878, + 5.975, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.942, + 11.808, + 7.379, + 12.797, + 0.334, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.856, + 18.51, + 31.876, + 1.78, + 31.876, + 31.876, + 31.876, + 0.871, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 9.833, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 8.16, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.689, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 6.303, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.653, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 6.34, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.503, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.49, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.746, + 20.339, + 31.876, + 31.876, + 31.876, + 31.876, + 27.783, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.578, + 30.29, + 31.876, + 31.876, + 31.876, + 31.876, + 11.001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 12.345, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 5.648, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 13.545, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 4.448, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 12.879, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 5.114, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.82, + 17.011, + 28.428, + 31.876, + 31.876, + 31.876, + 31.876, + 1.611, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 13.157, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 4.836, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.936, + 24.128, + 31.876, + 31.876, + 31.876, + 31.876, + 18.805, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.048, + 14.344, + 28.422, + 28.78, + 23.002, + 31.876, + 31.876, + 13.026, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 12.045, + 22.708, + 31.876, + 31.876, + 31.876, + 11.601, + 13.034, + 7.213, + 0.0, + 0.0, + 0.0, + 0.0, + 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.593, + 13.825, + 6.085, + 14.029, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 17.993, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 12.473, + 31.876, + 29.934, + 31.876, + 31.876, + 31.876, + 7.462, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 14.273, + 31.876, + 31.876, + 24.006, + 31.876, + 31.876, + 11.591, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.351, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.642, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.993, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 13.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.838, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.155, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.432, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.561, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.19, + 21.148, + 26.483, + 31.876, + 29.148, + 16.643, + 31.876, + 16.01, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.957, + 1.547, + 2.061, + 7.237, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 16.097, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 1.895, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.352, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.641, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.225, + 10.512, + 9.869, + 6.742, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.303, + 31.876, + 31.876, + 31.876, + 31.876, + 31.566, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.404, + 31.876, + 31.876, + 31.876, + 31.876, + 31.465, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 17.452, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.541, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 17.086, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.906, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.293, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 17.7, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 19.386, + 31.876, + 31.876, + 31.876, + 31.876, + 30.483, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.006, + 22.408, + 17.817, + 24.96, + 31.876, + 5.358, + 31.876, + 22.334, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.09, + 21.122, + 26.598, + 31.876, + 31.876, + 31.876, + 28.936, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.049, + 8.037, + 21.429, + 31.876, + 31.876, + 31.876, + 31.876, + 20.354, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.38, + 18.101, + 31.876, + 31.876, + 31.876, + 31.876, + 31.388, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.5, + 18.603, + 31.876, + 31.876, + 31.876, + 31.876, + 30.766, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.181, + 8.624, + 20.991, + 27.189, + 31.876, + 31.876, + 31.876, + 24.76, + 0.0, + 0.0, + 0.0, + 0.0, + 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.132, + 19.436, + 31.876, + 31.876, + 31.876, + 31.876, + 29.301, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.615, + 21.032, + 31.876, + 31.876, + 31.876, + 31.876, + 27.223, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.725, + 15.069, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.199, + 0.0, + 0.0, + 0.0, + 0.0, + 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.751, + 20.119, + 28.581, + 31.876, + 31.876, + 31.876, + 31.294, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.738, + 12.117, + 26.02, + 31.876, + 31.876, + 31.876, + 31.876, + 9.995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.123, + 20.777, + 31.876, + 31.876, + 31.876, + 31.876, + 26.969, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.292, + 20.534, + 31.876, + 31.876, + 31.876, + 31.876, + 27.043, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.715, + 21.28, + 31.876, + 31.876, + 31.876, + 31.876, + 25.875, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.883, + 21.31, + 31.876, + 31.876, + 31.876, + 31.876, + 25.676, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.777, + 20.16, + 31.876, + 31.876, + 31.876, + 31.876, + 26.932, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.424, + 22.35, + 31.876, + 31.876, + 31.876, + 31.876, + 24.095, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.638, + 22.832, + 31.876, + 31.876, + 31.876, + 31.876, + 23.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, + 3.763, + 22.924, + 31.876, + 31.876, + 31.876, + 31.876, + 23.183, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.599, + 12.464, + 23.196, + 31.876, + 31.876, + 31.876, + 31.876, + 12.61, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.79, + 21.307, + 31.876, + 31.876, + 31.876, + 31.876, + 24.773, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.749, + 20.538, + 31.876, + 31.876, + 31.876, + 31.876, + 25.582, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.069, + 21.391, + 28.331, + 31.876, + 31.876, + 31.876, + 27.955, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.942, + 20.637, + 27.404, + 31.876, + 31.876, + 31.876, + 29.763, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.103, + 20.859, + 31.876, + 31.876, + 31.876, + 31.876, + 24.907, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.654, + 22.665, + 31.876, + 31.876, + 31.876, + 31.876, + 13.049, + 9.502, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.656, + 22.754, + 31.876, + 31.876, + 31.876, + 31.876, + 22.46, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.758, + 21.794, + 31.876, + 31.876, + 31.876, + 31.876, + 23.317, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.802, + 12.383, + 26.552, + 31.876, + 31.876, + 31.876, + 31.876, + 6.133, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.595, + 25.037, + 31.876, + 31.876, + 31.876, + 31.876, + 19.237, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.448, + 23.377, + 31.876, + 31.876, + 31.876, + 31.876, + 21.044, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.935, + 25.388, + 31.876, + 31.876, + 31.876, + 31.876, + 18.546, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.956, + 24.779, + 31.876, + 31.876, + 31.876, + 31.876, + 19.134, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.862, + 23.101, + 31.876, + 31.876, + 31.876, + 31.876, + 20.906, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.068, + 23.511, + 25.978, + 31.876, + 31.876, + 31.876, + 26.189, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.397, + 24.875, + 31.876, + 31.876, + 31.876, + 31.876, + 18.598, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.72, + 25.163, + 31.876, + 31.876, + 31.876, + 31.876, + 17.986, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.855, + 25.259, + 31.876, + 31.876, + 31.876, + 31.876, + 17.755, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.075, + 23.983, + 31.876, + 31.876, + 31.876, + 31.876, + 20.812, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.823, + 24.142, + 31.876, + 31.876, + 31.876, + 31.876, + 15.091, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.03, + 25.165, + 31.876, + 31.876, + 31.876, + 31.876, + 17.674, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 24.845, + 23.148, + 31.876, + 10.299, + 31.876, + 31.876, + 23.453, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.301, + 24.984, + 23.14, + 31.876, + 31.876, + 31.876, + 26.32, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 24.366, + 31.876, + 11.311, + 1.359, + 4.486, + 2.099, + 8.289, + 8.164, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.412, + 26.719, + 31.876, + 31.876, + 31.876, + 31.876, + 17.738, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.096, + 7.472, + 25.061, + 31.876, + 31.876, + 31.876, + 31.876, + 17.24, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.13, + 7.389, + 24.706, + 31.876, + 31.876, + 31.876, + 31.876, + 13.831, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.16, + 7.246, + 24.564, + 31.876, + 31.876, + 31.876, + 31.876, + 17.899, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.326, + 6.195, + 24.389, + 31.876, + 31.876, + 31.876, + 31.876, + 18.96, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.287, + 7.389, + 24.776, + 31.876, + 31.876, + 31.876, + 31.876, + 17.417, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.243, + 7.377, + 23.159, + 31.876, + 31.876, + 31.876, + 31.876, + 19.089, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.287, + 7.444, + 24.4, + 31.876, + 31.876, + 31.876, + 31.876, + 17.739, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.307, + 7.469, + 23.988, + 31.876, + 31.876, + 31.876, + 31.876, + 18.106, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.377, + 8.023, + 25.0, + 31.876, + 31.876, + 31.876, + 31.876, + 8.843, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.509, + 5.223, + 24.572, + 31.876, + 31.876, + 31.876, + 27.822, + 23.619, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.015, + 17.877, + 23.514, + 28.059, + 13.013, + 31.876, + 31.876, + 25.144, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.512, + 7.851, + 25.115, + 31.876, + 31.876, + 31.876, + 31.876, + 16.392, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.645, + 8.327, + 25.919, + 31.876, + 31.876, + 31.876, + 31.876, + 14.979, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.701, + 8.372, + 25.077, + 31.876, + 31.876, + 31.876, + 31.876, + 15.719, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.803, + 8.431, + 24.847, + 31.876, + 31.876, + 31.876, + 31.876, + 15.788, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.817, + 8.272, + 24.202, + 31.876, + 31.876, + 31.876, + 31.876, + 5.139, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.8, + 8.17, + 25.352, + 31.876, + 31.876, + 31.876, + 31.876, + 15.547, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.897, + 8.139, + 24.64, + 31.876, + 31.876, + 31.876, + 31.876, + 16.192, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.843, + 7.871, + 24.024, + 31.876, + 31.876, + 31.876, + 31.876, + 17.131, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.972, + 8.019, + 23.336, + 31.876, + 31.876, + 31.876, + 31.876, + 17.541, + 0.0, + 0.0, + 0.0, + 0.0, + 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.043, + 8.38, + 24.639, + 31.876, + 31.876, + 31.876, + 31.876, + 15.807, + 0.0, + 0.0, + 0.0, + 0.0, + 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.387, + 8.949, + 21.047, + 31.876, + 31.876, + 31.876, + 31.876, + 18.486, + 0.0, + 0.0, + 0.0, + 0.0, + 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.644, + 9.392, + 25.499, + 19.465, + 31.876, + 31.876, + 31.876, + 14.102, + 0.0, + 0.0, + 0.0, + 0.0, + 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.278, + 8.91, + 26.08, + 31.876, + 31.876, + 31.876, + 31.876, + 13.601, + 0.0, + 0.0, + 0.0, + 0.0, + 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.397, + 8.673, + 23.823, + 31.876, + 31.876, + 31.876, + 31.876, + 15.976, + 0.0, + 0.0, + 0.0, + 0.0, + 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.758, + 9.278, + 24.153, + 31.876, + 31.876, + 31.876, + 31.876, + 14.68, + 0.0, + 0.0, + 0.0, + 0.0, + 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.63, + 9.039, + 24.641, + 31.876, + 31.876, + 31.876, + 31.876, + 14.559, + 0.0, + 0.0, + 0.0, + 0.0, + 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.409, + 8.882, + 25.172, + 31.876, + 31.876, + 31.876, + 31.876, + 14.406, + 0.0, + 0.0, + 0.0, + 0.0, + 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.377, + 9.286, + 27.434, + 31.876, + 31.876, + 31.876, + 31.876, + 11.772, + 0.0, + 0.0, + 0.0, + 0.0, + 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.672, + 9.2, + 26.069, + 31.876, + 31.876, + 31.876, + 28.515, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.021, + 9.471, + 25.601, + 31.876, + 31.876, + 31.876, + 31.876, + 12.777, + 0.0, + 0.0, + 0.0, + 0.0, + 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.901, + 9.117, + 24.912, + 31.876, + 31.876, + 31.876, + 31.876, + 13.939, + 0.0, + 0.0, + 0.0, + 0.0, + 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.8, + 9.007, + 24.846, + 31.876, + 31.876, + 31.876, + 31.876, + 14.216, + 0.0, + 0.0, + 0.0, + 0.0, + 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.446, + 8.692, + 25.407, + 31.876, + 31.876, + 31.876, + 31.876, + 14.324, + 0.0, + 0.0, + 0.0, + 0.0, + 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.421, + 8.653, + 25.472, + 31.876, + 31.876, + 31.876, + 31.876, + 14.322, + 0.0, + 0.0, + 0.0, + 0.0, + 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.454, + 8.428, + 24.594, + 31.876, + 31.876, + 31.876, + 31.876, + 15.393, + 0.0, + 0.0, + 0.0, + 0.0, + 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.433, + 8.233, + 23.663, + 31.876, + 31.876, + 31.876, + 31.731, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.329, + 8.248, + 24.209, + 31.876, + 31.876, + 31.876, + 31.876, + 16.083, + 0.0, + 0.0, + 0.0, + 0.0, + 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.567, + 8.136, + 23.24, + 31.876, + 31.876, + 31.876, + 31.876, + 16.926, + 0.0, + 0.0, + 0.0, + 0.0, + 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.374, + 8.252, + 18.628, + 31.876, + 31.876, + 31.876, + 31.876, + 21.614, + 0.0, + 0.0, + 0.0, + 0.0, + 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.752, + 8.668, + 25.064, + 31.876, + 31.876, + 31.876, + 31.876, + 14.386, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.075, + 9.131, + 24.968, + 31.876, + 31.876, + 31.876, + 31.876, + 13.695, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.016, + 8.887, + 24.177, + 31.876, + 31.876, + 31.876, + 31.876, + 14.789, + 0.0, + 0.0, + 0.0, + 0.0, + 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.706, + 8.381, + 23.799, + 31.876, + 31.876, + 31.876, + 26.403, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.783, + 8.456, + 23.233, + 31.876, + 31.876, + 31.876, + 26.972, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.114, + 7.928, + 23.488, + 31.876, + 31.876, + 31.876, + 31.876, + 16.339, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.088, + 7.76, + 17.531, + 19.113, + 31.876, + 31.876, + 31.876, + 26.615, + 8.639, + 0.0, + 0.0, + 0.0, + 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.908, + 8.034, + 22.545, + 31.876, + 31.876, + 31.876, + 31.876, + 17.383, + 0.0, + 0.0, + 0.0, + 0.0, + 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.757, + 7.45, + 18.194, + 16.361, + 31.876, + 31.876, + 31.876, + 31.876, + 6.108, + 0.0, + 0.0, + 0.0, + 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.88, + 8.182, + 22.565, + 31.876, + 31.876, + 31.876, + 31.876, + 17.242, + 0.0, + 0.0, + 0.0, + 0.0, + 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.751, + 7.799, + 22.52, + 31.876, + 31.876, + 31.876, + 27.572, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.493, + 4.87, + 13.008, + 9.85, + 12.102, + 31.876, + 31.876, + 31.876, + 31.876, + 8.546, + 0.0, + 0.0, + 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.963, + 8.124, + 23.639, + 31.876, + 31.876, + 31.876, + 31.876, + 16.144, + 0.0, + 0.0, + 0.0, + 0.0, + 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.803, + 8.419, + 25.374, + 31.876, + 31.876, + 31.876, + 31.876, + 14.274, + 0.0, + 0.0, + 0.0, + 0.0, + 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.632, + 8.42, + 25.707, + 31.876, + 31.876, + 31.876, + 31.876, + 14.11, + 0.0, + 0.0, + 0.0, + 0.0, + 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.584, + 8.055, + 24.262, + 31.876, + 31.876, + 31.876, + 31.876, + 15.968, + 0.0, + 0.0, + 0.0, + 0.0, + 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.716, + 7.809, + 23.518, + 31.876, + 31.876, + 31.876, + 31.876, + 16.825, + 0.0, + 0.0, + 0.0, + 0.0, + 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.632, + 7.557, + 22.759, + 31.876, + 31.876, + 31.876, + 26.761, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.638, + 8.096, + 23.515, + 31.876, + 31.876, + 31.876, + 31.876, + 16.621, + 0.0, + 0.0, + 0.0, + 0.0, + 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.927, + 7.924, + 23.9, + 31.876, + 31.876, + 31.876, + 31.876, + 16.118, + 0.0, + 0.0, + 0.0, + 0.0, + 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.771, + 7.774, + 23.496, + 31.876, + 31.876, + 31.876, + 31.876, + 16.828, + 0.0, + 0.0, + 0.0, + 0.0, + 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.85, + 7.594, + 22.606, + 31.876, + 31.876, + 31.876, + 31.876, + 17.819, + 0.0, + 0.0, + 0.0, + 0.0, + 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.747, + 7.409, + 22.853, + 31.876, + 31.876, + 31.876, + 31.876, + 17.86, + 0.0, + 0.0, + 0.0, + 0.0, + 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.909, + 7.67, + 22.98, + 31.876, + 31.876, + 31.876, + 31.876, + 17.311, + 0.0, + 0.0, + 0.0, + 0.0, + 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.844, + 7.558, + 22.93, + 31.876, + 31.876, + 31.876, + 22.269, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.203, + 7.935, + 22.315, + 31.876, + 31.876, + 31.876, + 31.876, + 17.416, + 0.0, + 0.0, + 0.0, + 0.0, + 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.841, + 7.529, + 22.154, + 31.876, + 31.876, + 31.876, + 31.876, + 18.346, + 0.0, + 0.0, + 0.0, + 0.0, + 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.796, + 7.315, + 22.481, + 31.876, + 31.876, + 31.876, + 31.876, + 18.276, + 0.0, + 0.0, + 0.0, + 0.0, + 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.621, + 6.98, + 22.15, + 31.876, + 31.876, + 31.876, + 31.876, + 19.119, + 0.0, + 0.0, + 0.0, + 0.0, + 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.558, + 6.924, + 21.959, + 31.876, + 31.876, + 31.876, + 31.876, + 19.428, + 0.0, + 0.0, + 0.0, + 0.0, + 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.702, + 6.879, + 19.296, + 31.724, + 31.876, + 31.876, + 31.876, + 22.145, + 0.0, + 0.0, + 0.0, + 0.0, + 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.719, + 7.15, + 20.02, + 31.876, + 31.876, + 31.876, + 25.93, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.664, + 6.797, + 20.874, + 31.876, + 31.876, + 31.876, + 31.876, + 20.534, + 0.0, + 0.0, + 0.0, + 0.0, + 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.618, + 6.902, + 21.027, + 31.876, + 31.876, + 31.876, + 31.876, + 20.323, + 0.0, + 0.0, + 0.0, + 0.0, + 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.704, + 7.16, + 22.42, + 31.876, + 31.876, + 31.876, + 31.876, + 18.584, + 0.0, + 0.0, + 0.0, + 0.0, + 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.831, + 7.265, + 23.056, + 31.876, + 31.876, + 31.876, + 31.876, + 17.717, + 0.0, + 0.0, + 0.0, + 0.0, + 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.504, + 6.7, + 22.049, + 31.876, + 31.876, + 31.876, + 31.876, + 19.616, + 0.0, + 0.0, + 0.0, + 0.0, + 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.212, + 6.487, + 22.695, + 31.876, + 31.876, + 31.876, + 31.876, + 19.476, + 0.0, + 0.0, + 0.0, + 0.0, + 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.207, + 6.535, + 22.814, + 31.876, + 31.876, + 31.876, + 23.744, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.165, + 6.6, + 22.665, + 31.876, + 31.876, + 31.876, + 31.876, + 19.439, + 0.0, + 0.0, + 0.0, + 0.0, + 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.152, + 6.486, + 21.85, + 31.876, + 31.876, + 31.876, + 31.876, + 20.382, + 0.0, + 0.0, + 0.0, + 0.0, + 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.558, + 6.661, + 20.26, + 31.876, + 31.876, + 31.876, + 26.384, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.975, + 7.552, + 19.96, + 31.876, + 31.876, + 31.876, + 31.876, + 20.382, + 0.0, + 0.0, + 0.0, + 0.0, + 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.496, + 6.561, + 20.993, + 31.876, + 31.876, + 31.876, + 31.876, + 20.82, + 0.0, + 0.0, + 0.0, + 0.0, + 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.217, + 6.214, + 21.535, + 31.876, + 31.876, + 31.876, + 31.876, + 20.904, + 0.0, + 0.0, + 0.0, + 0.0, + 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.397, + 6.445, + 21.148, + 31.876, + 31.876, + 31.876, + 25.531, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.436, + 5.334, + 17.213, + 13.688, + 31.876, + 31.876, + 31.876, + 31.876, + 12.198, + 0.0, + 0.0, + 0.0, + 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.687, + 7.026, + 21.413, + 31.876, + 31.876, + 31.876, + 31.876, + 19.743, + 0.0, + 0.0, + 0.0, + 0.0, + 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.146, + 6.292, + 21.875, + 31.876, + 31.876, + 31.876, + 31.876, + 20.556, + 0.0, + 0.0, + 0.0, + 0.0, + 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.059, + 6.008, + 21.7, + 31.876, + 31.876, + 31.876, + 31.876, + 21.102, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.361, + 4.818, + 16.861, + 25.918, + 31.876, + 22.631, + 29.625, + 29.76, + 15.524, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.51, + 5.761, + 19.947, + 31.876, + 31.876, + 31.876, + 31.876, + 23.651, + 0.0, + 0.0, + 0.0, + 0.0, + 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.13, + 5.861, + 20.52, + 31.876, + 31.876, + 31.876, + 27.878, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.989, + 5.959, + 21.428, + 31.876, + 31.876, + 31.876, + 31.876, + 21.493, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.947, + 5.963, + 21.65, + 31.876, + 31.876, + 31.876, + 31.876, + 21.309, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.898, + 5.871, + 21.401, + 31.876, + 31.876, + 31.876, + 31.876, + 21.7, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.901, + 5.817, + 21.614, + 31.876, + 31.876, + 31.876, + 31.876, + 21.537, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.939, + 5.975, + 21.184, + 31.876, + 31.876, + 31.876, + 31.876, + 21.772, + 0.0, + 0.0, + 0.0, + 0.0, + 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.03, + 5.86, + 20.277, + 31.876, + 31.876, + 31.876, + 31.876, + 22.701, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.099, + 3.982, + 4.433, + 4.095, + 31.876, + 31.876, + 31.876, + 3.831, + 12.208, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.95, + 5.872, + 19.965, + 31.876, + 31.876, + 31.876, + 31.876, + 23.082, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.823, + 5.623, + 20.71, + 31.876, + 31.876, + 31.876, + 31.876, + 22.713, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.814, + 5.656, + 20.774, + 31.876, + 31.876, + 31.876, + 31.876, + 22.625, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.852, + 5.707, + 20.364, + 31.876, + 31.876, + 31.876, + 31.876, + 22.946, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.858, + 5.868, + 20.613, + 31.876, + 31.876, + 31.876, + 31.876, + 22.53, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.76, + 5.776, + 20.715, + 31.876, + 31.876, + 31.876, + 31.876, + 22.618, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.752, + 5.849, + 20.691, + 31.876, + 31.876, + 31.876, + 31.876, + 1.263, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.699, + 5.884, + 20.407, + 31.876, + 31.876, + 31.876, + 31.876, + 22.879, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.332, + 0.518, + 27.961, + 31.876, + 31.876, + 31.876, + 31.876, + 18.058, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.656, + 5.995, + 20.468, + 31.876, + 31.876, + 31.876, + 31.876, + 22.75, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.555, + 5.773, + 21.078, + 31.876, + 31.876, + 31.876, + 31.876, + 22.464, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.535, + 6.079, + 20.762, + 31.876, + 31.876, + 31.876, + 31.876, + 22.494, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.515, + 6.611, + 20.805, + 31.876, + 31.876, + 31.876, + 31.876, + 21.938, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.541, + 6.247, + 22.568, + 31.876, + 31.876, + 31.876, + 31.876, + 3.828, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.381, + 6.005, + 22.41, + 31.876, + 31.876, + 31.876, + 31.876, + 21.073, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.378, + 6.08, + 22.606, + 31.876, + 31.876, + 31.876, + 31.876, + 20.805, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.337, + 6.012, + 22.441, + 31.876, + 31.876, + 31.876, + 31.876, + 21.079, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.297, + 6.002, + 22.325, + 31.876, + 31.876, + 31.876, + 31.876, + 21.245, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.341, + 6.054, + 22.246, + 31.876, + 31.876, + 31.876, + 31.876, + 21.228, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.299, + 5.873, + 21.504, + 31.876, + 31.876, + 31.876, + 31.876, + 22.193, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.294, + 5.831, + 21.31, + 31.876, + 31.876, + 31.876, + 31.876, + 6.446, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.257, + 5.788, + 21.102, + 31.876, + 31.876, + 31.876, + 31.876, + 22.723, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.199, + 5.984, + 21.046, + 31.876, + 31.876, + 31.876, + 31.876, + 22.641, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.171, + 6.056, + 20.941, + 31.876, + 31.876, + 31.876, + 31.876, + 22.702, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.213, + 5.987, + 20.871, + 31.876, + 31.876, + 31.876, + 31.876, + 22.798, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.213, + 5.939, + 21.487, + 31.876, + 31.876, + 31.876, + 31.876, + 22.23, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.255, + 5.763, + 22.394, + 31.876, + 31.876, + 31.876, + 31.876, + 21.457, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.181, + 6.268, + 22.978, + 31.876, + 31.876, + 31.876, + 31.876, + 9.003, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.137, + 6.164, + 22.411, + 31.876, + 31.876, + 31.876, + 31.876, + 21.157, + 0.0, + 0.0, + 0.0, + 0.0, + 0.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, + 6.071, + 22.357, + 31.876, + 31.876, + 31.876, + 31.876, + 21.341, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.107, + 6.36, + 23.135, + 31.876, + 31.876, + 31.876, + 31.876, + 20.267, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.067, + 6.321, + 22.723, + 31.876, + 31.876, + 31.876, + 31.876, + 20.758, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022, + 6.028, + 21.212, + 31.876, + 31.876, + 31.876, + 31.876, + 22.607, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.035, + 20.671, + 31.814, + 31.876, + 31.876, + 31.876, + 23.226, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.952, + 21.263, + 31.876, + 31.876, + 31.876, + 31.876, + 15.028, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.993, + 21.914, + 31.876, + 31.876, + 31.876, + 31.876, + 21.962, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.041, + 21.757, + 31.876, + 31.876, + 31.876, + 31.876, + 22.071, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.692, + 21.432, + 31.876, + 31.876, + 31.876, + 31.876, + 25.745, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.98, + 20.555, + 31.876, + 31.876, + 31.876, + 31.876, + 23.333, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.473, + 22.975, + 31.876, + 31.876, + 31.876, + 31.876, + 20.421, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.518, + 23.237, + 31.876, + 31.876, + 31.876, + 31.876, + 13.137, + 1.361, + 1.053, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.336, + 22.544, + 31.876, + 31.876, + 31.876, + 31.876, + 20.99, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.369, + 22.729, + 31.876, + 31.876, + 31.876, + 31.876, + 16.958, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.275, + 22.14, + 31.876, + 31.876, + 31.876, + 31.876, + 21.453, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.309, + 22.121, + 31.876, + 31.876, + 31.876, + 31.876, + 21.439, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.405, + 22.431, + 31.876, + 31.876, + 31.876, + 31.876, + 21.032, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.856, + 24.35, + 31.876, + 31.876, + 31.876, + 31.876, + 18.663, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.023, + 24.748, + 31.876, + 31.876, + 31.876, + 31.876, + 18.099, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.871, + 23.893, + 31.876, + 31.876, + 31.876, + 31.876, + 19.105, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.77, + 24.113, + 31.876, + 31.876, + 31.876, + 31.876, + 18.986, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.558, + 23.506, + 31.876, + 31.876, + 31.876, + 31.876, + 19.805, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.338, + 22.971, + 31.876, + 31.876, + 31.876, + 31.876, + 20.56, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.947, + 20.988, + 31.876, + 31.876, + 31.876, + 31.876, + 22.934, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.144, + 25.521, + 31.876, + 31.876, + 31.876, + 31.876, + 17.204, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.619, + 26.948, + 31.876, + 31.876, + 31.876, + 31.876, + 15.302, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.555, + 26.529, + 31.876, + 31.876, + 31.876, + 31.876, + 15.785, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.357, + 25.677, + 31.876, + 31.876, + 31.876, + 31.876, + 16.836, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.825, + 23.945, + 31.876, + 31.876, + 31.876, + 31.876, + 19.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, + 7.401, + 26.138, + 31.876, + 31.876, + 31.876, + 31.876, + 16.33, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.235, + 25.155, + 31.876, + 31.876, + 31.876, + 31.876, + 17.479, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.246, + 22.512, + 31.876, + 31.876, + 31.876, + 31.876, + 21.11, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.55, + 26.843, + 31.876, + 31.876, + 31.876, + 31.876, + 15.477, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.514, + 26.469, + 31.876, + 31.876, + 31.876, + 31.876, + 15.886, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.346, + 26.295, + 31.876, + 31.876, + 31.876, + 31.876, + 16.228, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.829, + 24.531, + 31.876, + 31.876, + 31.876, + 31.876, + 18.509, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.389, + 25.824, + 31.876, + 31.876, + 31.876, + 31.876, + 16.657, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.401, + 22.222, + 31.876, + 31.876, + 31.876, + 31.876, + 22.246, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.541, + 24.072, + 31.876, + 31.876, + 31.876, + 31.876, + 19.256, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.62, + 24.403, + 31.876, + 31.876, + 31.876, + 31.876, + 18.846, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.821, + 24.395, + 31.876, + 31.876, + 31.876, + 31.876, + 18.653, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.05, + 21.433, + 31.876, + 31.876, + 31.876, + 31.876, + 25.386, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.6, + 24.589, + 31.876, + 31.876, + 31.876, + 31.876, + 18.68, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.173, + 24.948, + 31.876, + 31.876, + 31.876, + 31.876, + 18.748, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.444, + 3.621, + 16.532, + 31.876, + 26.745, + 31.876, + 31.876, + 10.141, + 15.479, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.207, + 27.584, + 31.876, + 31.876, + 31.876, + 31.876, + 6.826, + 8.252, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.273, + 27.146, + 31.876, + 31.876, + 31.876, + 31.876, + 15.45, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.92, + 26.362, + 31.876, + 31.876, + 31.876, + 31.876, + 16.587, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.9, + 26.471, + 31.876, + 31.876, + 31.876, + 31.876, + 16.498, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.528, + 25.611, + 31.876, + 31.876, + 31.876, + 31.876, + 17.731, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.405, + 25.59, + 31.876, + 31.876, + 31.876, + 31.876, + 17.875, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.586, + 26.121, + 31.876, + 31.876, + 31.876, + 31.876, + 17.162, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.505, + 26.008, + 31.876, + 31.876, + 31.876, + 31.876, + 17.357, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.348, + 25.13, + 31.876, + 31.876, + 31.876, + 31.876, + 18.391, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.446, + 22.009, + 31.876, + 31.876, + 31.876, + 31.876, + 22.414, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.776, + 24.677, + 31.876, + 31.876, + 31.876, + 31.876, + 19.416, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.86, + 25.752, + 31.876, + 31.876, + 31.876, + 31.876, + 18.258, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.928, + 26.126, + 31.876, + 31.876, + 31.876, + 31.876, + 17.815, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.302, + 25.638, + 31.876, + 31.876, + 31.876, + 31.876, + 18.93, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.702, + 25.126, + 31.876, + 31.876, + 31.876, + 31.876, + 20.041, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.308, + 24.871, + 31.876, + 31.876, + 31.876, + 31.876, + 20.69, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.037, + 25.202, + 31.876, + 31.876, + 31.876, + 31.876, + 20.629, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.894, + 25.228, + 31.876, + 31.876, + 31.876, + 31.876, + 20.748, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.891, + 22.647, + 31.876, + 31.876, + 31.876, + 31.876, + 24.331, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.649, + 22.347, + 31.876, + 31.876, + 31.876, + 31.876, + 24.873, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.595, + 23.098, + 31.876, + 31.876, + 31.876, + 31.876, + 24.176, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.137, + 26.602, + 31.876, + 31.876, + 31.876, + 31.876, + 20.13, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.921, + 26.425, + 31.876, + 31.876, + 31.876, + 31.876, + 20.523, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.563, + 25.599, + 31.876, + 31.876, + 31.876, + 31.876, + 21.707, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.37, + 25.363, + 31.876, + 31.876, + 31.876, + 31.876, + 22.137, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.221, + 24.891, + 31.876, + 31.876, + 31.876, + 31.876, + 22.756, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.887, + 24.365, + 31.876, + 31.876, + 31.876, + 31.876, + 23.617, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.08, + 23.317, + 31.876, + 31.876, + 31.876, + 31.876, + 25.472, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.421, + 26.249, + 31.876, + 31.876, + 31.876, + 31.876, + 22.199, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.177, + 25.33, + 31.876, + 31.876, + 31.876, + 31.876, + 23.362, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.843, + 23.879, + 31.876, + 31.876, + 31.876, + 31.876, + 25.147, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.677, + 23.366, + 31.876, + 31.876, + 31.876, + 31.876, + 25.826, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.622, + 23.439, + 31.876, + 31.876, + 31.876, + 31.876, + 25.808, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.24, + 22.932, + 31.876, + 31.876, + 31.876, + 31.876, + 26.697, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.33, + 22.336, + 31.876, + 31.876, + 31.876, + 31.876, + 27.203, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 22.931, + 31.876, + 31.876, + 31.876, + 31.876, + 26.938, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 17.899, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.094, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.102, + 21.929, + 31.876, + 31.876, + 31.876, + 31.876, + 9.838, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.838, + 22.472, + 31.876, + 31.876, + 31.876, + 31.876, + 19.559, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.588, + 31.876, + 30.315, + 31.876, + 31.876, + 31.876, + 17.966, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 19.789, + 31.876, + 31.876, + 31.876, + 31.876, + 30.08, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 23.431, + 31.876, + 31.876, + 31.876, + 31.876, + 26.438, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 22.056, + 31.876, + 31.876, + 31.876, + 31.876, + 27.813, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.745, + 24.869, + 31.876, + 31.876, + 31.876, + 27.948, + 19.744, + 1.439, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 19.208, + 17.805, + 31.876, + 31.876, + 31.876, + 13.095, + 31.637, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 20.198, + 31.876, + 31.876, + 31.876, + 31.876, + 29.671, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 19.415, + 31.876, + 31.876, + 31.876, + 31.876, + 30.454, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.339, + 24.146, + 31.876, + 31.876, + 31.876, + 31.876, + 19.383, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 19.857, + 31.876, + 31.876, + 31.876, + 31.876, + 30.012, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.402, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 11.591, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.397, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 11.596, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.048, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.944, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.16, + 20.946, + 31.876, + 31.876, + 31.876, + 31.876, + 23.763, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.253, + 22.21, + 31.876, + 31.876, + 31.876, + 31.876, + 22.407, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 16.053, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 1.94, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.979, + 11.424, + 17.071, + 0.776, + 4.615, + 1.697, + 2.141, + 6.267, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 14.09, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 3.902, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.96, + 6.413, + 5.631, + 9.193, + 31.656, + 30.277, + 31.876, + 29.202, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 13.526, + 0.29, + 31.876, + 27.618, + 31.876, + 31.876, + 16.369, + 0.332, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 14.064, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 3.929, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 14.028, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 3.965, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 13.197, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 4.796, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 13.26, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 4.733, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 12.884, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 5.109, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 12.11, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 5.882, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.255, + 31.876, + 31.876, + 29.739, + 31.876, + 1.816, + 15.591, + 5.215, + 0.0, + 0.0, + 0.0, + 0.0, + 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.84, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 6.153, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.829, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 6.164, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.827, + 16.443, + 31.876, + 31.876, + 31.876, + 31.876, + 22.599, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 9.456, + 18.183, + 31.876, + 31.876, + 31.876, + 31.876, + 5.219, + 17.011, + 0.0, + 0.0, + 0.0, + 0.0, + 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.511, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 7.482, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.839, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 7.154, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.502, + 5.092, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 5.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, + 9.959, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 8.034, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 9.435, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 8.558, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.006, + 15.722, + 24.133, + 31.876, + 31.876, + 31.876, + 31.876, + 7.008, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.368, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.625, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.541, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.451, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.246, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.747, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 9.088, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 8.905, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.878, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.115, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.098, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.895, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.302, + 8.694, + 11.926, + 25.307, + 31.876, + 31.876, + 31.369, + 16.333, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.511, + 20.929, + 31.876, + 25.548, + 10.876, + 10.004, + 2.77, + 6.76, + 0.0, + 0.0, + 0.0, + 0.0, + 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.121, + 0.44, + 11.828, + 5.469, + 8.316, + 3.164, + 7.318, + 30.83, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.351, + 2.691, + 17.047, + 3.41, + 10.469, + 10.636, + 8.969, + 6.265, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.485, + 30.981, + 31.876, + 31.876, + 31.876, + 31.876, + 12.403, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "electric_curtailed_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "lifecycle_om_cost_after_tax": 12772.0, + "lcoe_per_kwh": 0.0283 + }, + { + "electric_to_grid_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "production_factor_series": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013705, + 0.074601, + 0.23405199999999998, + 0.37140100000000004, + 0.457396, + 0.486137, + 0.465086, + 0.387321, + 0.251484, + 0.054393000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013573, + 0.07456399999999999, + 0.236565, + 0.375486, + 0.46325099999999997, + 0.492928, + 0.469034, + 0.392412, + 0.256565, + 0.008654, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013533, + 0.078678, + 0.239314, + 0.38372, + 0.477065, + 0.508258, + 0.48821, + 0.409203, + 0.269851, + 0.060499000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009775, + 0.07675799999999999, + 0.242274, + 0.38363099999999994, + 0.471344, + 0.50049, + 0.479285, + 0.401763, + 0.26569600000000004, + 0.059933999999999994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013391, + 0.07506600000000001, + 0.235656, + 0.372508, + 0.458604, + 0.48693000000000003, + 0.385089, + 0.276004, + 0.26081, + 0.032286999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012159000000000001, + 0.07479999999999999, + 0.232794, + 0.284947, + 0.32049, + 0.386586, + 0.462574, + 0.390855, + 0.261658, + 0.063405, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008794, + 0.07251099999999999, + 0.22912000000000002, + 0.364094, + 0.45033100000000004, + 0.480558, + 0.46354199999999995, + 0.390471, + 0.25952499999999995, + 0.065712, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008881, + 0.075806, + 0.240455, + 0.38718400000000003, + 0.481885, + 0.5135449999999999, + 0.494168, + 0.420124, + 0.281206, + 0.07649299999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013537, + 0.07942199999999999, + 0.236983, + 0.376257, + 0.466315, + 0.496591, + 0.478922, + 0.406902, + 0.275928, + 0.080101, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012332000000000001, + 0.07343300000000001, + 0.235072, + 0.325494, + 0.359965, + 0.426243, + 0.332669, + 0.30863999999999997, + 0.180172, + 0.030708, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005305, + 0.030978000000000002, + 0.13494, + 0.35726600000000003, + 0.446854, + 0.392215, + 0.374983, + 0.396432, + 0.244477, + 0.081755, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011404, + 0.07647, + 0.23719900000000002, + 0.37629199999999996, + 0.46577199999999996, + 0.49602300000000005, + 0.476009, + 0.405753, + 0.277358, + 0.089238, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010485, + 0.07609300000000001, + 0.235599, + 0.370807, + 0.458562, + 0.49013, + 0.47476, + 0.407654, + 0.27910199999999996, + 0.08927, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009601, + 0.076492, + 0.241664, + 0.38276299999999996, + 0.402656, + 0.384635, + 0.361574, + 0.354605, + 0.230766, + 0.100913, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01377, + 0.07631, + 0.227736, + 0.298361, + 0.380073, + 0.279534, + 0.466037, + 0.19444999999999998, + 0.030479, + 0.020027, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010573, + 0.07908, + 0.23432, + 0.375329, + 0.465676, + 0.499102, + 0.484575, + 0.41645, + 0.286861, + 0.100812, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009927, + 0.076675, + 0.23230099999999998, + 0.366776, + 0.454639, + 0.40252899999999997, + 0.47434899999999997, + 0.410881, + 0.284295, + 0.103963, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013154, + 0.080736, + 0.18712, + 0.320651, + 0.390661, + 0.40553500000000003, + 0.303653, + 0.27660500000000005, + 0.13714500000000002, + 0.021137, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014542999999999999, + 0.045953, + 0.146256, + 0.231821, + 0.23963800000000002, + 0.495433, + 0.482431, + 0.268529, + 0.20706200000000002, + 0.02103, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012747, + 0.08354900000000001, + 0.243511, + 0.385189, + 0.476558, + 0.260231, + 0.063109, + 0.089108, + 0.009399, + 0.013535, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017022, + 0.087987, + 0.215061, + 0.331837, + 0.39191000000000004, + 0.423086, + 0.35239299999999996, + 0.279007, + 0.249886, + 0.122694, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011367, + 0.084816, + 0.248946, + 0.386762, + 0.477277, + 0.5121330000000001, + 0.49658199999999997, + 0.432683, + 0.30964600000000003, + 0.123934, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011921, + 0.084701, + 0.244281, + 0.305247, + 0.39495800000000003, + 0.385259, + 0.369033, + 0.339217, + 0.217526, + 0.045221, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01809, + 0.08809399999999999, + 0.144143, + 0.218017, + 0.232237, + 0.24940199999999998, + 0.215239, + 0.087488, + 0.046853, + 0.018527000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.056672, + 0.134802, + 0.10626000000000001, + 0.171888, + 0.005713, + 0.523328, + 0.456557, + 0.32531, + 0.133659, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019056999999999998, + 0.096346, + 0.226511, + 0.027392, + 0.396443, + 0.412994, + 0.355983, + 0.013779999999999999, + 0.31063799999999997, + 0.11559699999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01713, + 0.10588299999999999, + 0.283263, + 0.43764299999999995, + 0.532924, + 0.5685009999999999, + 0.5544969999999999, + 0.48929, + 0.356134, + 0.157536, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012151, + 0.100106, + 0.280845, + 0.431555, + 0.524557, + 0.5613049999999999, + 0.546412, + 0.479143, + 0.351254, + 0.159108, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012673, + 0.09971899999999999, + 0.277466, + 0.421192, + 0.506313, + 0.537791, + 0.416192, + 0.39581700000000003, + 0.213088, + 0.063516, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022108, + 0.101745, + 0.271923, + 0.355839, + 0.4254, + 0.44798899999999997, + 0.421296, + 0.36825, + 0.263784, + 0.08663, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026926, + 0.186128, + 0.300543, + 0.525918, + 0.56604, + 0.5532809999999999, + 0.487022, + 0.360196, + 0.142864, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024475, + 0.114455, + 0.274424, + 0.41093999999999997, + 0.494405, + 0.5325460000000001, + 0.523793, + 0.467125, + 0.347474, + 0.15481999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017414000000000002, + 0.112286, + 0.295159, + 0.37849900000000003, + 0.444183, + 0.449854, + 0.549088, + 0.483067, + 0.364516, + 0.18149700000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014676, + 0.11349, + 0.29292, + 0.43879700000000005, + 0.525518, + 0.559625, + 0.544308, + 0.483025, + 0.366017, + 0.185304, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015785, + 0.110384, + 0.287053, + 0.431519, + 0.516851, + 0.551964, + 0.536854, + 0.475623, + 0.36002300000000004, + 0.180975, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027322, + 0.106686, + 0.221879, + 0.358874, + 0.42677800000000005, + 0.424599, + 0.379608, + 0.36484, + 0.232396, + 0.079893, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016762, + 0.115665, + 0.286563, + 0.427659, + 0.514, + 0.5529729999999999, + 0.46337, + 0.39853500000000003, + 0.30186799999999997, + 0.126631, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028050000000000002, + 0.113648, + 0.247106, + 0.35960000000000003, + 0.456798, + 0.407777, + 0.392478, + 0.31872500000000004, + 0.282674, + 0.117203, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02841, + 0.110138, + 0.22812000000000002, + 0.28460199999999997, + 0.264993, + 0.408599, + 0.433709, + 0.285274, + 0.242469, + 0.078884, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021643, + 0.11706, + 0.248244, + 0.324428, + 0.416823, + 0.161232, + 0.17858600000000002, + 0.10529999999999999, + 0.08764799999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023904, + 0.112054, + 0.088348, + 0.182963, + 0.388519, + 0.38054000000000004, + 0.421734, + 0.366959, + 0.292127, + 0.053427999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.131173, + 0.307336, + 0.45533100000000004, + 0.543847, + 0.583844, + 0.5706789999999999, + 0.510041, + 0.38923599999999997, + 0.2002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.029782, + 0.141276, + 0.24609899999999998, + 0.453032, + 0.540029, + 0.5783680000000001, + 0.571065, + 0.50799, + 0.387659, + 0.015945, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021381, + 0.142064, + 0.321149, + 0.26601600000000003, + 0.555209, + 0.595163, + 0.585591, + 0.5239539999999999, + 0.321892, + 0.211772, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020442000000000002, + 0.146122, + 0.33269299999999996, + 0.483154, + 0.5729, + 0.610606, + 0.598505, + 0.533627, + 0.415801, + 0.22752799999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036664, + 0.146971, + 0.330699, + 0.470693, + 0.553535, + 0.58847, + 0.572798, + 0.510336, + 0.3969, + 0.22013999999999997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01758, + 0.144891, + 0.32424200000000003, + 0.46518400000000004, + 0.549768, + 0.588151, + 0.5769690000000001, + 0.5154310000000001, + 0.402216, + 0.21935, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020210000000000002, + 0.149911, + 0.32907600000000004, + 0.473384, + 0.556753, + 0.591016, + 0.577866, + 0.51336, + 0.33593900000000004, + 0.054595, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.040764, + 0.140206, + 0.244561, + 0.33951299999999995, + 0.321813, + 0.223732, + 0.398168, + 0.398206, + 0.311401, + 0.155414, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030052, + 0.023899999999999998, + 0.031553, + 0.10640300000000001, + 0.47886399999999996, + 0.419814, + 0.5250929999999999, + 0.412961, + 0.23096799999999998, + 0.009188, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024891, + 0.164969, + 0.34276999999999996, + 0.481731, + 0.564739, + 0.6018089999999999, + 0.59189, + 0.53458, + 0.419827, + 0.242513, + 0.013927, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031445, + 0.167547, + 0.338192, + 0.470704, + 0.5563440000000001, + 0.597555, + 0.5920599999999999, + 0.53664, + 0.425818, + 0.247935, + 0.017277999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036224, + 0.11881399999999999, + 0.13659100000000002, + 0.09934399999999999, + 0.407882, + 0.489748, + 0.466408, + 0.377869, + 0.301842, + 0.154448, + 0.002519, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027815000000000003, + 0.18684399999999998, + 0.385973, + 0.535389, + 0.628553, + 0.671049, + 0.662512, + 0.598773, + 0.47758100000000003, + 0.282374, + 0.008874, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027782, + 0.185994, + 0.377728, + 0.516644, + 0.591759, + 0.6174729999999999, + 0.596564, + 0.541605, + 0.442256, + 0.269912, + 0.00926, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030081, + 0.185721, + 0.373844, + 0.516821, + 0.60485, + 0.643239, + 0.493906, + 0.118715, + 0.03814, + 0.061643, + 0.022768999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03462, + 0.190088, + 0.373139, + 0.510812, + 0.5971770000000001, + 0.635759, + 0.6247659999999999, + 0.5657279999999999, + 0.45271300000000003, + 0.269868, + 0.032112, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005118, + 0.201511, + 0.39752, + 0.451288, + 0.500564, + 0.67562, + 0.664748, + 0.599675, + 0.048753, + 0.05861, + 0.003065, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036647, + 0.208921, + 0.407147, + 0.550822, + 0.641482, + 0.681517, + 0.67192, + 0.6086900000000001, + 0.48942899999999995, + 0.008179, + 0.021701, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030795000000000003, + 0.17751499999999998, + 0.210011, + 0.29329500000000003, + 0.41720100000000004, + 0.08020999999999999, + 0.43029199999999995, + 0.287803, + 0.093394, + 0.132103, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.058982999999999994, + 0.17430500000000002, + 0.271551, + 0.361361, + 0.461389, + 0.420334, + 0.405386, + 0.29732600000000003, + 0.211302, + 0.097293, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0012909999999999998, + 0.06401000000000001, + 0.177357, + 0.314271, + 0.45323399999999997, + 0.500051, + 0.500418, + 0.5792039999999999, + 0.45652, + 0.288115, + 0.12956800000000002, + 0.005171, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006144, + 0.04692, + 0.21480000000000002, + 0.31833999999999996, + 0.440479, + 0.499875, + 0.540289, + 0.440021, + 0.39847699999999997, + 0.44712999999999997, + 0.27590800000000004, + 0.043274, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007905, + 0.04972699999999999, + 0.218552, + 0.390521, + 0.512571, + 0.428192, + 0.627538, + 0.619112, + 0.467811, + 0.447787, + 0.13911500000000002, + 0.044365, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003424, + 0.068493, + 0.18090299999999998, + 0.280329, + 0.515528, + 0.59664, + 0.519968, + 0.627435, + 0.564834, + 0.449529, + 0.279714, + 0.048554, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004816, + 0.057529000000000004, + 0.237245, + 0.420692, + 0.468113, + 0.526609, + 0.5061840000000001, + 0.5114569999999999, + 0.499562, + 0.37706799999999996, + 0.302211, + 0.009085000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004727, + 0.058847000000000003, + 0.248744, + 0.439004, + 0.568432, + 0.646255, + 0.675528, + 0.6595599999999999, + 0.5979009999999999, + 0.483367, + 0.241844, + 0.03968, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00552, + 0.066119, + 0.239791, + 0.424769, + 0.54723, + 0.616808, + 0.632577, + 0.604118, + 0.553928, + 0.358224, + 0.228617, + 0.059457, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005409, + 0.063765, + 0.213755, + 0.42602100000000004, + 0.55041, + 0.628226, + 0.658216, + 0.646381, + 0.5819500000000001, + 0.46966699999999995, + 0.299414, + 0.067026, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007859, + 0.079239, + 0.21631999999999998, + 0.445666, + 0.485724, + 0.5086229999999999, + 0.573986, + 0.504964, + 0.461325, + 0.319447, + 0.221297, + 0.043676, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008431, + 0.072574, + 0.261272, + 0.448379, + 0.575021, + 0.653971, + 0.684628, + 0.665005, + 0.599789, + 0.48476400000000003, + 0.310596, + 0.07661499999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010326, + 0.07823000000000001, + 0.264386, + 0.443178, + 0.569605, + 0.648397, + 0.6833490000000001, + 0.668256, + 0.602636, + 0.48953199999999997, + 0.31743299999999997, + 0.086202, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011273, + 0.08039400000000001, + 0.26965100000000003, + 0.445969, + 0.5579400000000001, + 0.63063, + 0.660633, + 0.650582, + 0.594221, + 0.48505200000000004, + 0.31735800000000003, + 0.08887300000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011035999999999999, + 0.082455, + 0.27595, + 0.45840499999999995, + 0.583032, + 0.659686, + 0.686682, + 0.67106, + 0.601915, + 0.48645900000000003, + 0.317927, + 0.08652800000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015470000000000001, + 0.09219100000000001, + 0.270867, + 0.43257100000000004, + 0.5452859999999999, + 0.608746, + 0.649475, + 0.644536, + 0.591488, + 0.488066, + 0.326347, + 0.09752899999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011873, + 0.090024, + 0.290086, + 0.471598, + 0.596995, + 0.6781029999999999, + 0.71105, + 0.695723, + 0.6337670000000001, + 0.462445, + 0.238613, + 0.069048, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014958, + 0.098858, + 0.299639, + 0.485832, + 0.608818, + 0.6839500000000001, + 0.708388, + 0.6860510000000001, + 0.624244, + 0.5110520000000001, + 0.34604599999999996, + 0.11131100000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013971, + 0.100914, + 0.302022, + 0.48463, + 0.606822, + 0.6812659999999999, + 0.70505, + 0.678236, + 0.608816, + 0.497981, + 0.337901, + 0.108758, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021276, + 0.101338, + 0.22406600000000002, + 0.43307799999999996, + 0.522553, + 0.537649, + 0.554702, + 0.546269, + 0.43381400000000003, + 0.48973, + 0.330413, + 0.101726, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016652, + 0.10463599999999999, + 0.292031, + 0.4582, + 0.575189, + 0.65073, + 0.682355, + 0.670298, + 0.606008, + 0.49156099999999997, + 0.322812, + 0.091889, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023920999999999998, + 0.117723, + 0.29496100000000003, + 0.452698, + 0.551821, + 0.616154, + 0.6573289999999999, + 0.657257, + 0.6048150000000001, + 0.495918, + 0.330778, + 0.101657, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021835999999999998, + 0.11727599999999999, + 0.254362, + 0.37263799999999997, + 0.5479310000000001, + 0.552898, + 0.56326, + 0.528413, + 0.512426, + 0.478205, + 0.227071, + 0.061214, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023441, + 0.12050799999999999, + 0.257543, + 0.419228, + 0.581638, + 0.6491480000000001, + 0.668874, + 0.6473289999999999, + 0.43333, + 0.42192799999999997, + 0.239646, + 0.092279, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024099, + 0.12409999999999999, + 0.3028, + 0.46264, + 0.5890639999999999, + 0.666541, + 0.698956, + 0.603546, + 0.6131570000000001, + 0.50345, + 0.331671, + 0.10102599999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023521, + 0.127137, + 0.324583, + 0.49947699999999995, + 0.623681, + 0.70382, + 0.186839, + 0.452007, + 0.468528, + 0.31955900000000004, + 0.125834, + 0.106979, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026497, + 0.13375, + 0.329346, + 0.49527499999999997, + 0.6074729999999999, + 0.6777369999999999, + 0.712835, + 0.698765, + 0.6346499999999999, + 0.5178440000000001, + 0.135437, + 0.115047, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02894, + 0.141098, + 0.32215699999999997, + 0.47425599999999996, + 0.578619, + 0.571686, + 0.5936889999999999, + 0.566261, + 0.5467190000000001, + 0.481211, + 0.32098000000000004, + 0.109796, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026094000000000003, + 0.122821, + 0.263529, + 0.468343, + 0.59213, + 0.642232, + 0.535741, + 0.5812, + 0.613512, + 0.465146, + 0.213027, + 0.052987, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021868, + 0.14995599999999998, + 0.359341, + 0.530941, + 0.651419, + 0.727577, + 0.7543730000000001, + 0.7325320000000001, + 0.666609, + 0.5489160000000001, + 0.38001100000000004, + 0.14592, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023764, + 0.146091, + 0.34283800000000003, + 0.509468, + 0.629578, + 0.7069160000000001, + 0.738341, + 0.728011, + 0.663846, + 0.544945, + 0.004889999999999999, + 0.0024980000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026183, + 0.158608, + 0.37000900000000003, + 0.545673, + 0.66818, + 0.746845, + 0.773058, + 0.753529, + 0.681693, + 0.562936, + 0.387887, + 0.14645, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023395, + 0.15865600000000002, + 0.362851, + 0.526616, + 0.639023, + 0.704991, + 0.723879, + 0.5900259999999999, + 0.641455, + 0.530254, + 0.371567, + 0.14645599999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031061, + 0.157817, + 0.30185, + 0.411775, + 0.5752079999999999, + 0.6467350000000001, + 0.6852910000000001, + 0.6791739999999999, + 0.6259009999999999, + 0.516709, + 0.360927, + 0.135713, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03795900000000001, + 0.171422, + 0.275393, + 0.44304000000000004, + 0.623169, + 0.698834, + 0.731831, + 0.717963, + 0.655362, + 0.544092, + 0.37787200000000004, + 0.144077, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03893, + 0.179918, + 0.382533, + 0.548155, + 0.666135, + 0.740149, + 0.770752, + 0.752019, + 0.682809, + 0.33640800000000004, + 0.37593099999999996, + 0.141541, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.042182000000000004, + 0.189371, + 0.38854500000000003, + 0.5540259999999999, + 0.673661, + 0.744909, + 0.768317, + 0.744909, + 0.6738869999999999, + 0.5540499999999999, + 0.379478, + 0.148197, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038577, + 0.186808, + 0.386587, + 0.5429700000000001, + 0.6518440000000001, + 0.712015, + 0.727206, + 0.704521, + 0.644569, + 0.541359, + 0.381916, + 0.153401, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.043635, + 0.183149, + 0.36744299999999996, + 0.519277, + 0.628707, + 0.700329, + 0.7275689999999999, + 0.7112229999999999, + 0.644624, + 0.527949, + 0.372869, + 0.148728, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.04131, + 0.186078, + 0.37358800000000003, + 0.524791, + 0.6358010000000001, + 0.708996, + 0.7407720000000001, + 0.726808, + 0.6592279999999999, + 0.539402, + 0.34048399999999995, + 0.144034, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034881, + 0.191845, + 0.38702499999999995, + 0.5428339999999999, + 0.658025, + 0.7319070000000001, + 0.763968, + 0.744535, + 0.677806, + 0.5632229999999999, + 0.401339, + 0.169142, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00039600000000000003, + 0.192207, + 0.271424, + 0.552767, + 0.148936, + 0.415319, + 0.773792, + 0.753583, + 0.5803429999999999, + 0.376468, + 0.061812, + 0.0025710000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.052466, + 0.203787, + 0.272549, + 0.553198, + 0.669085, + 0.739509, + 0.654273, + 0.738874, + 0.389772, + 0.199123, + 0.19241399999999997, + 0.038098999999999994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00040100000000000004, + 0.203654, + 0.398297, + 0.16302, + 0.020974, + 0.067309, + 0.031985, + 0.122739, + 0.12185299999999999, + 0.233363, + 0.08086, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.060877, + 0.21315299999999998, + 0.422047, + 0.581409, + 0.691622, + 0.761206, + 0.782611, + 0.757746, + 0.6877759999999999, + 0.575613, + 0.410334, + 0.18223699999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0019850000000000002, + 0.048951999999999996, + 0.207012, + 0.397044, + 0.538385, + 0.6259779999999999, + 0.675476, + 0.708394, + 0.704326, + 0.6516219999999999, + 0.550508, + 0.392121, + 0.173291, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0024860000000000004, + 0.046847, + 0.20609, + 0.391963, + 0.533886, + 0.6323479999999999, + 0.6880510000000001, + 0.700456, + 0.687766, + 0.635308, + 0.534982, + 0.386715, + 0.172867, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002931, + 0.043119, + 0.206156, + 0.389009, + 0.519088, + 0.6072000000000001, + 0.665234, + 0.701789, + 0.699568, + 0.645134, + 0.542085, + 0.392262, + 0.182274, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005351, + 0.060467, + 0.20973599999999998, + 0.392175, + 0.458656, + 0.540868, + 0.694238, + 0.715603, + 0.702111, + 0.64374, + 0.541037, + 0.291219, + 0.179203, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00479, + 0.047118, + 0.213582, + 0.398843, + 0.535172, + 0.626042, + 0.676197, + 0.681242, + 0.64915, + 0.592055, + 0.500218, + 0.354741, + 0.16153499999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0037679999999999996, + 0.05458, + 0.210573, + 0.38662799999999997, + 0.523466, + 0.633501, + 0.685278, + 0.689722, + 0.653317, + 0.5832820000000001, + 0.50213, + 0.374054, + 0.180284, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003992, + 0.050055999999999996, + 0.21599000000000002, + 0.395171, + 0.524086, + 0.612742, + 0.661537, + 0.6793020000000001, + 0.666188, + 0.6166269999999999, + 0.52232, + 0.38533100000000003, + 0.185364, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003901, + 0.051758000000000005, + 0.215528, + 0.38708499999999996, + 0.523313, + 0.628884, + 0.692399, + 0.7189059999999999, + 0.704739, + 0.644846, + 0.5360069999999999, + 0.396106, + 0.18823099999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005193, + 0.062483, + 0.229603, + 0.413054, + 0.549671, + 0.651916, + 0.717237, + 0.7399779999999999, + 0.733392, + 0.671326, + 0.566057, + 0.418128, + 0.202738, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007494, + 0.07127800000000001, + 0.232315, + 0.399829, + 0.549961, + 0.567561, + 0.37122000000000005, + 0.438787, + 0.480336, + 0.180307, + 0.16791499999999998, + 0.108783, + 0.027759, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07452500000000001, + 0.198577, + 0.287292, + 0.34908, + 0.186477, + 0.45565100000000003, + 0.589216, + 0.544889, + 0.3357, + 0.399623, + 0.27202499999999996, + 0.200625, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007008, + 0.060759999999999995, + 0.23686600000000002, + 0.42401799999999995, + 0.56924, + 0.675736, + 0.743121, + 0.7683150000000001, + 0.384115, + 0.500422, + 0.216307, + 0.127622, + 0.021072, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008362999999999999, + 0.068333, + 0.24791, + 0.434361, + 0.574214, + 0.675961, + 0.73388, + 0.743891, + 0.7173959999999999, + 0.648884, + 0.5479400000000001, + 0.39755900000000005, + 0.19490000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009582, + 0.075207, + 0.245018, + 0.428952, + 0.566932, + 0.673443, + 0.722909, + 0.7235389999999999, + 0.688514, + 0.618173, + 0.5232100000000001, + 0.393945, + 0.199849, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010987, + 0.077632, + 0.247055, + 0.425339, + 0.555339, + 0.645597, + 0.6917300000000001, + 0.693322, + 0.670824, + 0.6175689999999999, + 0.5264, + 0.37917, + 0.180906, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011124, + 0.076916, + 0.24133500000000002, + 0.406096, + 0.5334260000000001, + 0.638155, + 0.702937, + 0.728707, + 0.713735, + 0.6507269999999999, + 0.542235, + 0.41551699999999997, + 0.21246, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010199999999999999, + 0.071923, + 0.250594, + 0.433479, + 0.564427, + 0.658019, + 0.7022160000000001, + 0.694528, + 0.664548, + 0.632403, + 0.544744, + 0.40227999999999997, + 0.20683500000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011541000000000001, + 0.075459, + 0.247842, + 0.421874, + 0.548938, + 0.637929, + 0.680757, + 0.680842, + 0.671099, + 0.631897, + 0.539858, + 0.395489, + 0.197857, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011327, + 0.075089, + 0.243618, + 0.41512299999999996, + 0.541903, + 0.633568, + 0.67945, + 0.6899740000000001, + 0.661938, + 0.6115130000000001, + 0.5177759999999999, + 0.381081, + 0.192801, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013127000000000002, + 0.079344, + 0.240184, + 0.397086, + 0.5170359999999999, + 0.615066, + 0.676865, + 0.7038329999999999, + 0.690875, + 0.637164, + 0.536697, + 0.394038, + 0.199292, + 0.0035800000000000003, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014047, + 0.08376, + 0.255289, + 0.410346, + 0.500488, + 0.607463, + 0.63166, + 0.751379, + 0.732155, + 0.5418390000000001, + 0.494436, + 0.35507799999999995, + 0.179551, + 0.006138, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019786, + 0.102306, + 0.237916, + 0.40626, + 0.570268, + 0.665319, + 0.731365, + 0.292868, + 0.352007, + 0.691772, + 0.58378, + 0.272906, + 0.20916300000000002, + 0.002751, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024143, + 0.10778, + 0.27499599999999996, + 0.260671, + 0.59166, + 0.69817, + 0.762856, + 0.7007749999999999, + 0.368781, + 0.082614, + 0.484321, + 0.285203, + 0.23549199999999998, + 0.010385, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016481000000000003, + 0.093929, + 0.27820999999999996, + 0.45742, + 0.44323700000000005, + 0.690562, + 0.7438619999999999, + 0.756904, + 0.521942, + 0.539702, + 0.5510729999999999, + 0.39960700000000005, + 0.201264, + 0.00276, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018973, + 0.096432, + 0.25876699999999997, + 0.42056299999999996, + 0.547327, + 0.643365, + 0.708109, + 0.733029, + 0.718683, + 0.6530750000000001, + 0.5467029999999999, + 0.389593, + 0.192363, + 0.003992, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025815, + 0.111303, + 0.27372199999999997, + 0.43757100000000004, + 0.567458, + 0.6736169999999999, + 0.738951, + 0.7623099999999999, + 0.7390119999999999, + 0.678806, + 0.569708, + 0.418007, + 0.216679, + 0.008805, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022265999999999998, + 0.103908, + 0.27071100000000003, + 0.43902300000000005, + 0.570332, + 0.672979, + 0.736139, + 0.7589020000000001, + 0.741832, + 0.682713, + 0.57955, + 0.432918, + 0.23413399999999998, + 0.013176, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018986999999999997, + 0.101205, + 0.276809, + 0.450677, + 0.5838139999999999, + 0.691758, + 0.755166, + 0.775891, + 0.7557809999999999, + 0.693239, + 0.5887939999999999, + 0.43738299999999997, + 0.23956200000000002, + 0.01927, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017577000000000002, + 0.105007, + 0.302017, + 0.48802, + 0.620165, + 0.712585, + 0.7693300000000001, + 0.7835420000000001, + 0.75666, + 0.698626, + 0.596723, + 0.448324, + 0.24732300000000002, + 0.020760999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022661, + 0.10790000000000001, + 0.290773, + 0.46540499999999996, + 0.598296, + 0.695956, + 0.7577229999999999, + 0.7807000000000001, + 0.761105, + 0.7009299999999999, + 0.59472, + 0.44329399999999997, + 0.240007, + 0.018438, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0287, + 0.117551, + 0.290358, + 0.466745, + 0.606452, + 0.708788, + 0.770829, + 0.703868, + 0.16819900000000002, + 0.522843, + 0.5927709999999999, + 0.430411, + 0.225615, + 0.016654, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026934999999999997, + 0.113488, + 0.283851, + 0.454931, + 0.5844790000000001, + 0.683399, + 0.746433, + 0.7690990000000001, + 0.756342, + 0.694108, + 0.46576799999999996, + 0.36274700000000004, + 0.19050399999999998, + 0.008753, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024439, + 0.110946, + 0.283688, + 0.460663, + 0.601607, + 0.7069, + 0.772223, + 0.797671, + 0.7741939999999999, + 0.713909, + 0.607242, + 0.456769, + 0.25583500000000003, + 0.026866, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018352, + 0.10641800000000001, + 0.289682, + 0.462703, + 0.583932, + 0.663233, + 0.708367, + 0.7208150000000001, + 0.7084750000000001, + 0.6531440000000001, + 0.55933, + 0.42529300000000003, + 0.24995799999999999, + 0.032115000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017977, + 0.107266, + 0.291983, + 0.46439600000000003, + 0.589369, + 0.678271, + 0.725429, + 0.7329220000000001, + 0.7026079999999999, + 0.632771, + 0.545216, + 0.42486599999999997, + 0.249414, + 0.0312, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018444, + 0.105907, + 0.283592, + 0.449849, + 0.573747, + 0.655654, + 0.6958179999999999, + 0.693932, + 0.6590130000000001, + 0.622479, + 0.5510929999999999, + 0.421918, + 0.241088, + 0.029032, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018143, + 0.104741, + 0.2742, + 0.430818, + 0.556437, + 0.6532380000000001, + 0.71568, + 0.7414740000000001, + 0.7272419999999999, + 0.6706019999999999, + 0.572936, + 0.432339, + 0.247908, + 0.033402, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016604, + 0.106171, + 0.28183600000000003, + 0.438428, + 0.553578, + 0.6378189999999999, + 0.684483, + 0.700995, + 0.682702, + 0.6355890000000001, + 0.5515019999999999, + 0.418341, + 0.240004, + 0.031952, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020035, + 0.106136, + 0.273043, + 0.429132, + 0.552528, + 0.650255, + 0.709544, + 0.7360789999999999, + 0.722247, + 0.667942, + 0.574136, + 0.439202, + 0.260093, + 0.041460000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017193999999999997, + 0.10890699999999999, + 0.23785900000000001, + 0.45643900000000004, + 0.5878490000000001, + 0.552057, + 0.7450739999999999, + 0.7629, + 0.744918, + 0.690023, + 0.5869, + 0.447963, + 0.261458, + 0.040402, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022498999999999998, + 0.115816, + 0.29797500000000005, + 0.46924400000000005, + 0.603955, + 0.703484, + 0.764891, + 0.786617, + 0.771122, + 0.711379, + 0.607611, + 0.464601, + 0.275726, + 0.04836, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028123000000000002, + 0.123501, + 0.29970800000000003, + 0.470598, + 0.6027279999999999, + 0.7076330000000001, + 0.76666, + 0.7877430000000001, + 0.767721, + 0.706054, + 0.604413, + 0.45808699999999997, + 0.264994, + 0.042752000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027248, + 0.12112300000000001, + 0.290312, + 0.44903899999999997, + 0.570484, + 0.6642250000000001, + 0.715553, + 0.7312240000000001, + 0.718703, + 0.66671, + 0.578017, + 0.444321, + 0.26372199999999996, + 0.048043999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021813, + 0.11536, + 0.286514, + 0.44385, + 0.564926, + 0.654557, + 0.702696, + 0.713756, + 0.697808, + 0.6476770000000001, + 0.558935, + 0.426491, + 0.24896000000000001, + 0.043184, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023876, + 0.117228, + 0.2809, + 0.435771, + 0.55838, + 0.654245, + 0.711702, + 0.732982, + 0.5685800000000001, + 0.661802, + 0.564053, + 0.377886, + 0.22984000000000002, + 0.043887999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030856, + 0.113405, + 0.286231, + 0.442067, + 0.56089, + 0.655251, + 0.715789, + 0.7361449999999999, + 0.721493, + 0.6684589999999999, + 0.57108, + 0.43758800000000003, + 0.255287, + 0.049633000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030506000000000002, + 0.11320999999999999, + 0.235033, + 0.263755, + 0.499905, + 0.5883079999999999, + 0.5220009999999999, + 0.376003, + 0.131547, + 0.45979899999999996, + 0.21551599999999999, + 0.437072, + 0.23768899999999998, + 0.038415, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026795000000000003, + 0.113307, + 0.276447, + 0.442728, + 0.557241, + 0.646495, + 0.712015, + 0.6742039999999999, + 0.522725, + 0.5689740000000001, + 0.5146499999999999, + 0.322584, + 0.173319, + 0.029735, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023443000000000002, + 0.107855, + 0.23125800000000002, + 0.226911, + 0.45463099999999995, + 0.5407029999999999, + 0.624268, + 0.633816, + 0.616127, + 0.321048, + 0.296631, + 0.23168799999999998, + 0.106489, + 0.040117, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025204, + 0.118897, + 0.27976999999999996, + 0.432092, + 0.5532549999999999, + 0.637605, + 0.671644, + 0.666211, + 0.643197, + 0.604291, + 0.5287580000000001, + 0.40252499999999997, + 0.247959, + 0.05579, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023254999999999998, + 0.11324899999999999, + 0.277941, + 0.429865, + 0.551655, + 0.64488, + 0.705271, + 0.73154, + 0.719127, + 0.665263, + 0.570797, + 0.44273700000000005, + 0.268404, + 0.067562, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021838, + 0.071717, + 0.177523, + 0.143792, + 0.17586000000000002, + 0.557357, + 0.49397199999999997, + 0.7419070000000001, + 0.738778, + 0.538323, + 0.5866910000000001, + 0.437742, + 0.252461, + 0.04081, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026221, + 0.11963700000000001, + 0.294253, + 0.461262, + 0.5949099999999999, + 0.693706, + 0.757426, + 0.781375, + 0.7660399999999999, + 0.7061799999999999, + 0.6063529999999999, + 0.46501, + 0.280331, + 0.070202, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022760000000000002, + 0.126524, + 0.316379, + 0.492243, + 0.631864, + 0.7338429999999999, + 0.797515, + 0.820432, + 0.7973, + 0.73687, + 0.6340779999999999, + 0.49812599999999996, + 0.312013, + 0.088574, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020328, + 0.12739, + 0.322504, + 0.501689, + 0.638345, + 0.737206, + 0.788099, + 0.765532, + 0.783501, + 0.722164, + 0.6211409999999999, + 0.484084, + 0.304117, + 0.08967900000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019729, + 0.122321, + 0.30370400000000003, + 0.4721, + 0.5920829999999999, + 0.6762910000000001, + 0.724828, + 0.732349, + 0.703933, + 0.6385839999999999, + 0.5527960000000001, + 0.442363, + 0.28272, + 0.080261, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021663, + 0.119475, + 0.29495, + 0.45687700000000003, + 0.576513, + 0.657643, + 0.701123, + 0.711989, + 0.6993400000000001, + 0.657166, + 0.5742, + 0.45184399999999997, + 0.283591, + 0.079872, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020527, + 0.115478, + 0.285558, + 0.44637099999999996, + 0.573044, + 0.671049, + 0.734321, + 0.761299, + 0.751305, + 0.697261, + 0.601767, + 0.47176, + 0.296206, + 0.08568, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020472999999999998, + 0.124572, + 0.296212, + 0.472877, + 0.582364, + 0.678596, + 0.764972, + 0.789022, + 0.771512, + 0.7151069999999999, + 0.61427, + 0.479417, + 0.299648, + 0.085967, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024687, + 0.12136, + 0.301965, + 0.468696, + 0.5971660000000001, + 0.694726, + 0.7556269999999999, + 0.7786369999999999, + 0.761349, + 0.702607, + 0.603241, + 0.471962, + 0.29457799999999995, + 0.08498900000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022407, + 0.12072799999999999, + 0.296974, + 0.456805, + 0.569076, + 0.642725, + 0.674236, + 0.6844210000000001, + 0.686556, + 0.655264, + 0.573735, + 0.453223, + 0.279491, + 0.077256, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023614, + 0.117695, + 0.28554, + 0.43492899999999995, + 0.55965, + 0.6539919999999999, + 0.7137, + 0.738636, + 0.725716, + 0.672999, + 0.57172, + 0.44798000000000004, + 0.259719, + 0.043851999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022133, + 0.115877, + 0.28944099999999995, + 0.454443, + 0.583087, + 0.680158, + 0.7414160000000001, + 0.766013, + 0.7514109999999999, + 0.695846, + 0.599429, + 0.47072, + 0.29483499999999996, + 0.085885, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025407, + 0.11935599999999999, + 0.291311, + 0.45235000000000003, + 0.5722079999999999, + 0.6537229999999999, + 0.696382, + 0.710543, + 0.7014130000000001, + 0.659865, + 0.5767680000000001, + 0.454972, + 0.28432799999999997, + 0.079844, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024519, + 0.117972, + 0.291056, + 0.45183999999999996, + 0.56763, + 0.642418, + 0.68577, + 0.7008920000000001, + 0.693901, + 0.654813, + 0.5705800000000001, + 0.45023, + 0.281963, + 0.081094, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.029788000000000002, + 0.121777, + 0.28363499999999997, + 0.435466, + 0.552704, + 0.641323, + 0.701265, + 0.726961, + 0.7151109999999999, + 0.657384, + 0.5726789999999999, + 0.45102, + 0.282087, + 0.082691, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024523, + 0.116976, + 0.28182, + 0.43735599999999997, + 0.555477, + 0.641386, + 0.69168, + 0.715237, + 0.7081109999999999, + 0.659534, + 0.572705, + 0.446113, + 0.281254, + 0.082826, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022940000000000002, + 0.11508700000000001, + 0.285766, + 0.44306599999999996, + 0.567154, + 0.6594840000000001, + 0.71947, + 0.743077, + 0.729413, + 0.676496, + 0.586216, + 0.458318, + 0.290292, + 0.08888, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02044, + 0.110866, + 0.281094, + 0.437761, + 0.556589, + 0.648581, + 0.7079310000000001, + 0.733694, + 0.722839, + 0.671808, + 0.582546, + 0.458365, + 0.292819, + 0.091329, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019577999999999998, + 0.110095, + 0.278515, + 0.43353800000000003, + 0.550698, + 0.62534, + 0.693852, + 0.725872, + 0.717067, + 0.6691090000000001, + 0.562429, + 0.43843099999999996, + 0.284891, + 0.075297, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022723, + 0.10645600000000001, + 0.249622, + 0.39348500000000003, + 0.54877, + 0.638486, + 0.6868150000000001, + 0.711221, + 0.6241680000000001, + 0.5955170000000001, + 0.49826600000000004, + 0.32910199999999995, + 0.253945, + 0.07558799999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022997, + 0.108587, + 0.256053, + 0.40386900000000003, + 0.522837, + 0.655965, + 0.6938529999999999, + 0.700474, + 0.7195410000000001, + 0.687117, + 0.594563, + 0.470166, + 0.299768, + 0.092694, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022171, + 0.106766, + 0.26399900000000004, + 0.405601, + 0.5227480000000001, + 0.611095, + 0.668805, + 0.690987, + 0.677114, + 0.400401, + 0.252381, + 0.418798, + 0.265048, + 0.07791100000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021507000000000002, + 0.107459, + 0.266803, + 0.421036, + 0.540485, + 0.6332300000000001, + 0.6927089999999999, + 0.719789, + 0.708823, + 0.658941, + 0.5690879999999999, + 0.44608800000000004, + 0.281377, + 0.085132, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022733, + 0.112093, + 0.284578, + 0.449555, + 0.5823590000000001, + 0.684111, + 0.748093, + 0.772147, + 0.7571169999999999, + 0.701984, + 0.606506, + 0.47497, + 0.304211, + 0.097314, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024477, + 0.114376, + 0.291456, + 0.455034, + 0.570729, + 0.648205, + 0.70004, + 0.726244, + 0.722093, + 0.681428, + 0.595284, + 0.47201600000000005, + 0.301956, + 0.095821, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01893, + 0.106261, + 0.277709, + 0.433395, + 0.5460280000000001, + 0.637383, + 0.7014130000000001, + 0.73258, + 0.7260220000000001, + 0.679981, + 0.591039, + 0.474208, + 0.30998899999999996, + 0.10444400000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014618, + 0.104858, + 0.28674700000000003, + 0.45076499999999997, + 0.5696599999999999, + 0.64996, + 0.70726, + 0.733392, + 0.724572, + 0.681063, + 0.595767, + 0.473596, + 0.310603, + 0.102813, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014587999999999999, + 0.10501, + 0.287808, + 0.45514699999999997, + 0.579677, + 0.670501, + 0.7314919999999999, + 0.7567569999999999, + 0.746005, + 0.697448, + 0.6089450000000001, + 0.48315499999999995, + 0.316612, + 0.10758799999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014326, + 0.104923, + 0.285225, + 0.446179, + 0.554953, + 0.630783, + 0.68143, + 0.704785, + 0.696697, + 0.655175, + 0.576638, + 0.45955399999999996, + 0.303581, + 0.10244299999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014199, + 0.10212900000000001, + 0.273415, + 0.42349200000000004, + 0.521716, + 0.6068680000000001, + 0.549079, + 0.693545, + 0.660103, + 0.616464, + 0.533, + 0.429118, + 0.266293, + 0.07458799999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020997, + 0.100888, + 0.253633, + 0.402929, + 0.517123, + 0.604727, + 0.659985, + 0.682594, + 0.6037659999999999, + 0.638048, + 0.553135, + 0.42764800000000003, + 0.26276799999999995, + 0.071005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028897, + 0.113844, + 0.249609, + 0.39856400000000003, + 0.5141549999999999, + 0.6044400000000001, + 0.666029, + 0.607283, + 0.600102, + 0.635918, + 0.549432, + 0.423261, + 0.255003, + 0.063182, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020119, + 0.09899899999999999, + 0.260906, + 0.423226, + 0.5476219999999999, + 0.645141, + 0.7069249999999999, + 0.73234, + 0.726557, + 0.677039, + 0.585688, + 0.461669, + 0.295286, + 0.091782, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015269999999999999, + 0.09520300000000001, + 0.26600799999999997, + 0.434211, + 0.562392, + 0.659971, + 0.723285, + 0.750144, + 0.738059, + 0.6854690000000001, + 0.595653, + 0.474462, + 0.30478, + 0.096864, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017865, + 0.096731, + 0.260981, + 0.419622, + 0.5418390000000001, + 0.631182, + 0.69377, + 0.720213, + 0.713957, + 0.662571, + 0.56544, + 0.434851, + 0.26069400000000004, + 0.063982, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022208, + 0.080524, + 0.225825, + 0.19797599999999999, + 0.47744400000000004, + 0.51709, + 0.480547, + 0.5324439999999999, + 0.5181570000000001, + 0.30031599999999997, + 0.421907, + 0.33696699999999996, + 0.130136, + 0.025422999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022985, + 0.104113, + 0.263714, + 0.43166000000000004, + 0.566153, + 0.6727069999999999, + 0.7365470000000001, + 0.7591789999999999, + 0.749519, + 0.700761, + 0.6080420000000001, + 0.480852, + 0.30954899999999996, + 0.097959, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014365000000000001, + 0.092807, + 0.266898, + 0.434012, + 0.557763, + 0.651161, + 0.712433, + 0.737877, + 0.730308, + 0.6841860000000001, + 0.595716, + 0.47004399999999996, + 0.301123, + 0.09433799999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012910999999999999, + 0.088561, + 0.26306599999999997, + 0.42767700000000003, + 0.546597, + 0.635273, + 0.6970839999999999, + 0.721092, + 0.712581, + 0.6653490000000001, + 0.577188, + 0.452934, + 0.28712, + 0.085229, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006144, + 0.072597, + 0.21785400000000002, + 0.32965300000000003, + 0.420774, + 0.311459, + 0.405716, + 0.415692, + 0.487978, + 0.604346, + 0.5269790000000001, + 0.429645, + 0.26350599999999996, + 0.068858, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008376, + 0.085655, + 0.240153, + 0.39503, + 0.513414, + 0.6101960000000001, + 0.670298, + 0.6962809999999999, + 0.6837709999999999, + 0.638852, + 0.5501119999999999, + 0.421825, + 0.258608, + 0.067899, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014358000000000001, + 0.082956, + 0.244317, + 0.407253, + 0.531556, + 0.627597, + 0.690182, + 0.7161259999999999, + 0.708193, + 0.66025, + 0.573718, + 0.449673, + 0.283038, + 0.08023000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012359, + 0.083342, + 0.254724, + 0.42151299999999997, + 0.545157, + 0.639306, + 0.701758, + 0.727296, + 0.715408, + 0.666913, + 0.579238, + 0.452719, + 0.284429, + 0.079108, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011787, + 0.08241, + 0.255719, + 0.42507, + 0.5530109999999999, + 0.649968, + 0.714746, + 0.7403010000000001, + 0.729478, + 0.677739, + 0.5853400000000001, + 0.458611, + 0.291087, + 0.084497, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011139, + 0.080046, + 0.251006, + 0.419069, + 0.546774, + 0.648371, + 0.7146979999999999, + 0.7427849999999999, + 0.734052, + 0.6857730000000001, + 0.59599, + 0.47040899999999997, + 0.30153399999999997, + 0.088377, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011013, + 0.07839600000000001, + 0.25191399999999997, + 0.419217, + 0.547359, + 0.647794, + 0.712291, + 0.739253, + 0.731583, + 0.678952, + 0.5866979999999999, + 0.463983, + 0.292891, + 0.08439100000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011839, + 0.079134, + 0.244514, + 0.413091, + 0.539215, + 0.636619, + 0.699025, + 0.722052, + 0.7150460000000001, + 0.663289, + 0.571649, + 0.443492, + 0.273619, + 0.06954300000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013233, + 0.076824, + 0.23408600000000002, + 0.391855, + 0.515046, + 0.609047, + 0.671285, + 0.694133, + 0.6833980000000001, + 0.632943, + 0.53928, + 0.417165, + 0.24212299999999998, + 0.008747, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002205, + 0.060087, + 0.066703, + 0.061622, + 0.527976, + 0.548909, + 0.654336, + 0.057665999999999995, + 0.182323, + 0.15757300000000002, + 0.020325, + 0.194739, + 0.037573999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012839, + 0.075033, + 0.22655099999999997, + 0.38497899999999996, + 0.506945, + 0.605019, + 0.668603, + 0.696049, + 0.6871470000000001, + 0.640715, + 0.5535549999999999, + 0.428981, + 0.259893, + 0.060357999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010396, + 0.069926, + 0.232794, + 0.399962, + 0.525154, + 0.623178, + 0.687566, + 0.714152, + 0.708483, + 0.6577430000000001, + 0.567776, + 0.431778, + 0.260916, + 0.058487000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010336, + 0.069288, + 0.232119, + 0.399707, + 0.52426, + 0.617101, + 0.6799679999999999, + 0.709234, + 0.700797, + 0.653409, + 0.56694, + 0.435607, + 0.264786, + 0.058756, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010948000000000001, + 0.069075, + 0.226404, + 0.388567, + 0.5140520000000001, + 0.6115309999999999, + 0.674446, + 0.700124, + 0.6941609999999999, + 0.644325, + 0.5539700000000001, + 0.423779, + 0.252897, + 0.051446, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011082000000000002, + 0.070036, + 0.228192, + 0.39149900000000004, + 0.517974, + 0.612448, + 0.673365, + 0.699509, + 0.6920850000000001, + 0.643783, + 0.5547430000000001, + 0.423311, + 0.25237, + 0.049784, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009726, + 0.06748399999999999, + 0.22647399999999998, + 0.394104, + 0.517725, + 0.609525, + 0.671552, + 0.6961219999999999, + 0.681842, + 0.635043, + 0.549022, + 0.42486599999999997, + 0.254637, + 0.048682, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009658, + 0.067162, + 0.225335, + 0.38910500000000003, + 0.513875, + 0.6088279999999999, + 0.6713899999999999, + 0.6976140000000001, + 0.692068, + 0.641728, + 0.551953, + 0.42200299999999996, + 0.249338, + 0.043825, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008955, + 0.066488, + 0.220694, + 0.38380000000000003, + 0.506253, + 0.600657, + 0.6613519999999999, + 0.68536, + 0.671268, + 0.6189199999999999, + 0.526573, + 0.404606, + 0.2324, + 0.034133000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.050389, + 0.008494, + 0.336312, + 0.511779, + 0.546467, + 0.59235, + 0.6204700000000001, + 0.67915, + 0.631475, + 0.538789, + 0.414354, + 0.240531, + 0.034908, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008967000000000001, + 0.06644, + 0.21757300000000002, + 0.380574, + 0.5051, + 0.6020449999999999, + 0.668685, + 0.696954, + 0.686457, + 0.6397569999999999, + 0.5485209999999999, + 0.42399000000000003, + 0.249579, + 0.038522, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0070940000000000005, + 0.059997, + 0.22059600000000001, + 0.388202, + 0.509516, + 0.603343, + 0.6612870000000001, + 0.688064, + 0.681895, + 0.634714, + 0.5456319999999999, + 0.416291, + 0.240926, + 0.03325, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007326, + 0.06472199999999999, + 0.21662700000000001, + 0.381856, + 0.5063070000000001, + 0.600094, + 0.663378, + 0.687422, + 0.536577, + 0.625291, + 0.531554, + 0.40182, + 0.223405, + 0.024625, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007567, + 0.07642700000000001, + 0.21968100000000002, + 0.38323, + 0.514033, + 0.617521, + 0.685303, + 0.716216, + 0.702542, + 0.6519980000000001, + 0.5560069999999999, + 0.42899400000000004, + 0.245564, + 0.030533, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007042, + 0.06167, + 0.229599, + 0.413868, + 0.5517329999999999, + 0.659461, + 0.7268450000000001, + 0.7516849999999999, + 0.7405109999999999, + 0.6842480000000001, + 0.583973, + 0.447127, + 0.25920499999999996, + 0.035338999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004764, + 0.055043, + 0.224062, + 0.404715, + 0.538655, + 0.63849, + 0.706203, + 0.734191, + 0.7212759999999999, + 0.667336, + 0.5711390000000001, + 0.438008, + 0.252701, + 0.030973, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0047599999999999995, + 0.054426999999999996, + 0.224475, + 0.402048, + 0.5325599999999999, + 0.627257, + 0.695392, + 0.726533, + 0.717384, + 0.666227, + 0.572203, + 0.442719, + 0.256584, + 0.033412, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004216, + 0.052094999999999995, + 0.220697, + 0.398346, + 0.531594, + 0.632377, + 0.700716, + 0.7318600000000001, + 0.719756, + 0.668351, + 0.571296, + 0.439572, + 0.252611, + 0.031008, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0036829999999999996, + 0.050256999999999996, + 0.21713, + 0.392427, + 0.525606, + 0.626377, + 0.694378, + 0.725244, + 0.7141810000000001, + 0.663138, + 0.568378, + 0.435198, + 0.24833000000000002, + 0.023727, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004335, + 0.050002000000000005, + 0.213032, + 0.393902, + 0.532775, + 0.6357619999999999, + 0.702981, + 0.728284, + 0.7184149999999999, + 0.663099, + 0.565469, + 0.43176299999999995, + 0.243642, + 0.022482, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003791, + 0.048428, + 0.204373, + 0.377019, + 0.5076080000000001, + 0.604583, + 0.6661889999999999, + 0.69101, + 0.680314, + 0.6247440000000001, + 0.531103, + 0.40528, + 0.225583, + 0.016439, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003758, + 0.046801, + 0.20019800000000001, + 0.371987, + 0.49792899999999995, + 0.59409, + 0.658101, + 0.685132, + 0.6775829999999999, + 0.626972, + 0.534963, + 0.402933, + 0.22134600000000001, + 0.014374000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003262, + 0.045433, + 0.196762, + 0.36493000000000003, + 0.476262, + 0.49000900000000003, + 0.6547949999999999, + 0.6787859999999999, + 0.5678479999999999, + 0.46218400000000004, + 0.456867, + 0.35245800000000005, + 0.170882, + 0.006575999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0027879999999999997, + 0.054009999999999996, + 0.194489, + 0.36103500000000005, + 0.490622, + 0.584336, + 0.646562, + 0.672489, + 0.660828, + 0.6102759999999999, + 0.512532, + 0.36214100000000005, + 0.176904, + 0.001553, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002406, + 0.050725, + 0.192762, + 0.357108, + 0.483731, + 0.5708529999999999, + 0.631505, + 0.65661, + 0.644574, + 0.593099, + 0.49446300000000004, + 0.350029, + 0.168821, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003706, + 0.048502, + 0.189285, + 0.35517899999999997, + 0.484437, + 0.5843189999999999, + 0.6475700000000001, + 0.675353, + 0.665142, + 0.612852, + 0.515073, + 0.375712, + 0.18917799999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0037029999999999997, + 0.042332, + 0.192302, + 0.363353, + 0.49793200000000004, + 0.599075, + 0.664736, + 0.6931430000000001, + 0.6805410000000001, + 0.626222, + 0.532006, + 0.395277, + 0.20530099999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004319, + 0.052997999999999997, + 0.19627699999999998, + 0.376267, + 0.46911, + 0.6151810000000001, + 0.6267619999999999, + 0.706585, + 0.694014, + 0.637019, + 0.538375, + 0.400648, + 0.20827099999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003241, + 0.038249000000000005, + 0.198876, + 0.377471, + 0.510808, + 0.6074510000000001, + 0.673135, + 0.701861, + 0.686087, + 0.631721, + 0.533034, + 0.39372199999999996, + 0.20063399999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002592, + 0.036761, + 0.19174000000000002, + 0.369363, + 0.502275, + 0.597449, + 0.65742, + 0.681772, + 0.668782, + 0.613255, + 0.5174160000000001, + 0.376277, + 0.180744, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002052, + 0.035203000000000005, + 0.188702, + 0.36727699999999996, + 0.5019669999999999, + 0.601668, + 0.664197, + 0.685483, + 0.674395, + 0.615738, + 0.514505, + 0.375868, + 0.182801, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0021469999999999996, + 0.038194000000000006, + 0.193586, + 0.37768999999999997, + 0.518423, + 0.6197229999999999, + 0.686964, + 0.71156, + 0.6956760000000001, + 0.637334, + 0.536736, + 0.394197, + 0.194174, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0015609999999999999, + 0.034594, + 0.185645, + 0.362445, + 0.497731, + 0.597782, + 0.6618120000000001, + 0.6865119999999999, + 0.676207, + 0.618615, + 0.5189400000000001, + 0.37817500000000004, + 0.18138200000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.000907, + 0.036285, + 0.175542, + 0.345342, + 0.483011, + 0.583451, + 0.648404, + 0.6755890000000001, + 0.573597, + 0.518734, + 0.421162, + 0.345314, + 0.15546000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.04517, + 0.17676499999999998, + 0.32343099999999997, + 0.437333, + 0.568831, + 0.558592, + 0.547962, + 0.560021, + 0.164274, + 0.10155299999999999, + 0.291916, + 0.139462, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.035252000000000006, + 0.170131, + 0.33770999999999995, + 0.47226799999999997, + 0.573342, + 0.637828, + 0.662858, + 0.651032, + 0.596071, + 0.493921, + 0.354643, + 0.15862700000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028522, + 0.17037799999999997, + 0.337829, + 0.463931, + 0.560914, + 0.624885, + 0.6509790000000001, + 0.639492, + 0.584874, + 0.48953199999999997, + 0.349303, + 0.15633699999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027691, + 0.16730799999999998, + 0.330109, + 0.452658, + 0.54118, + 0.5947279999999999, + 0.616545, + 0.607677, + 0.397238, + 0.269435, + 0.295717, + 0.136834, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.040216999999999996, + 0.16489099999999998, + 0.32980200000000004, + 0.46308699999999997, + 0.5653360000000001, + 0.6303909999999999, + 0.655085, + 0.320444, + 0.033862, + 0.474746, + 0.062027, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034892000000000006, + 0.161831, + 0.31729599999999997, + 0.44262999999999997, + 0.541862, + 0.599178, + 0.622563, + 0.611761, + 0.489734, + 0.39599900000000005, + 0.347311, + 0.143767, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026693, + 0.169374, + 0.34151299999999996, + 0.476358, + 0.574286, + 0.639289, + 0.6667029999999999, + 0.652805, + 0.595031, + 0.491558, + 0.344903, + 0.140491, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026033, + 0.168294, + 0.337534, + 0.45926999999999996, + 0.556965, + 0.618957, + 0.18812, + 0.02104, + 0.016468, + 0.480293, + 0.335435, + 0.133781, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02579, + 0.16270199999999999, + 0.332988, + 0.47118400000000005, + 0.568487, + 0.629327, + 0.6509020000000001, + 0.245273, + 0.206608, + 0.049485, + 0.209151, + 0.12247, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031414000000000004, + 0.15953299999999998, + 0.33054300000000003, + 0.464935, + 0.560757, + 0.6183930000000001, + 0.638304, + 0.620093, + 0.558686, + 0.457343, + 0.30601, + 0.106708, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026607, + 0.156634, + 0.323895, + 0.456745, + 0.550177, + 0.605601, + 0.624024, + 0.604309, + 0.5461520000000001, + 0.16786500000000001, + 0.302014, + 0.02018, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026334, + 0.154117, + 0.32475, + 0.4595, + 0.55892, + 0.6207910000000001, + 0.645293, + 0.629435, + 0.568341, + 0.46151400000000004, + 0.310092, + 0.104004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027600000000000003, + 0.155311, + 0.325521, + 0.46307, + 0.5626530000000001, + 0.6249410000000001, + 0.6499969999999999, + 0.633167, + 0.567286, + 0.453003, + 0.297554, + 0.09295300000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024682, + 0.164114, + 0.348082, + 0.495145, + 0.598496, + 0.661555, + 0.683888, + 0.6691950000000001, + 0.6033740000000001, + 0.492473, + 0.325659, + 0.108192, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026834, + 0.166578, + 0.35272899999999996, + 0.501888, + 0.6054360000000001, + 0.670665, + 0.689557, + 0.668762, + 0.6023740000000001, + 0.49011, + 0.328067, + 0.108168, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02573, + 0.15929300000000002, + 0.334464, + 0.477094, + 0.582044, + 0.647531, + 0.670793, + 0.651664, + 0.589489, + 0.482098, + 0.322257, + 0.105977, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020762, + 0.152944, + 0.331853, + 0.470142, + 0.567444, + 0.62151, + 0.631593, + 0.6006739999999999, + 0.5345059999999999, + 0.437367, + 0.29520100000000005, + 0.09419799999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023177, + 0.148685, + 0.320337, + 0.45677100000000004, + 0.550944, + 0.603688, + 0.61462, + 0.58198, + 0.5214059999999999, + 0.425195, + 0.280435, + 0.07986499999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028735, + 0.145049, + 0.316523, + 0.4555, + 0.552803, + 0.614398, + 0.636577, + 0.614232, + 0.5455760000000001, + 0.42998200000000003, + 0.24566300000000002, + 0.049561999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.041433, + 0.160016, + 0.32043, + 0.45470499999999997, + 0.561686, + 0.6248630000000001, + 0.642989, + 0.624125, + 0.547856, + 0.41922699999999996, + 0.27246, + 0.060986, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028337, + 0.15812600000000002, + 0.350606, + 0.510111, + 0.624958, + 0.6937000000000001, + 0.7137279999999999, + 0.690329, + 0.614171, + 0.491234, + 0.316239, + 0.084751, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019629, + 0.15628299999999998, + 0.356049, + 0.517777, + 0.628539, + 0.696067, + 0.7155739999999999, + 0.686437, + 0.612634, + 0.49401999999999996, + 0.316144, + 0.078977, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019627, + 0.15236000000000002, + 0.34830700000000003, + 0.502654, + 0.610303, + 0.673176, + 0.687809, + 0.660211, + 0.5882179999999999, + 0.47154700000000005, + 0.30415699999999996, + 0.07146, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018670000000000003, + 0.145079, + 0.330868, + 0.47529899999999997, + 0.571699, + 0.627418, + 0.641167, + 0.612177, + 0.55034, + 0.445312, + 0.283765, + 0.055082, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025106000000000003, + 0.143262, + 0.32313400000000003, + 0.473189, + 0.583905, + 0.649033, + 0.671961, + 0.647969, + 0.579321, + 0.45743, + 0.282055, + 0.045747, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019072, + 0.142363, + 0.334135, + 0.483382, + 0.582794, + 0.638775, + 0.650051, + 0.618949, + 0.5502659999999999, + 0.43764600000000003, + 0.275989, + 0.04523, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016972, + 0.135246, + 0.318172, + 0.467005, + 0.569397, + 0.632992, + 0.652594, + 0.624049, + 0.551647, + 0.431859, + 0.258183, + 0.034454, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03392, + 0.143803, + 0.308653, + 0.45469400000000004, + 0.577493, + 0.646537, + 0.6692380000000001, + 0.643913, + 0.573372, + 0.45510700000000004, + 0.27647000000000005, + 0.038785, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016808, + 0.13670500000000002, + 0.333642, + 0.493114, + 0.6011040000000001, + 0.6654650000000001, + 0.682093, + 0.653157, + 0.577509, + 0.45358800000000005, + 0.27064, + 0.034713, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016625, + 0.133047, + 0.32539100000000004, + 0.4801, + 0.582109, + 0.641714, + 0.653683, + 0.622869, + 0.54818, + 0.430955, + 0.257235, + 0.030501999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017327000000000002, + 0.129498, + 0.31838, + 0.469942, + 0.572837, + 0.630892, + 0.6420950000000001, + 0.610179, + 0.539514, + 0.424291, + 0.250843, + 0.024068000000000003, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018748, + 0.123722, + 0.298673, + 0.446699, + 0.549755, + 0.612206, + 0.632017, + 0.611423, + 0.542318, + 0.424784, + 0.246139, + 0.019591, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016309, + 0.122647, + 0.306, + 0.453239, + 0.551635, + 0.609603, + 0.623991, + 0.5995309999999999, + 0.532038, + 0.41683, + 0.240323, + 0.017745999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021582, + 0.115642, + 0.263413, + 0.454755, + 0.491541, + 0.49435700000000005, + 0.530594, + 0.39805, + 0.2035, + 0.416812, + 0.237353, + 0.012351, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020507, + 0.120211, + 0.290563, + 0.43057999999999996, + 0.491247, + 0.541956, + 0.5486409999999999, + 0.49662599999999996, + 0.38991899999999996, + 0.278353, + 0.09794, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019234, + 0.117404, + 0.291497, + 0.39809500000000003, + 0.49853800000000004, + 0.503397, + 0.344077, + 0.419796, + 0.26274400000000003, + 0.27703, + 0.048600000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014146, + 0.108515, + 0.279557, + 0.425545, + 0.525098, + 0.586424, + 0.607817, + 0.582203, + 0.510394, + 0.39167399999999997, + 0.21320699999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026803, + 0.109038, + 0.27809100000000003, + 0.42567, + 0.5247050000000001, + 0.585491, + 0.6059640000000001, + 0.580659, + 0.508039, + 0.38935899999999996, + 0.210395, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015934, + 0.10765000000000001, + 0.28364, + 0.43655700000000003, + 0.5409149999999999, + 0.601958, + 0.622989, + 0.5934619999999999, + 0.516301, + 0.38929199999999997, + 0.20306, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021373999999999997, + 0.113966, + 0.294193, + 0.452386, + 0.5606789999999999, + 0.623184, + 0.640541, + 0.610893, + 0.399771, + 0.275714, + 0.012269, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021675999999999997, + 0.054216, + 0.188391, + 0.457881, + 0.320547, + 0.628421, + 0.645186, + 0.146784, + 0.210635, + 0.409476, + 0.003243, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016558, + 0.110849, + 0.30462900000000004, + 0.46896899999999997, + 0.574121, + 0.636926, + 0.10100100000000001, + 0.22568000000000002, + 0.013538999999999999, + 0.020867, + 0.105484, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014417999999999999, + 0.108964, + 0.296205, + 0.45997899999999997, + 0.562276, + 0.620347, + 0.630869, + 0.595223, + 0.517557, + 0.385719, + 0.191909, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015006, + 0.103364, + 0.285589, + 0.444543, + 0.546606, + 0.601958, + 0.613777, + 0.5816330000000001, + 0.506781, + 0.38399700000000003, + 0.19004400000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013465999999999999, + 0.099857, + 0.28169, + 0.436247, + 0.527183, + 0.5742430000000001, + 0.5840270000000001, + 0.5545739999999999, + 0.484151, + 0.368274, + 0.183171, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014198, + 0.096846, + 0.271457, + 0.428192, + 0.45867399999999997, + 0.500135, + 0.596468, + 0.5606749999999999, + 0.480524, + 0.35158999999999996, + 0.165744, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012844, + 0.093041, + 0.268944, + 0.426606, + 0.522905, + 0.5766939999999999, + 0.5883339999999999, + 0.555363, + 0.48060899999999995, + 0.355602, + 0.164939, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012572, + 0.088457, + 0.267779, + 0.425342, + 0.524646, + 0.582369, + 0.5960080000000001, + 0.5633980000000001, + 0.484224, + 0.356865, + 0.167806, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012602, + 0.088533, + 0.265461, + 0.417996, + 0.510648, + 0.55791, + 0.560605, + 0.526474, + 0.460067, + 0.343534, + 0.160415, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011151, + 0.085096, + 0.25358, + 0.35207900000000003, + 0.448166, + 0.544276, + 0.498214, + 0.435467, + 0.463183, + 0.293525, + 0.142041, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014341, + 0.09349500000000001, + 0.249924, + 0.395438, + 0.492132, + 0.5464600000000001, + 0.5587519999999999, + 0.539678, + 0.462428, + 0.330882, + 0.131966, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011526, + 0.08245699999999999, + 0.24977000000000002, + 0.403973, + 0.506021, + 0.56638, + 0.5811839999999999, + 0.550513, + 0.472715, + 0.33954500000000004, + 0.14180600000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01084, + 0.07956300000000001, + 0.254581, + 0.41196, + 0.514171, + 0.569572, + 0.577404, + 0.539989, + 0.461469, + 0.329453, + 0.137042, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010066, + 0.078899, + 0.254035, + 0.414891, + 0.517042, + 0.571585, + 0.578798, + 0.539216, + 0.46134800000000004, + 0.330572, + 0.134604, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01093, + 0.078538, + 0.249608, + 0.401886, + 0.5041789999999999, + 0.564115, + 0.580937, + 0.547063, + 0.467524, + 0.331009, + 0.12099800000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011654999999999999, + 0.079303, + 0.248606, + 0.402495, + 0.503517, + 0.556442, + 0.563722, + 0.531046, + 0.45588, + 0.32256599999999996, + 0.11188, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010865, + 0.076034, + 0.244171, + 0.396067, + 0.493348, + 0.5422, + 0.547591, + 0.513729, + 0.438987, + 0.30879399999999996, + 0.109361, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00977, + 0.070588, + 0.239925, + 0.397959, + 0.501992, + 0.559274, + 0.570064, + 0.5356420000000001, + 0.454618, + 0.315698, + 0.11948600000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0074470000000000005, + 0.06843300000000001, + 0.23627199999999998, + 0.392712, + 0.494585, + 0.548917, + 0.55651, + 0.52218, + 0.442584, + 0.307125, + 0.10916500000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008605999999999999, + 0.07181399999999999, + 0.22759700000000002, + 0.376847, + 0.480923, + 0.536458, + 0.544621, + 0.462384, + 0.255008, + 0.18303, + 0.052302999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008112, + 0.074227, + 0.228525, + 0.379503, + 0.48598899999999995, + 0.540726, + 0.548909, + 0.5126369999999999, + 0.418508, + 0.270399, + 0.077764, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007749, + 0.072157, + 0.23093, + 0.393192, + 0.507895, + 0.574299, + 0.592947, + 0.559925, + 0.476735, + 0.324141, + 0.110494, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006375, + 0.063473, + 0.23783, + 0.40561, + 0.5158959999999999, + 0.572276, + 0.5803809999999999, + 0.5455270000000001, + 0.46213600000000005, + 0.317813, + 0.108598, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005873000000000001, + 0.062871, + 0.234459, + 0.40124200000000004, + 0.510193, + 0.565258, + 0.572484, + 0.530956, + 0.44592200000000004, + 0.301738, + 0.09847199999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005915, + 0.059368000000000004, + 0.225094, + 0.385496, + 0.49349, + 0.548102, + 0.557685, + 0.5205890000000001, + 0.437167, + 0.29258, + 0.090475, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004703000000000001, + 0.055111, + 0.218488, + 0.37741199999999997, + 0.47995, + 0.532036, + 0.538789, + 0.363999, + 0.38389100000000004, + 0.227379, + 0.083725, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004203999999999999, + 0.052469999999999996, + 0.21352600000000002, + 0.29968900000000004, + 0.463871, + 0.519541, + 0.532817, + 0.502014, + 0.425288, + 0.282097, + 0.030282, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003858, + 0.051325, + 0.212505, + 0.376122, + 0.438087, + 0.368165, + 0.29334, + 0.5191749999999999, + 0.324235, + 0.257587, + 0.059719, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0062439999999999996, + 0.052503999999999995, + 0.20984999999999998, + 0.367564, + 0.480248, + 0.534892, + 0.544263, + 0.513831, + 0.432278, + 0.285289, + 0.075557, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004954, + 0.046594000000000003, + 0.214917, + 0.384074, + 0.50219, + 0.563211, + 0.572528, + 0.5340280000000001, + 0.44286000000000003, + 0.28978, + 0.071302, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00491, + 0.044882, + 0.206732, + 0.370012, + 0.483969, + 0.542529, + 0.552166, + 0.5142559999999999, + 0.427908, + 0.273356, + 0.061175, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00357, + 0.041860999999999995, + 0.193623, + 0.354693, + 0.467247, + 0.5265449999999999, + 0.536374, + 0.5005269999999999, + 0.414008, + 0.26695800000000003, + 0.056743, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0034980000000000002, + 0.041569, + 0.19050899999999998, + 0.348361, + 0.456297, + 0.509165, + 0.517521, + 0.48199200000000003, + 0.402836, + 0.262621, + 0.054134999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0022679999999999996, + 0.038299999999999994, + 0.18518, + 0.34039299999999995, + 0.44513600000000003, + 0.5011059999999999, + 0.5129130000000001, + 0.480226, + 0.399575, + 0.256271, + 0.05111, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004099, + 0.038267, + 0.1827, + 0.338233, + 0.445761, + 0.499092, + 0.505823, + 0.4704, + 0.387678, + 0.243505, + 0.043196, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.001676, + 0.036893999999999996, + 0.178303, + 0.325515, + 0.428697, + 0.488695, + 0.396478, + 0.473273, + 0.39199599999999996, + 0.24518500000000001, + 0.043558, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034561999999999996, + 0.179637, + 0.339231, + 0.45571100000000003, + 0.514064, + 0.5262619999999999, + 0.489147, + 0.402827, + 0.249267, + 0.040644, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.049726, + 0.178716, + 0.325857, + 0.442704, + 0.500263, + 0.511724, + 0.354949, + 0.375467, + 0.222405, + 0.003354, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.047223, + 0.148445, + 0.323146, + 0.439634, + 0.498572, + 0.510965, + 0.477673, + 0.392849, + 0.243228, + 0.03993, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.049329, + 0.147431, + 0.317873, + 0.431045, + 0.420798, + 0.393041, + 0.33304300000000003, + 0.289225, + 0.16048300000000001, + 0.003283, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024513, + 0.166, + 0.246484, + 0.439305, + 0.501231, + 0.5159980000000001, + 0.482465, + 0.39541899999999996, + 0.240694, + 0.014435, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034071, + 0.163575, + 0.319574, + 0.435334, + 0.49550900000000003, + 0.508188, + 0.47224700000000003, + 0.384277, + 0.23274799999999998, + 0.030787, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028053, + 0.170239, + 0.342827, + 0.468118, + 0.530691, + 0.5413479999999999, + 0.5046809999999999, + 0.41410399999999997, + 0.252604, + 0.036179, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027036, + 0.160808, + 0.32417399999999996, + 0.445446, + 0.5066700000000001, + 0.518914, + 0.480599, + 0.392736, + 0.198436, + 0.008966, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.04329, + 0.137412, + 0.318168, + 0.356483, + 0.422142, + 0.29512700000000003, + 0.22827799999999998, + 0.10830500000000001, + 0.19349100000000002, + 0.007622, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024626000000000002, + 0.127847, + 0.300428, + 0.32883999999999997, + 0.369216, + 0.174101, + 0.465995, + 0.377093, + 0.223878, + 0.021969000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023608, + 0.14851699999999998, + 0.304599, + 0.423184, + 0.41639, + 0.375704, + 0.341638, + 0.175588, + 0.069423, + 0.001113, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021927, + 0.145751, + 0.303068, + 0.420722, + 0.48135700000000003, + 0.49212700000000004, + 0.45594799999999996, + 0.368293, + 0.218803, + 0.0224, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038405, + 0.128071, + 0.240071, + 0.406428, + 0.472225, + 0.486372, + 0.454152, + 0.36651100000000003, + 0.152801, + 0.007687, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019294000000000002, + 0.1426, + 0.30772000000000005, + 0.433716, + 0.501486, + 0.515053, + 0.478765, + 0.38622, + 0.231026, + 0.008407, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0358, + 0.13858199999999998, + 0.30002, + 0.42083, + 0.488451, + 0.504079, + 0.471794, + 0.38372300000000004, + 0.230656, + 0.024569, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03504, + 0.136912, + 0.29262299999999997, + 0.40756099999999995, + 0.47457, + 0.490066, + 0.456538, + 0.366999, + 0.219945, + 0.022914999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031671, + 0.129879, + 0.28530399999999995, + 0.400046, + 0.457351, + 0.46839400000000003, + 0.441003, + 0.357495, + 0.217243, + 0.024175000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031918, + 0.11557200000000001, + 0.225499, + 0.337966, + 0.366031, + 0.36238600000000004, + 0.420497, + 0.34575599999999995, + 0.206517, + 0.018195, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031004, + 0.11271099999999999, + 0.27783800000000003, + 0.398197, + 0.468519, + 0.485074, + 0.456695, + 0.36794499999999997, + 0.221658, + 0.023382, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018123, + 0.123852, + 0.277043, + 0.39824, + 0.468375, + 0.48373700000000003, + 0.452926, + 0.362011, + 0.100378, + 0.001062, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015433, + 0.1003, + 0.169103, + 0.012362, + 0.069453, + 0.02618, + 0.032836, + 0.089752, + 0.057529000000000004, + 0.018931, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019308, + 0.11791800000000001, + 0.23688800000000002, + 0.33281099999999997, + 0.35771600000000003, + 0.388589, + 0.294707, + 0.133349, + 0.020681, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02978, + 0.081661, + 0.081497, + 0.127044, + 0.30551100000000003, + 0.30452100000000004, + 0.349049, + 0.27181900000000003, + 0.19911199999999998, + 0.008417999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019417, + 0.00507, + 0.269522, + 0.25605500000000003, + 0.31869, + 0.355527, + 0.192547, + 0.005702, + 0.212474, + 0.00495, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016727, + 0.115767, + 0.276733, + 0.407408, + 0.483899, + 0.501855, + 0.470854, + 0.377678, + 0.219218, + 0.00566, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016395, + 0.110535, + 0.264308, + 0.388204, + 0.461442, + 0.396701, + 0.44893299999999997, + 0.258955, + 0.16026300000000002, + 0.015656, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015242, + 0.107361, + 0.265229, + 0.38938, + 0.463727, + 0.480802, + 0.326678, + 0.35862700000000003, + 0.210562, + 0.01691, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014320000000000001, + 0.10586799999999999, + 0.26651400000000003, + 0.39705, + 0.474051, + 0.49103600000000003, + 0.460149, + 0.368087, + 0.214315, + 0.017287, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017095, + 0.10795199999999999, + 0.269247, + 0.363124, + 0.415662, + 0.487822, + 0.37482, + 0.365502, + 0.21853999999999998, + 0.019392, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016571000000000002, + 0.103965, + 0.25855700000000004, + 0.388065, + 0.467049, + 0.491435, + 0.202034, + 0.139657, + 0.212981, + 0.016862, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017519, + 0.104399, + 0.223208, + 0.26349, + 0.461322, + 0.027924, + 0.18437, + 0.075902, + 0.114093, + 0.01255, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014461, + 0.100655, + 0.261627, + 0.392564, + 0.474194, + 0.494601, + 0.46223000000000003, + 0.370999, + 0.22018100000000002, + 0.020017, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012962, + 0.096459, + 0.258548, + 0.391909, + 0.47139299999999995, + 0.490476, + 0.460296, + 0.369682, + 0.219828, + 0.02145, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014534, + 0.09214499999999999, + 0.249162, + 0.373382, + 0.443996, + 0.46560700000000005, + 0.43911, + 0.35534, + 0.212071, + 0.019731000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015982, + 0.093087, + 0.247673, + 0.30356299999999997, + 0.344598, + 0.34093900000000005, + 0.077362, + 0.274238, + 0.21615, + 0.006972000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013977999999999999, + 0.092719, + 0.25410499999999997, + 0.39049700000000004, + 0.47460199999999997, + 0.498553, + 0.47124099999999997, + 0.381393, + 0.229847, + 0.027805, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012282, + 0.090195, + 0.249362, + 0.379623, + 0.457867, + 0.478224, + 0.45105700000000004, + 0.366059, + 0.22231499999999998, + 0.008119999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015318, + 0.067986, + 0.239786, + 0.313183, + 0.36279199999999995, + 0.472178, + 0.40834899999999996, + 0.36400099999999996, + 0.219602, + 0.026751, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01312, + 0.089171, + 0.24725999999999998, + 0.377116, + 0.455316, + 0.476594, + 0.448678, + 0.365416, + 0.223308, + 0.026364000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01299, + 0.08673099999999999, + 0.240145, + 0.36300099999999996, + 0.43370299999999995, + 0.45855399999999996, + 0.43380599999999997, + 0.352288, + 0.21258600000000002, + 0.021421, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017677, + 0.085305, + 0.17767, + 0.32278500000000004, + 0.446299, + 0.38473, + 0.459871, + 0.37632600000000005, + 0.228691, + 0.022157, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013106, + 0.084346, + 0.237018, + 0.36603600000000003, + 0.3561, + 0.473454, + 0.447892, + 0.36342599999999997, + 0.21998900000000002, + 0.027123, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012423, + 0.08306699999999999, + 0.236769, + 0.365106, + 0.444654, + 0.46827199999999997, + 0.279446, + 0.304064, + 0.092012, + 0.003676, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010861, + 0.08023999999999999, + 0.23147399999999999, + 0.363142, + 0.444095, + 0.468506, + 0.445505, + 0.325445, + 0.22001300000000001, + 0.012516, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010676999999999999, + 0.08087699999999999, + 0.244512, + 0.38294799999999996, + 0.466282, + 0.402357, + 0.327062, + 0.266517, + 0.11505800000000001, + 0.006304000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010734, + 0.079748, + 0.241654, + 0.37618, + 0.38869600000000004, + 0.432772, + 0.461676, + 0.38021499999999997, + 0.240602, + 0.040451999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009797, + 0.07568899999999999, + 0.230685, + 0.301072, + 0.360999, + 0.358965, + 0.315016, + 0.241184, + 0.116732, + 0.006809999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015914, + 0.075569, + 0.127181, + 0.229742, + 0.335644, + 0.389944, + 0.296982, + 0.174226, + 0.226387, + 0.016794, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008386, + 0.077758, + 0.19381299999999999, + 0.230327, + 0.145797, + 0.137462, + 0.04218, + 0.09569799999999999, + 0.077393, + 0.004096, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01494, + 0.007328, + 0.126896, + 0.080486, + 0.118131, + 0.048034999999999994, + 0.10512, + 0.280267, + 0.057217, + 0.034523000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012052, + 0.04059599999999999, + 0.14897, + 0.051662, + 0.141411, + 0.144173, + 0.124481, + 0.089459, + 0.077465, + 0.005256, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011965, + 0.07634300000000001, + 0.225717, + 0.361714, + 0.446392, + 0.373714, + 0.336951, + 0.37846199999999997, + 0.176695, + 0.054952, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "annual_energy_produced_kwh_bau": 45938.58, + "electric_to_load_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.393, + 2.139, + 6.711, + 10.65, + 13.116, + 13.94, + 13.336, + 11.106, + 7.211, + 1.56, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.389, + 2.138, + 6.783, + 10.767, + 13.284, + 14.135, + 13.449, + 11.252, + 7.357, + 0.248, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.388, + 2.256, + 6.862, + 11.003, + 13.68, + 14.574, + 13.999, + 11.734, + 7.738, + 1.735, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.28, + 2.201, + 6.947, + 11.0, + 13.516, + 14.351, + 13.743, + 11.52, + 7.619, + 1.719, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.384, + 2.152, + 6.757, + 10.682, + 13.15, + 13.963, + 11.042, + 7.914, + 7.479, + 0.926, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.349, + 2.145, + 6.675, + 8.171, + 9.19, + 11.085, + 13.264, + 11.208, + 7.503, + 1.818, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.252, + 2.079, + 6.57, + 10.44, + 12.913, + 13.78, + 13.292, + 11.197, + 7.442, + 1.884, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.255, + 2.174, + 6.895, + 11.102, + 13.818, + 14.726, + 14.17, + 12.047, + 8.063, + 2.193, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.388, + 2.277, + 6.795, + 10.789, + 13.371, + 14.24, + 13.733, + 11.668, + 7.912, + 2.297, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.354, + 2.106, + 6.741, + 9.333, + 10.322, + 12.222, + 9.539, + 8.85, + 5.166, + 0.881, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.152, + 0.888, + 3.869, + 10.244, + 12.813, + 11.247, + 10.752, + 11.368, + 7.01, + 2.344, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.327, + 2.193, + 6.802, + 10.79, + 13.356, + 14.223, + 13.649, + 11.635, + 7.953, + 2.559, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.301, + 2.182, + 6.756, + 10.633, + 13.149, + 14.054, + 13.614, + 11.689, + 8.003, + 2.56, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.275, + 2.193, + 6.93, + 10.976, + 11.546, + 11.029, + 10.368, + 10.168, + 6.617, + 2.894, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.395, + 2.188, + 6.53, + 8.555, + 10.898, + 8.016, + 13.363, + 5.576, + 0.874, + 0.574, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.303, + 2.268, + 6.719, + 10.762, + 13.353, + 14.312, + 13.895, + 11.942, + 8.226, + 2.891, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.285, + 2.199, + 6.661, + 10.517, + 13.037, + 11.542, + 13.602, + 11.782, + 8.152, + 2.981, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.377, + 2.315, + 5.366, + 9.195, + 11.202, + 11.629, + 8.707, + 7.932, + 3.933, + 0.606, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.417, + 1.318, + 4.194, + 6.647, + 6.872, + 14.206, + 13.834, + 7.7, + 5.937, + 0.603, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.366, + 2.396, + 6.983, + 11.045, + 13.665, + 7.462, + 1.81, + 2.555, + 0.27, + 0.388, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.488, + 2.523, + 6.167, + 9.515, + 11.238, + 12.132, + 10.105, + 8.0, + 7.165, + 3.518, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.326, + 2.432, + 7.138, + 11.09, + 13.686, + 14.685, + 14.239, + 12.407, + 8.879, + 3.554, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.342, + 2.429, + 7.005, + 8.753, + 11.325, + 11.047, + 10.582, + 9.727, + 6.237, + 1.297, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.519, + 2.526, + 4.133, + 6.252, + 6.659, + 7.151, + 6.172, + 2.509, + 1.343, + 0.531, + 0.0, + 0.0, + 0.0, + 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.625, + 3.865, + 3.047, + 4.929, + 0.164, + 15.006, + 13.092, + 9.328, + 3.833, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.546, + 2.763, + 6.495, + 0.785, + 11.368, + 11.842, + 10.208, + 0.395, + 8.907, + 3.315, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.491, + 3.036, + 8.122, + 12.549, + 15.281, + 16.302, + 15.9, + 14.03, + 10.212, + 4.517, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.348, + 2.87, + 8.053, + 12.375, + 15.041, + 16.095, + 15.668, + 13.739, + 10.072, + 4.562, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.363, + 2.859, + 7.956, + 12.078, + 14.518, + 15.421, + 11.934, + 11.35, + 6.11, + 1.821, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.634, + 2.917, + 7.797, + 10.204, + 12.198, + 12.846, + 12.08, + 10.559, + 7.564, + 2.484, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.772, + 5.337, + 8.618, + 15.08, + 16.231, + 15.865, + 13.965, + 10.328, + 4.097, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.702, + 3.282, + 7.869, + 11.784, + 14.177, + 15.271, + 15.02, + 13.395, + 9.964, + 4.439, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.499, + 3.22, + 8.464, + 10.853, + 12.737, + 12.899, + 15.745, + 13.852, + 10.452, + 5.204, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.421, + 3.254, + 8.399, + 12.582, + 15.069, + 16.047, + 15.608, + 13.851, + 10.495, + 5.314, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.453, + 3.165, + 8.231, + 12.374, + 14.82, + 15.827, + 15.394, + 13.638, + 10.324, + 5.189, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.783, + 3.059, + 6.362, + 10.291, + 12.238, + 12.175, + 10.885, + 10.462, + 6.664, + 2.291, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.481, + 3.317, + 8.217, + 12.263, + 14.739, + 15.856, + 13.287, + 11.428, + 8.656, + 3.631, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.804, + 3.259, + 7.086, + 10.311, + 13.098, + 11.693, + 11.254, + 9.139, + 8.106, + 3.361, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.815, + 3.158, + 6.541, + 8.161, + 7.599, + 11.716, + 12.436, + 8.18, + 6.953, + 2.262, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.621, + 3.357, + 7.118, + 9.303, + 11.952, + 4.623, + 5.121, + 3.019, + 2.513, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.685, + 3.213, + 2.533, + 5.246, + 11.141, + 10.912, + 12.093, + 10.522, + 8.377, + 1.532, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.761, + 8.813, + 13.056, + 15.595, + 16.741, + 16.364, + 14.625, + 11.161, + 5.741, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.854, + 4.051, + 7.057, + 12.99, + 15.485, + 16.584, + 16.375, + 14.566, + 11.116, + 0.457, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.613, + 4.074, + 9.209, + 7.628, + 15.92, + 17.066, + 16.792, + 15.024, + 9.23, + 6.072, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.586, + 4.19, + 9.54, + 13.854, + 16.428, + 17.509, + 17.162, + 15.302, + 11.923, + 6.524, + 0.0, + 0.0, + 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.051, + 4.214, + 9.483, + 13.497, + 15.872, + 16.874, + 16.425, + 14.634, + 11.381, + 6.312, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.504, + 4.155, + 9.298, + 13.339, + 15.764, + 16.865, + 16.544, + 14.78, + 11.533, + 6.29, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.58, + 4.299, + 9.436, + 13.574, + 15.965, + 16.947, + 16.57, + 14.72, + 9.633, + 1.565, + 0.0, + 0.0, + 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.169, + 4.02, + 7.013, + 9.735, + 9.228, + 6.415, + 11.417, + 11.418, + 8.929, + 4.456, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.862, + 0.685, + 0.905, + 3.051, + 13.731, + 12.038, + 15.057, + 11.841, + 6.623, + 0.263, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.714, + 4.73, + 9.829, + 13.813, + 16.194, + 17.257, + 16.972, + 15.329, + 12.038, + 6.954, + 0.399, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.902, + 4.804, + 9.698, + 13.497, + 15.953, + 17.135, + 16.977, + 15.388, + 12.21, + 7.109, + 0.495, + 0.0, + 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.039, + 3.407, + 3.917, + 2.849, + 11.696, + 14.043, + 13.374, + 10.835, + 8.655, + 4.429, + 0.072, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.798, + 5.358, + 11.068, + 15.352, + 18.023, + 19.242, + 18.997, + 17.17, + 13.694, + 8.097, + 0.254, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.797, + 5.333, + 10.831, + 14.815, + 16.968, + 17.706, + 17.106, + 15.53, + 12.682, + 7.74, + 0.266, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.863, + 5.325, + 10.72, + 14.82, + 17.344, + 18.445, + 14.163, + 3.404, + 1.094, + 1.768, + 0.653, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.993, + 5.451, + 10.7, + 14.647, + 17.124, + 18.23, + 17.915, + 16.222, + 12.981, + 7.738, + 0.921, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.147, + 5.778, + 11.399, + 12.94, + 14.353, + 19.373, + 19.061, + 17.195, + 1.398, + 1.681, + 0.088, + 0.0, + 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.051, + 5.991, + 11.675, + 15.795, + 18.394, + 19.542, + 19.267, + 17.454, + 14.034, + 0.235, + 0.622, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.883, + 5.09, + 6.022, + 8.41, + 11.963, + 2.3, + 12.338, + 8.253, + 2.678, + 3.788, + 0.0, + 0.0, + 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.691, + 4.998, + 7.787, + 10.362, + 13.23, + 12.053, + 11.624, + 8.526, + 6.059, + 2.79, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.037, + 1.835, + 5.086, + 9.012, + 12.996, + 14.339, + 14.349, + 16.608, + 13.091, + 8.262, + 3.715, + 0.148, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.176, + 1.345, + 6.159, + 9.128, + 12.631, + 14.334, + 15.493, + 12.617, + 11.426, + 12.821, + 7.912, + 1.241, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.227, + 1.426, + 6.267, + 11.198, + 14.698, + 12.278, + 17.994, + 17.753, + 13.414, + 12.84, + 3.989, + 1.272, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.098, + 1.964, + 5.187, + 8.038, + 14.783, + 17.108, + 14.91, + 17.991, + 16.196, + 12.89, + 8.021, + 1.392, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.138, + 1.65, + 6.803, + 12.063, + 13.423, + 15.1, + 14.515, + 14.666, + 14.325, + 10.812, + 8.666, + 0.261, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.136, + 1.687, + 7.133, + 12.588, + 16.3, + 18.531, + 19.37, + 18.913, + 17.145, + 13.86, + 6.935, + 1.138, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.158, + 1.896, + 6.876, + 12.18, + 15.692, + 17.687, + 18.139, + 17.323, + 15.884, + 10.272, + 6.555, + 1.705, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.155, + 1.828, + 6.129, + 12.216, + 15.783, + 18.014, + 18.874, + 18.535, + 16.687, + 13.468, + 8.586, + 1.922, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.225, + 2.272, + 6.203, + 12.779, + 13.928, + 14.585, + 16.459, + 14.48, + 13.228, + 9.16, + 6.346, + 1.252, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.242, + 2.081, + 7.492, + 12.857, + 16.488, + 18.752, + 19.631, + 19.069, + 17.199, + 13.9, + 8.906, + 2.197, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.296, + 2.243, + 7.581, + 12.708, + 16.333, + 18.593, + 19.595, + 19.162, + 17.28, + 14.037, + 9.102, + 2.472, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.323, + 2.305, + 7.732, + 12.788, + 15.999, + 18.083, + 18.943, + 18.655, + 17.039, + 13.909, + 9.1, + 2.548, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.316, + 2.364, + 7.913, + 13.145, + 16.718, + 18.916, + 19.69, + 19.242, + 17.26, + 13.949, + 9.116, + 2.481, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.444, + 2.644, + 7.767, + 12.404, + 15.636, + 17.456, + 18.623, + 18.482, + 16.961, + 13.995, + 9.358, + 2.797, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.34, + 2.581, + 8.318, + 13.523, + 17.119, + 19.444, + 20.389, + 19.95, + 18.173, + 13.26, + 6.842, + 1.98, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.429, + 2.835, + 8.592, + 13.931, + 17.458, + 19.612, + 20.313, + 19.672, + 17.9, + 14.654, + 9.923, + 3.192, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.401, + 2.894, + 8.66, + 13.897, + 17.4, + 19.535, + 20.217, + 19.448, + 17.458, + 14.279, + 9.689, + 3.119, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.61, + 2.906, + 6.425, + 12.418, + 14.984, + 15.417, + 15.906, + 15.664, + 12.439, + 14.043, + 9.474, + 2.917, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.477, + 3.0, + 8.374, + 13.139, + 16.493, + 18.659, + 19.566, + 19.221, + 17.377, + 14.095, + 9.256, + 2.635, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.686, + 3.376, + 8.458, + 12.981, + 15.823, + 17.668, + 18.849, + 18.847, + 17.343, + 14.22, + 9.485, + 2.915, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.626, + 3.363, + 7.294, + 10.685, + 15.712, + 15.854, + 16.151, + 15.152, + 14.694, + 13.712, + 6.511, + 1.755, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.672, + 3.456, + 7.385, + 12.021, + 16.678, + 18.614, + 19.18, + 18.562, + 12.426, + 12.099, + 6.872, + 2.646, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.691, + 3.559, + 8.683, + 13.266, + 16.891, + 19.113, + 20.042, + 17.306, + 17.582, + 14.436, + 9.511, + 2.897, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.674, + 3.646, + 9.307, + 14.322, + 17.884, + 20.182, + 5.358, + 12.961, + 13.435, + 9.163, + 3.608, + 3.068, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.76, + 3.835, + 9.444, + 14.202, + 17.419, + 19.434, + 20.44, + 20.037, + 18.198, + 14.849, + 3.884, + 3.299, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.83, + 4.046, + 9.238, + 13.599, + 16.592, + 16.393, + 17.024, + 16.237, + 15.677, + 13.799, + 9.204, + 3.148, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.748, + 3.522, + 7.557, + 13.43, + 16.979, + 18.416, + 15.362, + 16.666, + 17.592, + 13.338, + 6.108, + 1.519, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.627, + 4.3, + 10.304, + 15.225, + 18.679, + 20.863, + 21.631, + 21.005, + 19.115, + 15.74, + 10.897, + 4.184, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.681, + 4.189, + 9.831, + 14.609, + 18.053, + 20.271, + 21.172, + 20.875, + 19.036, + 15.626, + 0.14, + 0.072, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.751, + 4.548, + 10.61, + 15.647, + 19.16, + 21.415, + 22.167, + 21.607, + 19.547, + 16.142, + 11.122, + 4.199, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.671, + 4.549, + 10.405, + 15.1, + 18.324, + 20.215, + 20.757, + 16.919, + 18.393, + 15.205, + 10.655, + 4.2, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.891, + 4.525, + 8.655, + 11.807, + 16.494, + 18.545, + 19.65, + 19.475, + 17.947, + 14.816, + 10.349, + 3.892, + 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.088, + 4.915, + 7.897, + 12.704, + 17.869, + 20.039, + 20.985, + 20.587, + 18.792, + 15.602, + 10.835, + 4.131, + 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.116, + 5.159, + 10.969, + 15.718, + 19.101, + 21.223, + 22.101, + 21.564, + 19.579, + 9.646, + 10.78, + 4.059, + 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.21, + 5.43, + 11.141, + 15.886, + 19.317, + 21.36, + 22.031, + 21.36, + 19.323, + 15.887, + 10.881, + 4.249, + 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.106, + 5.357, + 11.085, + 15.569, + 18.691, + 20.417, + 20.852, + 20.202, + 18.483, + 15.523, + 10.951, + 4.399, + 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.251, + 5.252, + 10.536, + 14.89, + 18.028, + 20.082, + 20.863, + 20.394, + 18.484, + 15.139, + 10.692, + 4.265, + 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.185, + 5.336, + 10.712, + 15.048, + 18.231, + 20.33, + 21.241, + 20.841, + 18.903, + 15.467, + 9.763, + 4.13, + 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.0, + 5.501, + 11.098, + 15.566, + 18.869, + 20.987, + 21.906, + 21.349, + 19.436, + 16.15, + 11.508, + 4.85, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011, + 5.511, + 7.783, + 15.85, + 4.271, + 11.909, + 22.188, + 21.609, + 16.641, + 10.795, + 1.772, + 0.074, + 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.504, + 5.844, + 7.815, + 15.863, + 19.186, + 21.205, + 18.761, + 21.187, + 11.177, + 5.71, + 5.517, + 1.092, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011, + 5.84, + 11.421, + 4.675, + 0.601, + 1.93, + 0.917, + 3.519, + 3.494, + 6.692, + 2.319, + 0.0, + 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.746, + 6.112, + 12.102, + 16.672, + 19.832, + 21.827, + 22.441, + 21.728, + 19.722, + 16.505, + 11.766, + 5.226, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.057, + 1.404, + 5.936, + 11.385, + 15.438, + 17.95, + 19.369, + 20.313, + 20.196, + 18.685, + 15.786, + 11.244, + 4.969, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.071, + 1.343, + 5.91, + 11.239, + 15.309, + 18.132, + 19.73, + 20.085, + 19.721, + 18.217, + 15.34, + 11.089, + 4.957, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.084, + 1.236, + 5.911, + 11.155, + 14.885, + 17.411, + 19.075, + 20.124, + 20.06, + 18.499, + 15.544, + 11.248, + 5.227, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.153, + 1.734, + 6.014, + 11.245, + 13.152, + 15.509, + 19.907, + 20.52, + 20.133, + 18.459, + 15.514, + 8.351, + 5.139, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.137, + 1.351, + 6.124, + 11.437, + 15.346, + 17.951, + 19.39, + 19.534, + 18.614, + 16.977, + 14.344, + 10.172, + 4.632, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.108, + 1.565, + 6.038, + 11.086, + 15.01, + 18.165, + 19.65, + 19.777, + 18.734, + 16.725, + 14.398, + 10.726, + 5.17, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.114, + 1.435, + 6.193, + 11.331, + 15.028, + 17.57, + 18.969, + 19.479, + 19.103, + 17.682, + 14.977, + 11.049, + 5.315, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.112, + 1.484, + 6.18, + 11.099, + 15.006, + 18.033, + 19.854, + 20.614, + 20.208, + 18.491, + 15.37, + 11.358, + 5.397, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.149, + 1.792, + 6.584, + 11.844, + 15.762, + 18.693, + 20.566, + 21.219, + 21.03, + 19.25, + 16.231, + 11.99, + 5.813, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.215, + 2.044, + 6.662, + 11.465, + 15.77, + 16.275, + 10.645, + 12.582, + 13.773, + 5.17, + 4.815, + 3.119, + 0.796, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.137, + 5.694, + 8.238, + 10.01, + 5.347, + 13.066, + 16.896, + 15.624, + 9.626, + 11.459, + 7.8, + 5.753, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.201, + 1.742, + 6.792, + 12.159, + 16.323, + 19.376, + 21.309, + 22.031, + 11.014, + 14.349, + 6.203, + 3.66, + 0.604, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.24, + 1.959, + 7.109, + 12.455, + 16.465, + 19.383, + 21.044, + 21.331, + 20.571, + 18.606, + 15.712, + 11.4, + 5.589, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.275, + 2.157, + 7.026, + 12.3, + 16.257, + 19.311, + 20.729, + 20.747, + 19.743, + 17.726, + 15.003, + 11.296, + 5.731, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.315, + 2.226, + 7.084, + 12.196, + 15.924, + 18.512, + 19.835, + 19.881, + 19.236, + 17.709, + 15.094, + 10.873, + 5.187, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.319, + 2.206, + 6.92, + 11.645, + 15.296, + 18.299, + 20.156, + 20.895, + 20.466, + 18.659, + 15.548, + 11.915, + 6.092, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.292, + 2.062, + 7.186, + 12.43, + 16.185, + 18.868, + 20.136, + 19.915, + 19.056, + 18.134, + 15.62, + 11.535, + 5.931, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.331, + 2.164, + 7.107, + 12.097, + 15.741, + 18.292, + 19.52, + 19.523, + 19.243, + 18.119, + 15.48, + 11.34, + 5.673, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.325, + 2.153, + 6.986, + 11.903, + 15.539, + 18.167, + 19.483, + 19.785, + 18.981, + 17.535, + 14.847, + 10.927, + 5.528, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.376, + 2.275, + 6.887, + 11.386, + 14.826, + 17.637, + 19.409, + 20.182, + 19.811, + 18.27, + 15.39, + 11.299, + 5.715, + 0.103, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.403, + 2.402, + 7.32, + 11.766, + 14.351, + 17.419, + 18.113, + 21.545, + 20.994, + 15.537, + 14.178, + 10.182, + 5.149, + 0.176, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.567, + 2.934, + 6.822, + 11.649, + 16.352, + 19.078, + 20.972, + 8.398, + 10.094, + 19.836, + 16.74, + 7.825, + 5.998, + 0.079, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.692, + 3.091, + 7.885, + 7.475, + 16.966, + 20.02, + 21.875, + 20.094, + 10.575, + 2.369, + 13.888, + 8.178, + 6.753, + 0.298, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.473, + 2.693, + 7.978, + 13.116, + 12.71, + 19.802, + 21.33, + 21.704, + 14.966, + 15.476, + 15.802, + 11.459, + 5.771, + 0.079, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.544, + 2.765, + 7.42, + 12.059, + 15.694, + 18.448, + 20.305, + 21.019, + 20.608, + 18.727, + 15.676, + 11.171, + 5.516, + 0.114, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.74, + 3.192, + 7.849, + 12.547, + 16.272, + 19.316, + 21.189, + 21.859, + 21.191, + 19.464, + 16.336, + 11.986, + 6.213, + 0.252, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.638, + 2.98, + 7.763, + 12.589, + 16.354, + 19.297, + 21.108, + 21.761, + 21.272, + 19.577, + 16.618, + 12.414, + 6.714, + 0.378, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.544, + 2.902, + 7.937, + 12.923, + 16.741, + 19.836, + 21.654, + 22.248, + 21.672, + 19.878, + 16.883, + 12.542, + 6.869, + 0.553, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.504, + 3.011, + 8.66, + 13.994, + 17.783, + 20.433, + 22.06, + 22.468, + 21.697, + 20.033, + 17.111, + 12.855, + 7.092, + 0.595, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.65, + 3.094, + 8.338, + 13.345, + 17.156, + 19.956, + 21.727, + 22.386, + 21.824, + 20.099, + 17.053, + 12.711, + 6.882, + 0.529, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.823, + 3.371, + 8.326, + 13.384, + 17.39, + 20.324, + 22.103, + 20.183, + 4.823, + 14.992, + 16.997, + 12.342, + 6.469, + 0.478, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.772, + 3.254, + 8.139, + 13.045, + 16.76, + 19.596, + 21.404, + 22.054, + 21.688, + 19.903, + 13.356, + 10.402, + 5.463, + 0.251, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.701, + 3.181, + 8.135, + 13.209, + 17.251, + 20.27, + 22.143, + 22.873, + 22.2, + 20.471, + 17.412, + 13.098, + 7.336, + 0.77, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.526, + 3.051, + 8.307, + 13.268, + 16.744, + 19.018, + 20.312, + 20.669, + 20.315, + 18.729, + 16.039, + 12.195, + 7.167, + 0.921, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.515, + 3.076, + 8.372, + 13.316, + 16.9, + 19.449, + 20.801, + 21.016, + 20.147, + 18.144, + 15.634, + 12.183, + 7.152, + 0.895, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.529, + 3.037, + 8.132, + 12.899, + 16.452, + 18.801, + 19.952, + 19.898, + 18.897, + 17.849, + 15.802, + 12.098, + 6.913, + 0.832, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.52, + 3.003, + 7.863, + 12.354, + 15.956, + 18.731, + 20.522, + 21.261, + 20.853, + 19.229, + 16.429, + 12.397, + 7.109, + 0.958, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.476, + 3.044, + 8.082, + 12.572, + 15.874, + 18.289, + 19.627, + 20.101, + 19.576, + 18.225, + 15.814, + 11.996, + 6.882, + 0.916, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.574, + 3.043, + 7.829, + 12.305, + 15.844, + 18.646, + 20.346, + 21.107, + 20.71, + 19.153, + 16.463, + 12.594, + 7.458, + 1.189, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.493, + 3.123, + 6.821, + 13.088, + 16.856, + 15.83, + 21.365, + 21.876, + 21.36, + 19.786, + 16.829, + 12.845, + 7.497, + 1.159, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.645, + 3.321, + 8.544, + 13.455, + 17.318, + 20.172, + 21.933, + 22.556, + 22.112, + 20.398, + 17.423, + 13.322, + 7.906, + 1.387, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.806, + 3.541, + 8.594, + 13.494, + 17.283, + 20.291, + 21.984, + 22.588, + 22.014, + 20.246, + 17.331, + 13.135, + 7.599, + 1.226, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.781, + 3.473, + 8.325, + 12.876, + 16.358, + 19.046, + 20.518, + 20.968, + 20.609, + 19.118, + 16.574, + 12.741, + 7.562, + 1.378, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.625, + 3.308, + 8.216, + 12.727, + 16.199, + 18.769, + 20.15, + 20.467, + 20.009, + 18.572, + 16.027, + 12.229, + 7.139, + 1.238, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.685, + 3.361, + 8.055, + 12.496, + 16.011, + 18.76, + 20.408, + 21.018, + 16.304, + 18.977, + 16.174, + 10.836, + 6.591, + 1.258, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.885, + 3.252, + 8.208, + 12.676, + 16.083, + 18.789, + 20.525, + 21.109, + 20.689, + 19.168, + 16.375, + 12.548, + 7.32, + 1.423, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.875, + 3.246, + 6.739, + 7.563, + 14.335, + 16.869, + 14.968, + 10.782, + 3.772, + 13.185, + 6.18, + 12.533, + 6.816, + 1.102, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.768, + 3.249, + 7.927, + 12.695, + 15.979, + 18.538, + 20.417, + 19.333, + 14.989, + 16.315, + 14.757, + 9.25, + 4.97, + 0.853, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.672, + 3.093, + 6.631, + 6.507, + 13.036, + 15.504, + 17.901, + 18.174, + 17.667, + 9.206, + 8.506, + 6.644, + 3.054, + 1.15, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.723, + 3.409, + 8.022, + 12.39, + 15.864, + 18.283, + 19.259, + 19.103, + 18.443, + 17.328, + 15.162, + 11.542, + 7.11, + 1.6, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.667, + 3.247, + 7.97, + 12.326, + 15.818, + 18.492, + 20.223, + 20.977, + 20.621, + 19.076, + 16.367, + 12.695, + 7.696, + 1.937, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.626, + 2.056, + 5.09, + 4.123, + 5.043, + 15.982, + 14.164, + 21.274, + 21.184, + 15.436, + 16.823, + 12.552, + 7.239, + 1.17, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.752, + 3.431, + 8.438, + 13.226, + 17.059, + 19.892, + 21.719, + 22.406, + 21.966, + 20.249, + 17.387, + 13.334, + 8.038, + 2.013, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.653, + 3.628, + 9.072, + 14.115, + 18.118, + 21.043, + 22.868, + 23.526, + 22.862, + 21.129, + 18.182, + 14.284, + 8.947, + 2.54, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.583, + 3.653, + 9.248, + 14.386, + 18.304, + 21.139, + 22.598, + 21.951, + 22.467, + 20.708, + 17.811, + 13.881, + 8.72, + 2.572, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.566, + 3.508, + 8.709, + 13.537, + 16.978, + 19.392, + 20.784, + 21.0, + 20.185, + 18.311, + 15.851, + 12.685, + 8.107, + 2.301, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.621, + 3.426, + 8.458, + 13.101, + 16.531, + 18.858, + 20.104, + 20.416, + 20.053, + 18.844, + 16.465, + 12.956, + 8.132, + 2.29, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.589, + 3.311, + 8.188, + 12.799, + 16.432, + 19.242, + 21.056, + 21.83, + 21.543, + 19.994, + 17.255, + 13.528, + 8.494, + 2.457, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.587, + 3.572, + 8.494, + 13.56, + 16.699, + 19.458, + 21.935, + 22.625, + 22.123, + 20.505, + 17.614, + 13.747, + 8.592, + 2.465, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.708, + 3.48, + 8.659, + 13.44, + 17.123, + 19.921, + 21.667, + 22.327, + 21.831, + 20.147, + 17.298, + 13.533, + 8.447, + 2.437, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.643, + 3.462, + 8.516, + 13.099, + 16.318, + 18.43, + 19.333, + 19.625, + 19.687, + 18.789, + 16.452, + 12.996, + 8.014, + 2.215, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.677, + 3.375, + 8.188, + 12.471, + 16.048, + 18.753, + 20.465, + 21.18, + 20.81, + 19.298, + 16.394, + 12.846, + 7.447, + 1.257, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.635, + 3.323, + 8.3, + 13.031, + 16.72, + 19.503, + 21.26, + 21.965, + 21.546, + 19.953, + 17.188, + 13.498, + 8.454, + 2.463, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.729, + 3.422, + 8.353, + 12.971, + 16.408, + 18.745, + 19.968, + 20.375, + 20.113, + 18.921, + 16.539, + 13.046, + 8.153, + 2.289, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.703, + 3.383, + 8.346, + 12.956, + 16.277, + 18.421, + 19.664, + 20.098, + 19.897, + 18.776, + 16.361, + 12.91, + 8.085, + 2.325, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.854, + 3.492, + 8.133, + 12.487, + 15.849, + 18.39, + 20.108, + 20.845, + 20.506, + 18.85, + 16.421, + 12.933, + 8.089, + 2.371, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.703, + 3.354, + 8.081, + 12.541, + 15.928, + 18.391, + 19.834, + 20.509, + 20.305, + 18.912, + 16.422, + 12.792, + 8.065, + 2.375, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.658, + 3.3, + 8.194, + 12.705, + 16.263, + 18.91, + 20.63, + 21.307, + 20.916, + 19.398, + 16.809, + 13.142, + 8.324, + 2.549, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.586, + 3.179, + 8.06, + 12.553, + 15.96, + 18.598, + 20.3, + 21.038, + 20.727, + 19.264, + 16.704, + 13.143, + 8.396, + 2.619, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.561, + 3.157, + 7.986, + 12.432, + 15.791, + 17.931, + 19.896, + 20.814, + 20.562, + 19.186, + 16.127, + 12.572, + 8.169, + 2.159, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.652, + 3.053, + 7.158, + 11.283, + 15.736, + 18.308, + 19.694, + 20.394, + 17.898, + 17.076, + 14.288, + 9.437, + 7.282, + 2.167, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.659, + 3.114, + 7.342, + 11.581, + 14.992, + 18.81, + 19.896, + 20.086, + 20.633, + 19.703, + 17.049, + 13.482, + 8.596, + 2.658, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.636, + 3.061, + 7.57, + 11.63, + 14.99, + 17.523, + 19.178, + 19.814, + 19.416, + 11.481, + 7.237, + 12.009, + 7.6, + 2.234, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.617, + 3.081, + 7.65, + 12.073, + 15.498, + 18.158, + 19.863, + 20.64, + 20.325, + 18.895, + 16.318, + 12.791, + 8.068, + 2.441, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.652, + 3.214, + 8.16, + 12.891, + 16.699, + 19.617, + 21.451, + 22.141, + 21.71, + 20.129, + 17.391, + 13.62, + 8.723, + 2.79, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.702, + 3.28, + 8.357, + 13.048, + 16.365, + 18.587, + 20.073, + 20.825, + 20.706, + 19.54, + 17.07, + 13.535, + 8.658, + 2.748, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.543, + 3.047, + 7.963, + 12.427, + 15.657, + 18.277, + 20.113, + 21.006, + 20.818, + 19.498, + 16.948, + 13.598, + 8.889, + 2.995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.419, + 3.007, + 8.222, + 12.925, + 16.335, + 18.637, + 20.28, + 21.03, + 20.777, + 19.529, + 17.083, + 13.58, + 8.906, + 2.948, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.418, + 3.011, + 8.253, + 13.051, + 16.622, + 19.226, + 20.975, + 21.7, + 21.391, + 19.999, + 17.461, + 13.854, + 9.079, + 3.085, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.411, + 3.009, + 8.179, + 12.794, + 15.913, + 18.087, + 19.54, + 20.209, + 19.977, + 18.787, + 16.535, + 13.178, + 8.705, + 2.938, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.407, + 2.929, + 7.84, + 12.143, + 14.96, + 17.402, + 15.745, + 19.887, + 18.928, + 17.677, + 15.284, + 12.305, + 7.636, + 2.139, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.602, + 2.893, + 7.273, + 11.554, + 14.828, + 17.34, + 18.925, + 19.573, + 17.313, + 18.296, + 15.861, + 12.263, + 7.535, + 2.036, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.829, + 3.264, + 7.157, + 11.429, + 14.743, + 17.332, + 19.098, + 17.414, + 17.208, + 18.235, + 15.755, + 12.137, + 7.312, + 1.812, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.577, + 2.839, + 7.481, + 12.136, + 15.703, + 18.499, + 20.271, + 21.0, + 20.834, + 19.414, + 16.794, + 13.238, + 8.467, + 2.632, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.438, + 2.73, + 7.628, + 12.451, + 16.126, + 18.924, + 20.74, + 21.51, + 21.164, + 19.656, + 17.08, + 13.605, + 8.739, + 2.778, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.512, + 2.774, + 7.484, + 12.032, + 15.537, + 18.099, + 19.894, + 20.652, + 20.472, + 18.999, + 16.214, + 12.469, + 7.475, + 1.835, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.637, + 2.309, + 6.475, + 5.677, + 13.691, + 14.827, + 13.779, + 15.268, + 14.858, + 8.611, + 12.098, + 9.662, + 3.732, + 0.729, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.659, + 2.985, + 7.562, + 12.378, + 16.234, + 19.29, + 21.12, + 21.769, + 21.492, + 20.094, + 17.435, + 13.788, + 8.876, + 2.809, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.412, + 2.661, + 7.653, + 12.445, + 15.994, + 18.672, + 20.429, + 21.158, + 20.941, + 19.619, + 17.082, + 13.478, + 8.635, + 2.705, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.37, + 2.539, + 7.543, + 12.263, + 15.673, + 18.216, + 19.989, + 20.677, + 20.433, + 19.079, + 16.551, + 12.988, + 8.233, + 2.444, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.176, + 2.082, + 6.247, + 9.453, + 12.066, + 8.931, + 11.634, + 11.92, + 13.993, + 17.329, + 15.111, + 12.32, + 7.556, + 1.974, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.24, + 2.456, + 6.886, + 11.327, + 14.722, + 17.497, + 19.221, + 19.966, + 19.607, + 18.319, + 15.774, + 12.096, + 7.415, + 1.947, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.412, + 2.379, + 7.006, + 11.678, + 15.242, + 17.996, + 19.791, + 20.535, + 20.307, + 18.932, + 16.451, + 12.894, + 8.116, + 2.301, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.354, + 2.39, + 7.304, + 12.087, + 15.632, + 18.332, + 20.123, + 20.855, + 20.514, + 19.123, + 16.609, + 12.982, + 8.156, + 2.268, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.338, + 2.363, + 7.333, + 12.189, + 15.857, + 18.638, + 20.495, + 21.228, + 20.917, + 19.434, + 16.784, + 13.15, + 8.347, + 2.423, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.319, + 2.295, + 7.197, + 12.017, + 15.679, + 18.592, + 20.494, + 21.299, + 21.049, + 19.664, + 17.09, + 13.489, + 8.646, + 2.534, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.316, + 2.248, + 7.224, + 12.021, + 15.695, + 18.575, + 20.425, + 21.198, + 20.978, + 19.469, + 16.823, + 13.305, + 8.399, + 2.42, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.339, + 2.269, + 7.011, + 11.845, + 15.462, + 18.255, + 20.044, + 20.705, + 20.504, + 19.02, + 16.392, + 12.717, + 7.846, + 1.994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.379, + 2.203, + 6.712, + 11.236, + 14.769, + 17.464, + 19.249, + 19.904, + 19.596, + 18.149, + 15.464, + 11.962, + 6.943, + 0.251, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.063, + 1.723, + 1.913, + 1.767, + 15.139, + 15.74, + 18.763, + 1.654, + 5.228, + 4.518, + 0.583, + 5.584, + 1.077, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.368, + 2.152, + 6.496, + 11.039, + 14.536, + 17.349, + 19.172, + 19.959, + 19.704, + 18.372, + 15.873, + 12.301, + 7.452, + 1.731, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.298, + 2.005, + 6.675, + 11.469, + 15.059, + 17.869, + 19.716, + 20.478, + 20.315, + 18.861, + 16.281, + 12.381, + 7.482, + 1.677, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.296, + 1.987, + 6.656, + 11.461, + 15.033, + 17.695, + 19.498, + 20.337, + 20.095, + 18.736, + 16.257, + 12.491, + 7.593, + 1.685, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.314, + 1.981, + 6.492, + 11.142, + 14.74, + 17.535, + 19.339, + 20.076, + 19.905, + 18.476, + 15.885, + 12.152, + 7.252, + 1.475, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.318, + 2.008, + 6.543, + 11.226, + 14.853, + 17.562, + 19.308, + 20.058, + 19.845, + 18.46, + 15.907, + 12.138, + 7.237, + 1.428, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.279, + 1.935, + 6.494, + 11.301, + 14.846, + 17.478, + 19.256, + 19.961, + 19.552, + 18.21, + 15.743, + 12.183, + 7.302, + 1.396, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.277, + 1.926, + 6.461, + 11.157, + 14.735, + 17.458, + 19.252, + 20.004, + 19.845, + 18.401, + 15.827, + 12.101, + 7.15, + 1.257, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.257, + 1.907, + 6.328, + 11.005, + 14.517, + 17.224, + 18.964, + 19.652, + 19.248, + 17.747, + 15.099, + 11.602, + 6.664, + 0.979, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.445, + 0.244, + 9.644, + 14.675, + 15.67, + 16.985, + 17.792, + 19.474, + 18.107, + 15.45, + 11.881, + 6.897, + 1.001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.257, + 1.905, + 6.239, + 10.913, + 14.484, + 17.263, + 19.174, + 19.985, + 19.684, + 18.345, + 15.729, + 12.158, + 7.157, + 1.105, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.203, + 1.72, + 6.325, + 11.132, + 14.61, + 17.301, + 18.962, + 19.73, + 19.553, + 18.2, + 15.646, + 11.937, + 6.908, + 0.953, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.21, + 1.856, + 6.212, + 10.95, + 14.518, + 17.207, + 19.022, + 19.712, + 15.386, + 17.93, + 15.242, + 11.522, + 6.406, + 0.706, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.217, + 2.192, + 6.299, + 10.989, + 14.74, + 17.707, + 19.651, + 20.537, + 20.145, + 18.696, + 15.943, + 12.301, + 7.041, + 0.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.202, + 1.768, + 6.584, + 11.867, + 15.821, + 18.91, + 20.842, + 21.554, + 21.234, + 19.621, + 16.745, + 12.821, + 7.433, + 1.013, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.137, + 1.578, + 6.425, + 11.605, + 15.446, + 18.308, + 20.25, + 21.053, + 20.682, + 19.136, + 16.377, + 12.56, + 7.246, + 0.888, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.136, + 1.561, + 6.437, + 11.529, + 15.271, + 17.986, + 19.94, + 20.833, + 20.571, + 19.104, + 16.408, + 12.695, + 7.357, + 0.958, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.121, + 1.494, + 6.328, + 11.422, + 15.243, + 18.133, + 20.093, + 20.986, + 20.639, + 19.165, + 16.382, + 12.605, + 7.244, + 0.889, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.106, + 1.441, + 6.226, + 11.253, + 15.072, + 17.961, + 19.911, + 20.796, + 20.479, + 19.015, + 16.298, + 12.479, + 7.121, + 0.68, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.124, + 1.434, + 6.109, + 11.295, + 15.277, + 18.23, + 20.158, + 20.883, + 20.6, + 19.014, + 16.215, + 12.381, + 6.986, + 0.645, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.109, + 1.389, + 5.86, + 10.811, + 14.555, + 17.336, + 19.103, + 19.814, + 19.508, + 17.914, + 15.229, + 11.621, + 6.468, + 0.471, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.108, + 1.342, + 5.741, + 10.667, + 14.278, + 17.035, + 18.871, + 19.646, + 19.429, + 17.978, + 15.34, + 11.554, + 6.347, + 0.412, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.094, + 1.303, + 5.642, + 10.464, + 13.657, + 14.051, + 18.776, + 19.464, + 16.283, + 13.253, + 13.1, + 10.107, + 4.9, + 0.189, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08, + 1.549, + 5.577, + 10.353, + 14.068, + 16.756, + 18.54, + 19.283, + 18.949, + 17.499, + 14.697, + 10.384, + 5.073, + 0.045, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.069, + 1.455, + 5.527, + 10.24, + 13.871, + 16.369, + 18.108, + 18.828, + 18.483, + 17.007, + 14.179, + 10.037, + 4.841, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.106, + 1.391, + 5.428, + 10.185, + 13.891, + 16.755, + 18.569, + 19.365, + 19.073, + 17.573, + 14.769, + 10.773, + 5.425, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.106, + 1.214, + 5.514, + 10.419, + 14.278, + 17.178, + 19.061, + 19.876, + 19.514, + 17.957, + 15.255, + 11.334, + 5.887, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.124, + 1.52, + 5.628, + 10.789, + 13.452, + 17.64, + 17.972, + 20.261, + 19.901, + 18.266, + 15.438, + 11.488, + 5.972, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.093, + 1.097, + 5.703, + 10.824, + 14.647, + 17.418, + 19.302, + 20.126, + 19.673, + 18.114, + 15.285, + 11.29, + 5.753, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.074, + 1.054, + 5.498, + 10.591, + 14.403, + 17.132, + 18.851, + 19.55, + 19.177, + 17.585, + 14.837, + 10.79, + 5.183, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.059, + 1.009, + 5.411, + 10.532, + 14.394, + 17.253, + 19.046, + 19.656, + 19.338, + 17.656, + 14.753, + 10.778, + 5.242, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.062, + 1.095, + 5.551, + 10.83, + 14.866, + 17.77, + 19.698, + 20.404, + 19.948, + 18.275, + 15.391, + 11.303, + 5.568, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.045, + 0.992, + 5.323, + 10.393, + 14.272, + 17.141, + 18.977, + 19.685, + 19.39, + 17.739, + 14.88, + 10.844, + 5.201, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026, + 1.04, + 5.034, + 9.903, + 13.85, + 16.73, + 18.593, + 19.372, + 16.448, + 14.874, + 12.077, + 9.902, + 4.458, + 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.295, + 5.069, + 9.274, + 12.54, + 16.311, + 16.017, + 15.713, + 16.058, + 4.71, + 2.912, + 8.371, + 3.999, + 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.011, + 4.878, + 9.684, + 13.542, + 16.44, + 18.289, + 19.007, + 18.668, + 17.092, + 14.163, + 10.169, + 4.549, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.818, + 4.886, + 9.687, + 13.303, + 16.084, + 17.918, + 18.667, + 18.337, + 16.771, + 14.037, + 10.016, + 4.483, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.794, + 4.797, + 9.466, + 12.98, + 15.518, + 17.054, + 17.679, + 17.425, + 11.391, + 7.726, + 8.48, + 3.924, + 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.153, + 4.728, + 9.457, + 13.279, + 16.211, + 18.076, + 18.784, + 9.189, + 0.971, + 13.613, + 1.779, + 0.0, + 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.001, + 4.64, + 9.098, + 12.692, + 15.538, + 17.181, + 17.852, + 17.542, + 14.043, + 11.355, + 9.959, + 4.122, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.765, + 4.857, + 9.793, + 13.659, + 16.467, + 18.331, + 19.117, + 18.719, + 17.062, + 14.095, + 9.89, + 4.029, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.746, + 4.826, + 9.679, + 13.169, + 15.971, + 17.748, + 5.394, + 0.603, + 0.472, + 13.772, + 9.618, + 3.836, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.74, + 4.665, + 9.548, + 13.511, + 16.301, + 18.046, + 18.664, + 7.033, + 5.924, + 1.419, + 5.997, + 3.512, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.901, + 4.575, + 9.478, + 13.332, + 16.079, + 17.732, + 18.303, + 17.781, + 16.02, + 13.114, + 8.775, + 3.06, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.763, + 4.491, + 9.288, + 13.097, + 15.776, + 17.365, + 17.894, + 17.328, + 15.661, + 4.813, + 8.66, + 0.579, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.755, + 4.419, + 9.312, + 13.176, + 16.027, + 17.801, + 18.504, + 18.049, + 16.297, + 13.234, + 8.892, + 2.982, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.791, + 4.453, + 9.334, + 13.278, + 16.134, + 17.92, + 18.638, + 18.156, + 16.267, + 12.99, + 8.532, + 2.665, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.708, + 4.706, + 9.981, + 14.198, + 17.162, + 18.97, + 19.61, + 19.189, + 17.301, + 14.121, + 9.338, + 3.102, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.769, + 4.777, + 10.114, + 14.391, + 17.361, + 19.231, + 19.773, + 19.176, + 17.273, + 14.054, + 9.407, + 3.102, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.738, + 4.568, + 9.591, + 13.68, + 16.69, + 18.568, + 19.235, + 18.686, + 16.903, + 13.824, + 9.241, + 3.039, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.595, + 4.386, + 9.516, + 13.481, + 16.271, + 17.822, + 18.111, + 17.224, + 15.327, + 12.541, + 8.465, + 2.701, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.665, + 4.263, + 9.186, + 13.098, + 15.798, + 17.31, + 17.624, + 16.688, + 14.951, + 12.192, + 8.041, + 2.29, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.824, + 4.159, + 9.076, + 13.061, + 15.851, + 17.618, + 18.254, + 17.613, + 15.644, + 12.33, + 7.044, + 1.421, + 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.188, + 4.588, + 9.188, + 13.038, + 16.106, + 17.918, + 18.437, + 17.897, + 15.71, + 12.021, + 7.813, + 1.749, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.813, + 4.534, + 10.053, + 14.627, + 17.92, + 19.892, + 20.466, + 19.795, + 17.611, + 14.086, + 9.068, + 2.43, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.563, + 4.481, + 10.21, + 14.847, + 18.023, + 19.959, + 20.519, + 19.683, + 17.567, + 14.166, + 9.065, + 2.265, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.563, + 4.369, + 9.988, + 14.413, + 17.5, + 19.303, + 19.723, + 18.931, + 16.867, + 13.521, + 8.722, + 2.049, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.535, + 4.16, + 9.487, + 13.629, + 16.393, + 17.991, + 18.385, + 17.554, + 15.781, + 12.769, + 8.137, + 1.579, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.72, + 4.108, + 9.266, + 13.568, + 16.743, + 18.611, + 19.268, + 18.58, + 16.612, + 13.117, + 8.088, + 1.312, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.547, + 4.082, + 9.581, + 13.861, + 16.711, + 18.317, + 18.64, + 17.748, + 15.779, + 12.549, + 7.914, + 1.297, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.487, + 3.878, + 9.123, + 13.391, + 16.327, + 18.151, + 18.713, + 17.894, + 15.818, + 12.383, + 7.403, + 0.988, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.973, + 4.123, + 8.85, + 13.038, + 16.559, + 18.539, + 19.19, + 18.464, + 16.441, + 13.05, + 7.928, + 1.112, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.482, + 3.92, + 9.567, + 14.14, + 17.236, + 19.082, + 19.559, + 18.729, + 16.56, + 13.006, + 7.76, + 0.995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.477, + 3.815, + 9.33, + 13.767, + 16.692, + 18.401, + 18.744, + 17.861, + 15.719, + 12.357, + 7.376, + 0.875, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.497, + 3.713, + 9.129, + 13.475, + 16.426, + 18.091, + 18.412, + 17.497, + 15.47, + 12.166, + 7.193, + 0.69, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.538, + 3.548, + 8.564, + 12.809, + 15.764, + 17.555, + 18.123, + 17.532, + 15.551, + 12.181, + 7.058, + 0.562, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.468, + 3.517, + 8.774, + 12.996, + 15.818, + 17.48, + 17.893, + 17.191, + 15.256, + 11.952, + 6.891, + 0.509, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.619, + 3.316, + 7.553, + 13.04, + 14.095, + 14.175, + 15.215, + 11.414, + 5.835, + 11.952, + 6.806, + 0.354, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.588, + 3.447, + 8.332, + 12.347, + 14.086, + 15.54, + 15.732, + 14.241, + 11.181, + 7.982, + 2.808, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.552, + 3.367, + 8.359, + 11.415, + 14.295, + 14.435, + 9.866, + 12.037, + 7.534, + 7.944, + 1.394, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.406, + 3.112, + 8.016, + 12.202, + 15.057, + 16.815, + 17.429, + 16.694, + 14.635, + 11.231, + 6.114, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.769, + 3.127, + 7.974, + 12.206, + 15.046, + 16.789, + 17.376, + 16.65, + 14.568, + 11.165, + 6.033, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.457, + 3.087, + 8.133, + 12.518, + 15.511, + 17.261, + 17.864, + 17.017, + 14.805, + 11.163, + 5.823, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.613, + 3.268, + 8.436, + 12.972, + 16.077, + 17.87, + 18.367, + 17.517, + 11.463, + 7.906, + 0.352, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.622, + 1.555, + 5.402, + 13.13, + 9.192, + 18.02, + 18.5, + 4.209, + 6.04, + 11.742, + 0.093, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.475, + 3.179, + 8.735, + 13.447, + 16.463, + 18.264, + 2.896, + 6.471, + 0.388, + 0.598, + 3.025, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.413, + 3.124, + 8.494, + 13.19, + 16.123, + 17.788, + 18.09, + 17.068, + 14.841, + 11.06, + 5.503, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.43, + 2.964, + 8.189, + 12.747, + 15.674, + 17.261, + 17.6, + 16.678, + 14.532, + 11.011, + 5.449, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.386, + 2.863, + 8.077, + 12.509, + 15.117, + 16.466, + 16.747, + 15.902, + 13.883, + 10.56, + 5.252, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.407, + 2.777, + 7.784, + 12.278, + 13.152, + 14.341, + 17.103, + 16.077, + 13.779, + 10.082, + 4.753, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.368, + 2.668, + 7.712, + 12.233, + 14.994, + 16.536, + 16.87, + 15.925, + 13.781, + 10.197, + 4.73, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.36, + 2.536, + 7.678, + 12.197, + 15.044, + 16.699, + 17.09, + 16.155, + 13.885, + 10.233, + 4.812, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.361, + 2.539, + 7.612, + 11.986, + 14.643, + 15.998, + 16.075, + 15.096, + 13.192, + 9.851, + 4.6, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.32, + 2.44, + 7.271, + 10.096, + 12.851, + 15.607, + 14.286, + 12.487, + 13.282, + 8.417, + 4.073, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.411, + 2.681, + 7.166, + 11.339, + 14.112, + 15.67, + 16.022, + 15.475, + 13.26, + 9.488, + 3.784, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.331, + 2.364, + 7.162, + 11.584, + 14.51, + 16.241, + 16.665, + 15.786, + 13.555, + 9.736, + 4.066, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.311, + 2.281, + 7.3, + 11.813, + 14.744, + 16.332, + 16.557, + 15.484, + 13.232, + 9.447, + 3.93, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.289, + 2.262, + 7.284, + 11.897, + 14.826, + 16.39, + 16.597, + 15.462, + 13.229, + 9.479, + 3.86, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.313, + 2.252, + 7.157, + 11.524, + 14.457, + 16.176, + 16.658, + 15.687, + 13.406, + 9.492, + 3.47, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.334, + 2.274, + 7.129, + 11.541, + 14.438, + 15.956, + 16.164, + 15.228, + 13.072, + 9.249, + 3.208, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.312, + 2.18, + 7.001, + 11.357, + 14.147, + 15.547, + 15.702, + 14.731, + 12.588, + 8.855, + 3.136, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.28, + 2.024, + 6.88, + 11.411, + 14.394, + 16.037, + 16.346, + 15.359, + 13.036, + 9.053, + 3.426, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.214, + 1.962, + 6.775, + 11.261, + 14.182, + 15.74, + 15.958, + 14.973, + 12.691, + 8.807, + 3.13, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.247, + 2.059, + 6.526, + 10.806, + 13.79, + 15.383, + 15.617, + 13.259, + 7.312, + 5.248, + 1.5, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.233, + 2.128, + 6.553, + 10.882, + 13.936, + 15.505, + 15.74, + 14.7, + 12.001, + 7.754, + 2.23, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.222, + 2.069, + 6.622, + 11.275, + 14.564, + 16.468, + 17.003, + 16.056, + 13.67, + 9.295, + 3.168, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.183, + 1.82, + 6.82, + 11.631, + 14.793, + 16.41, + 16.642, + 15.643, + 13.252, + 9.113, + 3.114, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.168, + 1.803, + 6.723, + 11.505, + 14.63, + 16.209, + 16.416, + 15.225, + 12.787, + 8.652, + 2.824, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.17, + 1.702, + 6.454, + 11.054, + 14.151, + 15.717, + 15.991, + 14.928, + 12.536, + 8.39, + 2.594, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.135, + 1.58, + 6.265, + 10.822, + 13.762, + 15.256, + 15.45, + 10.438, + 11.008, + 6.52, + 2.401, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.121, + 1.505, + 6.123, + 8.593, + 13.301, + 14.898, + 15.278, + 14.395, + 12.195, + 8.089, + 0.868, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.111, + 1.472, + 6.093, + 10.785, + 12.562, + 10.557, + 8.411, + 14.887, + 9.297, + 7.386, + 1.712, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.179, + 1.506, + 6.017, + 10.54, + 13.771, + 15.338, + 15.607, + 14.734, + 12.395, + 8.181, + 2.167, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.142, + 1.336, + 6.163, + 11.013, + 14.4, + 16.15, + 16.417, + 15.313, + 12.699, + 8.309, + 2.045, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.141, + 1.287, + 5.928, + 10.61, + 13.878, + 15.557, + 15.833, + 14.746, + 12.27, + 7.838, + 1.754, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.102, + 1.2, + 5.552, + 10.171, + 13.398, + 15.098, + 15.38, + 14.352, + 11.872, + 7.655, + 1.627, + 0.0, + 0.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.192, + 5.463, + 9.989, + 13.084, + 14.6, + 14.84, + 13.821, + 11.551, + 7.531, + 1.552, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.065, + 1.098, + 5.31, + 9.761, + 12.764, + 14.369, + 14.708, + 13.77, + 11.458, + 7.348, + 1.466, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.118, + 1.097, + 5.239, + 9.699, + 12.782, + 14.311, + 14.504, + 13.489, + 11.117, + 6.982, + 1.239, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.048, + 1.058, + 5.113, + 9.334, + 12.293, + 14.013, + 11.369, + 13.571, + 11.24, + 7.031, + 1.249, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.991, + 5.151, + 9.727, + 13.067, + 14.741, + 15.09, + 14.026, + 11.551, + 7.148, + 1.165, + 0.0, + 0.0, + 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.426, + 5.125, + 9.344, + 12.694, + 14.345, + 14.673, + 10.178, + 10.766, + 6.377, + 0.096, + 0.0, + 0.0, + 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.354, + 4.257, + 9.266, + 12.606, + 14.296, + 14.652, + 13.697, + 11.265, + 6.974, + 1.145, + 0.0, + 0.0, + 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.414, + 4.228, + 9.115, + 12.36, + 12.066, + 11.27, + 9.55, + 8.293, + 4.602, + 0.094, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.703, + 4.76, + 7.068, + 12.597, + 14.373, + 14.796, + 13.834, + 11.338, + 6.902, + 0.414, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.977, + 4.69, + 9.164, + 12.483, + 14.209, + 14.572, + 13.541, + 11.019, + 6.674, + 0.883, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.804, + 4.882, + 9.83, + 13.423, + 15.217, + 15.523, + 14.472, + 11.874, + 7.243, + 1.037, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.775, + 4.611, + 9.296, + 12.773, + 14.529, + 14.88, + 13.781, + 11.262, + 5.69, + 0.257, + 0.0, + 0.0, + 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.241, + 3.94, + 9.123, + 10.222, + 12.105, + 8.463, + 6.546, + 3.106, + 5.548, + 0.219, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.706, + 3.666, + 8.615, + 9.429, + 10.587, + 4.992, + 13.362, + 10.813, + 6.42, + 0.63, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.677, + 4.259, + 8.734, + 12.135, + 11.94, + 10.773, + 9.796, + 5.035, + 1.991, + 0.032, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.629, + 4.179, + 8.69, + 12.064, + 13.803, + 14.112, + 13.074, + 10.561, + 6.274, + 0.642, + 0.0, + 0.0, + 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.101, + 3.672, + 6.884, + 11.654, + 13.541, + 13.947, + 13.023, + 10.51, + 4.382, + 0.22, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.553, + 4.089, + 8.824, + 12.437, + 14.38, + 14.769, + 13.728, + 11.075, + 6.625, + 0.241, + 0.0, + 0.0, + 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.027, + 3.974, + 8.603, + 12.067, + 14.006, + 14.454, + 13.528, + 11.003, + 6.614, + 0.705, + 0.0, + 0.0, + 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.005, + 3.926, + 8.391, + 11.687, + 13.608, + 14.052, + 13.091, + 10.524, + 6.307, + 0.657, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.908, + 3.724, + 8.181, + 11.471, + 13.114, + 13.431, + 12.646, + 10.251, + 6.229, + 0.693, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.915, + 3.314, + 6.466, + 9.691, + 10.496, + 10.391, + 12.058, + 9.914, + 5.922, + 0.522, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.889, + 3.232, + 7.967, + 11.418, + 13.435, + 13.909, + 13.096, + 10.551, + 6.356, + 0.67, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.52, + 3.551, + 7.944, + 11.419, + 13.43, + 13.871, + 12.987, + 10.381, + 2.878, + 0.03, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.443, + 2.876, + 4.849, + 0.354, + 1.992, + 0.751, + 0.942, + 2.574, + 1.65, + 0.543, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.554, + 3.381, + 6.793, + 9.543, + 10.257, + 11.143, + 8.451, + 3.824, + 0.593, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.854, + 2.342, + 2.337, + 3.643, + 8.76, + 8.732, + 10.009, + 7.794, + 5.709, + 0.241, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.557, + 0.145, + 7.728, + 7.342, + 9.138, + 10.195, + 5.521, + 0.164, + 6.093, + 0.142, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.48, + 3.32, + 7.935, + 11.682, + 13.876, + 14.39, + 13.502, + 10.83, + 6.286, + 0.162, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.47, + 3.17, + 7.579, + 11.132, + 13.232, + 11.375, + 12.873, + 7.425, + 4.595, + 0.449, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.437, + 3.079, + 7.605, + 11.165, + 13.297, + 13.787, + 9.367, + 10.283, + 6.038, + 0.485, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.411, + 3.036, + 7.642, + 11.385, + 13.593, + 14.08, + 13.195, + 10.555, + 6.145, + 0.496, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.49, + 3.095, + 7.721, + 10.412, + 11.919, + 13.988, + 10.748, + 10.481, + 6.267, + 0.556, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.475, + 2.981, + 7.414, + 11.128, + 13.392, + 14.092, + 5.793, + 4.005, + 6.107, + 0.484, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.502, + 2.994, + 6.4, + 7.555, + 13.228, + 0.801, + 5.287, + 2.176, + 3.272, + 0.36, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.415, + 2.886, + 7.502, + 11.257, + 13.597, + 14.182, + 13.254, + 10.638, + 6.314, + 0.574, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.372, + 2.766, + 7.414, + 11.238, + 13.517, + 14.064, + 13.199, + 10.6, + 6.303, + 0.615, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.417, + 2.642, + 7.145, + 10.707, + 12.731, + 13.351, + 12.591, + 10.189, + 6.081, + 0.566, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.458, + 2.669, + 7.102, + 8.705, + 9.881, + 9.776, + 2.218, + 7.864, + 6.198, + 0.2, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.401, + 2.659, + 7.286, + 11.197, + 13.609, + 14.296, + 13.513, + 10.936, + 6.591, + 0.797, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.352, + 2.586, + 7.15, + 10.886, + 13.129, + 13.713, + 12.934, + 10.497, + 6.375, + 0.233, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.439, + 1.949, + 6.876, + 8.98, + 10.403, + 13.54, + 11.709, + 10.438, + 6.297, + 0.767, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.376, + 2.557, + 7.09, + 10.814, + 13.056, + 13.666, + 12.866, + 10.478, + 6.403, + 0.756, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.372, + 2.487, + 6.886, + 10.409, + 12.436, + 13.149, + 12.439, + 10.102, + 6.096, + 0.614, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.507, + 2.446, + 5.095, + 9.256, + 12.797, + 11.032, + 13.187, + 10.791, + 6.558, + 0.635, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.376, + 2.419, + 6.796, + 10.496, + 10.211, + 13.576, + 12.843, + 10.421, + 6.308, + 0.778, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.356, + 2.382, + 6.789, + 10.469, + 12.75, + 13.427, + 8.013, + 8.719, + 2.638, + 0.105, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.311, + 2.301, + 6.637, + 10.413, + 12.734, + 13.434, + 12.775, + 9.332, + 6.309, + 0.359, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.306, + 2.319, + 7.011, + 10.981, + 13.37, + 11.537, + 9.378, + 7.642, + 3.299, + 0.181, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.308, + 2.287, + 6.929, + 10.787, + 11.146, + 12.41, + 13.238, + 10.903, + 6.899, + 1.16, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.281, + 2.17, + 6.615, + 8.633, + 10.351, + 10.293, + 9.033, + 6.916, + 3.347, + 0.195, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.456, + 2.167, + 3.647, + 6.588, + 9.624, + 11.181, + 8.516, + 4.996, + 6.492, + 0.482, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.24, + 2.23, + 5.558, + 6.605, + 4.181, + 3.942, + 1.209, + 2.744, + 2.219, + 0.117, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.428, + 0.21, + 3.639, + 2.308, + 3.387, + 1.377, + 3.014, + 8.037, + 1.641, + 0.99, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.346, + 1.164, + 4.272, + 1.481, + 4.055, + 4.134, + 3.569, + 2.565, + 2.221, + 0.151, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.343, + 2.189, + 6.472, + 10.372, + 12.8, + 10.716, + 9.662, + 10.852, + 5.067, + 1.576, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "size_kw": 30.0, + "lifecycle_om_cost_after_tax_bau": 4692.0, + "name": "roof_west", + "annual_energy_produced_kwh": 45938.58, + "year_one_energy_produced_kwh_bau": 48062.0, + "year_one_energy_produced_kwh": 48062.0, + "annual_energy_exported_kwh": 0.0, + "electric_to_storage_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "electric_curtailed_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "lifecycle_om_cost_after_tax": 4692.0, + "lcoe_per_kwh": 0.0 + }, + { + "electric_to_grid_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "production_factor_series": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022978000000000002, + 0.27288999999999997, + 0.445854, + 0.5465420000000001, + 0.591682, + 0.583673, + 0.5242279999999999, + 0.411019, + 0.236401, + 0.034754, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022653, + 0.276824, + 0.45223599999999997, + 0.5536369999999999, + 0.5995119999999999, + 0.592028, + 0.528977, + 0.416471, + 0.241361, + 0.008482, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022562000000000002, + 0.145619, + 0.4562, + 0.564461, + 0.6166470000000001, + 0.6099439999999999, + 0.5502720000000001, + 0.434185, + 0.254059, + 0.039703, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06387, + 0.280279, + 0.45767, + 0.5616319999999999, + 0.60687, + 0.599073, + 0.539341, + 0.425978, + 0.250363, + 0.039555, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022278, + 0.270249, + 0.443043, + 0.544181, + 0.589649, + 0.582188, + 0.430776, + 0.289503, + 0.24606299999999998, + 0.023436, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024863, + 0.26920299999999997, + 0.433961, + 0.385355, + 0.38497000000000003, + 0.45489999999999997, + 0.5196219999999999, + 0.414036, + 0.247006, + 0.042544, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.058472, + 0.260633, + 0.426284, + 0.527544, + 0.576386, + 0.573664, + 0.52089, + 0.413633, + 0.245071, + 0.044734, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.061723999999999994, + 0.275969, + 0.457096, + 0.567693, + 0.62141, + 0.616001, + 0.556507, + 0.445408, + 0.265272, + 0.052107, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021593, + 0.150088, + 0.449024, + 0.550481, + 0.59936, + 0.594076, + 0.5386559999999999, + 0.43105099999999996, + 0.260469, + 0.054509999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028431, + 0.269183, + 0.441416, + 0.465824, + 0.44329700000000005, + 0.5058670000000001, + 0.363678, + 0.324168, + 0.17225, + 0.024745, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005305, + 0.030978000000000002, + 0.16019, + 0.509293, + 0.5676509999999999, + 0.45764, + 0.415178, + 0.41879, + 0.231256, + 0.056825, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.056552, + 0.262899, + 0.437574, + 0.543254, + 0.594781, + 0.590759, + 0.533532, + 0.42827499999999996, + 0.26207400000000003, + 0.061966, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.058335, + 0.264675, + 0.434864, + 0.5330560000000001, + 0.58327, + 0.582414, + 0.531679, + 0.42980900000000005, + 0.26372500000000004, + 0.062804, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.062623, + 0.27475499999999997, + 0.450786, + 0.554461, + 0.508286, + 0.445257, + 0.39775099999999997, + 0.372865, + 0.218964, + 0.070658, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031313, + 0.256684, + 0.419742, + 0.399716, + 0.471709, + 0.308034, + 0.522432, + 0.199423, + 0.030479, + 0.019586, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.055816000000000004, + 0.253767, + 0.42849200000000004, + 0.5381670000000001, + 0.593552, + 0.5936520000000001, + 0.542314, + 0.43771899999999997, + 0.27098099999999997, + 0.07117, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.058152999999999996, + 0.255591, + 0.421735, + 0.5235449999999999, + 0.577455, + 0.467109, + 0.530111, + 0.430957, + 0.268392, + 0.073744, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.046487, + 0.202721, + 0.268911, + 0.43532499999999996, + 0.481805, + 0.469433, + 0.325589, + 0.286048, + 0.133246, + 0.020788, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.050829, + 0.046491, + 0.174156, + 0.276293, + 0.26412599999999997, + 0.5861580000000001, + 0.5381079999999999, + 0.27710199999999996, + 0.197701, + 0.020732, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0598, + 0.263193, + 0.442423, + 0.5485119999999999, + 0.605111, + 0.280431, + 0.063109, + 0.089338, + 0.009399, + 0.013535, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027816, + 0.137937, + 0.343021, + 0.447851, + 0.47796, + 0.489751, + 0.381742, + 0.287661, + 0.236998, + 0.08838700000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.067565, + 0.275725, + 0.442669, + 0.544751, + 0.602113, + 0.604465, + 0.5524640000000001, + 0.451336, + 0.291688, + 0.089422, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.064446, + 0.264971, + 0.434603, + 0.392749, + 0.482927, + 0.436721, + 0.400306, + 0.351462, + 0.207393, + 0.039549, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019105, + 0.131615, + 0.167436, + 0.24829900000000002, + 0.253054, + 0.266384, + 0.223674, + 0.087664, + 0.046837000000000004, + 0.018527000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0581, + 0.152072, + 0.107938, + 0.17790199999999998, + 0.005713, + 0.580141, + 0.474704, + 0.306535, + 0.09817000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.063698, + 0.17949, + 0.350516, + 0.027392, + 0.47311200000000003, + 0.467771, + 0.382824, + 0.013779999999999999, + 0.293421, + 0.09096299999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.074492, + 0.298854, + 0.489619, + 0.608819, + 0.665207, + 0.6645549999999999, + 0.6121449999999999, + 0.5077889999999999, + 0.33481299999999997, + 0.113911, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08497199999999999, + 0.308612, + 0.492224, + 0.60342, + 0.659079, + 0.658919, + 0.604468, + 0.497025, + 0.329534, + 0.115649, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.084618, + 0.304865, + 0.47912400000000005, + 0.581071, + 0.629161, + 0.625871, + 0.453515, + 0.409361, + 0.20354499999999998, + 0.054633, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036031, + 0.29087, + 0.46480099999999996, + 0.47569900000000004, + 0.519653, + 0.514759, + 0.458504, + 0.379313, + 0.24978, + 0.06993200000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026926, + 0.23562799999999998, + 0.3708, + 0.657019, + 0.661883, + 0.610007, + 0.503558, + 0.336935, + 0.108598, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.070821, + 0.27416199999999996, + 0.448975, + 0.552966, + 0.6066159999999999, + 0.615607, + 0.57377, + 0.481856, + 0.32558499999999996, + 0.11618600000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.090217, + 0.315563, + 0.49589, + 0.507509, + 0.5411180000000001, + 0.513334, + 0.601509, + 0.497702, + 0.340918, + 0.132905, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.096163, + 0.318058, + 0.492362, + 0.597247, + 0.6501760000000001, + 0.648783, + 0.596201, + 0.497319, + 0.341725, + 0.135519, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.092016, + 0.30680799999999997, + 0.479341, + 0.5877140000000001, + 0.640606, + 0.640903, + 0.588313, + 0.489339, + 0.33548300000000003, + 0.13215100000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034573, + 0.17678, + 0.308187, + 0.468813, + 0.514845, + 0.479311, + 0.406145, + 0.37342200000000003, + 0.22059, + 0.06787, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.093773, + 0.303268, + 0.46372800000000003, + 0.571534, + 0.630091, + 0.637439, + 0.503395, + 0.408197, + 0.28252, + 0.098532, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.061799999999999994, + 0.23228100000000002, + 0.36229700000000004, + 0.453062, + 0.547335, + 0.45193, + 0.418584, + 0.324337, + 0.265775, + 0.094868, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.056404, + 0.160153, + 0.310853, + 0.335241, + 0.28818299999999997, + 0.453737, + 0.466209, + 0.28936900000000004, + 0.229859, + 0.068694, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.090783, + 0.22418700000000003, + 0.358185, + 0.39674200000000004, + 0.49299, + 0.16425399999999998, + 0.181268, + 0.105452, + 0.08718600000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024269, + 0.15756299999999998, + 0.089691, + 0.192675, + 0.44923599999999997, + 0.41883, + 0.45, + 0.37295, + 0.27366500000000005, + 0.05136, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.311707, + 0.48760899999999996, + 0.600097, + 0.66269, + 0.669376, + 0.6187290000000001, + 0.520137, + 0.36028899999999997, + 0.148734, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10135, + 0.309293, + 0.33135000000000003, + 0.59323, + 0.6552250000000001, + 0.6597540000000001, + 0.6183529999999999, + 0.5171749999999999, + 0.358772, + 0.015945, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.110244, + 0.328564, + 0.504842, + 0.299254, + 0.673755, + 0.679768, + 0.633096, + 0.532873, + 0.299978, + 0.157957, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.118618, + 0.341825, + 0.5177039999999999, + 0.633687, + 0.694293, + 0.696429, + 0.645895, + 0.541791, + 0.38344799999999996, + 0.16831800000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.055966, + 0.347346, + 0.5123540000000001, + 0.614775, + 0.668671, + 0.66964, + 0.6170990000000001, + 0.517404, + 0.365716, + 0.1628, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.122723, + 0.33569, + 0.502521, + 0.609291, + 0.6653830000000001, + 0.6698500000000001, + 0.621625, + 0.521982, + 0.369787, + 0.162665, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.123127, + 0.338734, + 0.507713, + 0.617544, + 0.6720119999999999, + 0.671558, + 0.6212880000000001, + 0.5191180000000001, + 0.31151100000000004, + 0.053357, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.052573, + 0.227932, + 0.30947800000000003, + 0.40543799999999997, + 0.355527, + 0.22976, + 0.418706, + 0.401428, + 0.290085, + 0.125098, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030052, + 0.023899999999999998, + 0.031553, + 0.10711, + 0.527266, + 0.441151, + 0.5294500000000001, + 0.379682, + 0.17224, + 0.003104, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.13495400000000002, + 0.349676, + 0.510934, + 0.615754, + 0.672307, + 0.6774249999999999, + 0.632533, + 0.5383150000000001, + 0.385633, + 0.179666, + 0.003904, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.133584, + 0.34202899999999997, + 0.494431, + 0.595623, + 0.6588440000000001, + 0.670895, + 0.6317269999999999, + 0.5395890000000001, + 0.39056, + 0.183342, + 0.0050279999999999995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.135927, + 0.138305, + 0.141706, + 0.100103, + 0.45676, + 0.537517, + 0.490485, + 0.379, + 0.282707, + 0.124977, + 0.002519, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.157182, + 0.39447699999999997, + 0.571219, + 0.6866, + 0.7496090000000001, + 0.7556, + 0.70663, + 0.600432, + 0.43700900000000004, + 0.206917, + 0.008874, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.159547, + 0.387934, + 0.553624, + 0.657882, + 0.699131, + 0.6884629999999999, + 0.631644, + 0.542259, + 0.405862, + 0.19830099999999998, + 0.00926, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.15486000000000003, + 0.374213, + 0.543337, + 0.658105, + 0.717752, + 0.721236, + 0.5200309999999999, + 0.118714, + 0.03814, + 0.060388, + 0.008919999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.15516999999999997, + 0.374505, + 0.5353519999999999, + 0.6456989999999999, + 0.705025, + 0.7106079999999999, + 0.662566, + 0.56483, + 0.413461, + 0.198819, + 0.010156, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005118, + 0.396708, + 0.572284, + 0.556077, + 0.577016, + 0.75547, + 0.704306, + 0.597847, + 0.048753, + 0.057662, + 0.003065, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.177535, + 0.412158, + 0.58366, + 0.6958, + 0.756462, + 0.760168, + 0.71075, + 0.605949, + 0.44654000000000005, + 0.008179, + 0.010734, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030795000000000003, + 0.259217, + 0.23462, + 0.322512, + 0.461189, + 0.080301, + 0.445406, + 0.286831, + 0.092908, + 0.113111, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.069318, + 0.24738200000000002, + 0.325633, + 0.41318900000000003, + 0.517983, + 0.44802800000000004, + 0.41850099999999996, + 0.295938, + 0.202648, + 0.088953, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0012909999999999998, + 0.09683499999999999, + 0.251491, + 0.398411, + 0.5504049999999999, + 0.5691219999999999, + 0.543, + 0.6053160000000001, + 0.452526, + 0.269584, + 0.111288, + 0.005171, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006144, + 0.177758, + 0.39155, + 0.402166, + 0.531193, + 0.569882, + 0.589491, + 0.455673, + 0.395069, + 0.406826, + 0.203746, + 0.016051, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007905, + 0.184586, + 0.394318, + 0.534432, + 0.632212, + 0.476845, + 0.690689, + 0.648095, + 0.462375, + 0.40652699999999997, + 0.117973, + 0.016797, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003424, + 0.104625, + 0.250387, + 0.33493, + 0.638423, + 0.690736, + 0.564935, + 0.656146, + 0.556631, + 0.407584, + 0.20638399999999998, + 0.018708, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009958, + 0.19759800000000002, + 0.419371, + 0.576944, + 0.565112, + 0.599621, + 0.5453640000000001, + 0.5308630000000001, + 0.492223, + 0.345253, + 0.221903, + 0.008977, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012955, + 0.21387299999999998, + 0.43934300000000004, + 0.599375, + 0.70153, + 0.7471939999999999, + 0.740663, + 0.6875330000000001, + 0.5877169999999999, + 0.436877, + 0.182532, + 0.018968, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008298, + 0.163119, + 0.421695, + 0.572865, + 0.6701459999999999, + 0.708371, + 0.6888529999999999, + 0.6266649999999999, + 0.544385, + 0.32863, + 0.175871, + 0.02361, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015291, + 0.209602, + 0.32827100000000003, + 0.571808, + 0.673644, + 0.722773, + 0.7194940000000001, + 0.671988, + 0.570326, + 0.42275, + 0.218978, + 0.027053, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017005, + 0.14236000000000001, + 0.30988600000000005, + 0.5986480000000001, + 0.581332, + 0.571936, + 0.620871, + 0.520115, + 0.453101, + 0.295776, + 0.171549, + 0.022775, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020716000000000002, + 0.222038, + 0.440744, + 0.597726, + 0.702284, + 0.7506849999999999, + 0.746171, + 0.6891889999999999, + 0.586337, + 0.435887, + 0.22781200000000001, + 0.031432, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023548, + 0.222624, + 0.436303, + 0.5883160000000001, + 0.691258, + 0.741501, + 0.743193, + 0.691493, + 0.588292, + 0.439447, + 0.232567, + 0.033536, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028154, + 0.23184200000000002, + 0.441818, + 0.5843440000000001, + 0.67253, + 0.7170230000000001, + 0.715776, + 0.6719360000000001, + 0.579322, + 0.434553, + 0.23178200000000002, + 0.034383000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03032, + 0.234348, + 0.45109699999999997, + 0.602428, + 0.706098, + 0.752413, + 0.744544, + 0.692391, + 0.5860789999999999, + 0.436076, + 0.232815, + 0.035353, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.032142000000000004, + 0.226786, + 0.429745, + 0.559917, + 0.650331, + 0.685116, + 0.699664, + 0.663322, + 0.5753659999999999, + 0.43664400000000003, + 0.23805500000000002, + 0.037380000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03741, + 0.249372, + 0.465603, + 0.6171760000000001, + 0.721192, + 0.772442, + 0.7699969999999999, + 0.71634, + 0.6148429999999999, + 0.41246499999999997, + 0.184438, + 0.032187, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.041436999999999995, + 0.258249, + 0.479285, + 0.633405, + 0.7324039999999999, + 0.77564, + 0.764101, + 0.7046720000000001, + 0.60539, + 0.45637900000000003, + 0.251317, + 0.042522, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.043442, + 0.261204, + 0.479028, + 0.628995, + 0.727423, + 0.7704249999999999, + 0.7588680000000001, + 0.695432, + 0.590086, + 0.44477, + 0.247013, + 0.043025, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023710000000000002, + 0.156916, + 0.290146, + 0.552496, + 0.615418, + 0.594812, + 0.589144, + 0.557578, + 0.423031, + 0.437151, + 0.241738, + 0.042901, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.046208, + 0.248043, + 0.44692200000000004, + 0.588581, + 0.682535, + 0.731596, + 0.732162, + 0.685685, + 0.585053, + 0.43715699999999996, + 0.236922, + 0.042259, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.048606, + 0.244159, + 0.438972, + 0.571936, + 0.645571, + 0.6850890000000001, + 0.701557, + 0.670985, + 0.583451, + 0.44072100000000003, + 0.24191300000000002, + 0.044289, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.052875, + 0.254266, + 0.3458, + 0.449639, + 0.6412279999999999, + 0.609991, + 0.596832, + 0.537481, + 0.495557, + 0.42534500000000003, + 0.179044, + 0.035669, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.05232, + 0.24854099999999998, + 0.341986, + 0.518261, + 0.686274, + 0.725561, + 0.714306, + 0.659125, + 0.420927, + 0.37704899999999997, + 0.185391, + 0.044886, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.055176, + 0.25230199999999997, + 0.44215, + 0.581354, + 0.693191, + 0.745133, + 0.746006, + 0.613351, + 0.5890650000000001, + 0.444975, + 0.24378, + 0.047523, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.062491, + 0.274924, + 0.48180900000000004, + 0.633382, + 0.737687, + 0.7884629999999999, + 0.188622, + 0.456774, + 0.45382, + 0.29539, + 0.114509, + 0.050733, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.064452, + 0.27839800000000003, + 0.481527, + 0.625073, + 0.7130850000000001, + 0.7543540000000001, + 0.759017, + 0.709175, + 0.607936, + 0.457104, + 0.12157899999999999, + 0.051923000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06675, + 0.27018000000000003, + 0.45982799999999996, + 0.5907340000000001, + 0.6726, + 0.626512, + 0.625633, + 0.57292, + 0.52491, + 0.426621, + 0.238881, + 0.051368000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06825400000000001, + 0.166576, + 0.337752, + 0.585789, + 0.692699, + 0.7125969999999999, + 0.5616319999999999, + 0.5876269999999999, + 0.5863590000000001, + 0.410388, + 0.17171899999999998, + 0.037293, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08026699999999999, + 0.311736, + 0.519514, + 0.66683, + 0.763806, + 0.8092659999999999, + 0.80059, + 0.740795, + 0.636042, + 0.481125, + 0.272969, + 0.05887, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.078956, + 0.29339, + 0.49027699999999996, + 0.6343759999999999, + 0.734832, + 0.7843730000000001, + 0.782467, + 0.735336, + 0.631993, + 0.477341, + 0.004889999999999999, + 0.0024980000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08752800000000001, + 0.32083999999999996, + 0.531154, + 0.680622, + 0.780645, + 0.8288110000000001, + 0.818589, + 0.760168, + 0.648649, + 0.491788, + 0.278853, + 0.062253, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.089488, + 0.315118, + 0.513361, + 0.654596, + 0.742654, + 0.778299, + 0.7636989999999999, + 0.593854, + 0.6107809999999999, + 0.46488, + 0.268236, + 0.062068, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08800100000000001, + 0.296363, + 0.401084, + 0.490665, + 0.657942, + 0.707991, + 0.720861, + 0.683225, + 0.594764, + 0.452683, + 0.26132, + 0.061418999999999994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09269, + 0.30482299999999996, + 0.339094, + 0.5310940000000001, + 0.7175549999999999, + 0.768336, + 0.7704589999999999, + 0.721499, + 0.622015, + 0.474979, + 0.27276100000000003, + 0.065489, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.099105, + 0.324137, + 0.527339, + 0.6756449999999999, + 0.768229, + 0.813423, + 0.8105209999999999, + 0.754867, + 0.647179, + 0.30854899999999996, + 0.2767, + 0.06858, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.105159, + 0.33068200000000003, + 0.532682, + 0.6793899999999999, + 0.778357, + 0.817264, + 0.807366, + 0.746788, + 0.638291, + 0.48389499999999996, + 0.277932, + 0.070545, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10826300000000001, + 0.33305599999999996, + 0.526687, + 0.664145, + 0.7474729999999999, + 0.7780739999999999, + 0.7610030000000001, + 0.705448, + 0.611265, + 0.473163, + 0.277534, + 0.070842, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07944, + 0.31741800000000003, + 0.495967, + 0.629851, + 0.720111, + 0.7658769999999999, + 0.761985, + 0.7114, + 0.609758, + 0.46101400000000003, + 0.271666, + 0.069745, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.109413, + 0.320778, + 0.500403, + 0.637115, + 0.7269450000000001, + 0.7744460000000001, + 0.775124, + 0.726168, + 0.621904, + 0.46916800000000003, + 0.247685, + 0.06397, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.116779, + 0.33581599999999995, + 0.5215660000000001, + 0.657805, + 0.753876, + 0.800246, + 0.799304, + 0.743024, + 0.638557, + 0.487832, + 0.287506, + 0.074242, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00039600000000000003, + 0.33508499999999997, + 0.315492, + 0.6711609999999999, + 0.15106299999999998, + 0.433596, + 0.8086810000000001, + 0.751201, + 0.5493049999999999, + 0.339786, + 0.061509, + 0.0025710000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.120556, + 0.33857, + 0.315758, + 0.669653, + 0.7632279999999999, + 0.8055739999999999, + 0.679415, + 0.735764, + 0.375935, + 0.190462, + 0.16362200000000002, + 0.036721, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00040100000000000004, + 0.33282, + 0.5311130000000001, + 0.16630899999999998, + 0.020974, + 0.067363, + 0.031985, + 0.12269100000000001, + 0.12139, + 0.221413, + 0.079731, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.085728, + 0.36663, + 0.56172, + 0.7031459999999999, + 0.788147, + 0.827765, + 0.814667, + 0.752943, + 0.645499, + 0.496529, + 0.294537, + 0.07916500000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0019850000000000002, + 0.12825299999999998, + 0.344555, + 0.521257, + 0.642079, + 0.704152, + 0.726666, + 0.734059, + 0.6994049999999999, + 0.6122089999999999, + 0.475781, + 0.282342, + 0.078566, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0024860000000000004, + 0.129666, + 0.341979, + 0.514204, + 0.637827, + 0.714459, + 0.7427659999999999, + 0.725581, + 0.682313, + 0.5966330000000001, + 0.462808, + 0.278949, + 0.078737, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002931, + 0.130802, + 0.341043, + 0.5051410000000001, + 0.61624, + 0.680727, + 0.714862, + 0.7262430000000001, + 0.693217, + 0.604402, + 0.466887, + 0.28166399999999997, + 0.078515, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005351, + 0.103737, + 0.340779, + 0.512291, + 0.533926, + 0.603131, + 0.750169, + 0.741364, + 0.6948049999999999, + 0.6015539999999999, + 0.464293, + 0.222612, + 0.07900700000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0048200000000000005, + 0.136212, + 0.348911, + 0.52075, + 0.638338, + 0.7057749999999999, + 0.728272, + 0.7036359999999999, + 0.64238, + 0.555282, + 0.433651, + 0.25991000000000003, + 0.077809, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0039169999999999995, + 0.132902, + 0.327289, + 0.49943099999999996, + 0.623662, + 0.714466, + 0.7379819999999999, + 0.7120019999999999, + 0.645931, + 0.547905, + 0.434427, + 0.269776, + 0.078567, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004395, + 0.140253, + 0.346389, + 0.506982, + 0.620054, + 0.6866369999999999, + 0.7093189999999999, + 0.700067, + 0.657883, + 0.5763400000000001, + 0.449305, + 0.276812, + 0.08149200000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0044800000000000005, + 0.14174799999999999, + 0.340475, + 0.49417500000000003, + 0.6169669999999999, + 0.705382, + 0.744146, + 0.741552, + 0.6948869999999999, + 0.6003229999999999, + 0.46051299999999995, + 0.284065, + 0.084875, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005914, + 0.14931999999999998, + 0.358197, + 0.526503, + 0.647513, + 0.730099, + 0.769931, + 0.762496, + 0.722365, + 0.624736, + 0.484547, + 0.299467, + 0.090544, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008154999999999999, + 0.08208700000000001, + 0.35286399999999996, + 0.503592, + 0.648299, + 0.626173, + 0.383484, + 0.446698, + 0.475339, + 0.178368, + 0.163679, + 0.104948, + 0.027759, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09802899999999999, + 0.259078, + 0.32610500000000003, + 0.381897, + 0.189616, + 0.476332, + 0.603183, + 0.537755, + 0.324527, + 0.35591500000000004, + 0.215447, + 0.08920499999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008484, + 0.155226, + 0.365468, + 0.537476, + 0.66938, + 0.755377, + 0.7961739999999999, + 0.78983, + 0.380897, + 0.472947, + 0.205452, + 0.120952, + 0.021072, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010284000000000001, + 0.16378600000000001, + 0.379092, + 0.549883, + 0.674282, + 0.7544270000000001, + 0.784396, + 0.763225, + 0.704767, + 0.604391, + 0.470884, + 0.28860800000000003, + 0.092624, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011672, + 0.16034, + 0.368438, + 0.539048, + 0.6661180000000001, + 0.7510399999999999, + 0.771501, + 0.7412880000000001, + 0.676354, + 0.577233, + 0.45210300000000003, + 0.28647500000000004, + 0.093061, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013548, + 0.162237, + 0.36579, + 0.53099, + 0.649633, + 0.718287, + 0.735898, + 0.709253, + 0.6583920000000001, + 0.574806, + 0.452233, + 0.278528, + 0.09145099999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014098000000000001, + 0.16071100000000002, + 0.355671, + 0.501487, + 0.6196309999999999, + 0.7067129999999999, + 0.748565, + 0.746015, + 0.698871, + 0.602509, + 0.463026, + 0.299421, + 0.096711, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014199, + 0.168587, + 0.37761399999999995, + 0.541717, + 0.658953, + 0.730346, + 0.7464299999999999, + 0.709284, + 0.651704, + 0.587295, + 0.465312, + 0.29039499999999996, + 0.095122, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015702999999999998, + 0.16558799999999999, + 0.367365, + 0.526586, + 0.6380309999999999, + 0.7057559999999999, + 0.7220610000000001, + 0.6947129999999999, + 0.65732, + 0.5859650000000001, + 0.460868, + 0.285677, + 0.094719, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015663, + 0.160244, + 0.360363, + 0.518244, + 0.630502, + 0.7020270000000001, + 0.721552, + 0.704256, + 0.647636, + 0.566264, + 0.443056, + 0.27703300000000003, + 0.094347, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017818, + 0.161547, + 0.348586, + 0.48762900000000003, + 0.594683, + 0.6775890000000001, + 0.717635, + 0.718139, + 0.674953, + 0.588174, + 0.45766199999999996, + 0.28566199999999997, + 0.09751699999999999, + 0.000884, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019586, + 0.171746, + 0.371196, + 0.505783, + 0.570112, + 0.6657609999999999, + 0.666184, + 0.766402, + 0.7146330000000001, + 0.5055149999999999, + 0.42571800000000004, + 0.264512, + 0.09479800000000001, + 0.001592, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023765, + 0.168226, + 0.314747, + 0.48953199999999997, + 0.6566609999999999, + 0.733024, + 0.775652, + 0.294155, + 0.34824099999999997, + 0.638282, + 0.498584, + 0.22563, + 0.111778, + 0.001849, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027780000000000003, + 0.17932900000000002, + 0.384343, + 0.281111, + 0.682115, + 0.768111, + 0.807403, + 0.712447, + 0.364597, + 0.082512, + 0.42072000000000004, + 0.228365, + 0.110783, + 0.002996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024001, + 0.187811, + 0.39814499999999997, + 0.563, + 0.491871, + 0.760876, + 0.787202, + 0.770135, + 0.511757, + 0.503337, + 0.470674, + 0.294127, + 0.104197, + 0.00276, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025634, + 0.17385599999999998, + 0.360719, + 0.511978, + 0.628001, + 0.7070660000000001, + 0.749035, + 0.745674, + 0.699461, + 0.60202, + 0.46660700000000005, + 0.290762, + 0.106836, + 0.002242, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030077000000000003, + 0.177895, + 0.368394, + 0.527759, + 0.65099, + 0.739336, + 0.78059, + 0.774771, + 0.7191230000000001, + 0.624389, + 0.48478, + 0.304426, + 0.10920099999999999, + 0.003985, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02982, + 0.182881, + 0.377786, + 0.532938, + 0.655054, + 0.738601, + 0.777452, + 0.770897, + 0.721355, + 0.6283719999999999, + 0.491968, + 0.31301, + 0.112516, + 0.0045780000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027966, + 0.188729, + 0.390241, + 0.549544, + 0.669653, + 0.7602380000000001, + 0.7978310000000001, + 0.78787, + 0.734248, + 0.637231, + 0.498815, + 0.316668, + 0.114202, + 0.0031269999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.029353, + 0.209994, + 0.429993, + 0.5952569999999999, + 0.712356, + 0.7816649999999999, + 0.811209, + 0.794807, + 0.735446, + 0.643344, + 0.506985, + 0.325111, + 0.120192, + 0.004144999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.032761000000000005, + 0.197406, + 0.405572, + 0.565692, + 0.6842050000000001, + 0.762223, + 0.798749, + 0.7916799999999999, + 0.7388790000000001, + 0.643138, + 0.5050520000000001, + 0.322899, + 0.120985, + 0.0054, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036361, + 0.193815, + 0.398789, + 0.564962, + 0.693448, + 0.7761849999999999, + 0.812235, + 0.712507, + 0.167505, + 0.48988299999999996, + 0.503308, + 0.317582, + 0.11928, + 0.005496, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.035205, + 0.19121000000000002, + 0.389172, + 0.548788, + 0.6688390000000001, + 0.747393, + 0.78587, + 0.7790860000000001, + 0.7334189999999999, + 0.637138, + 0.406315, + 0.27494, + 0.108342, + 0.007724, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034149, + 0.190958, + 0.391731, + 0.559068, + 0.688788, + 0.774586, + 0.81349, + 0.807757, + 0.750432, + 0.6541119999999999, + 0.514418, + 0.331288, + 0.12529099999999999, + 0.005084, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031354, + 0.199011, + 0.403476, + 0.558457, + 0.664685, + 0.7215069999999999, + 0.742147, + 0.728673, + 0.6881799999999999, + 0.6027830000000001, + 0.47908300000000004, + 0.312613, + 0.120687, + 0.004825, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031899000000000004, + 0.201569, + 0.40648700000000004, + 0.560793, + 0.672029, + 0.739583, + 0.761017, + 0.7408250000000001, + 0.682249, + 0.585124, + 0.467391, + 0.312076, + 0.121537, + 0.00521, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.032219000000000005, + 0.196378, + 0.39269400000000004, + 0.5413490000000001, + 0.652509, + 0.713539, + 0.7286950000000001, + 0.7007380000000001, + 0.6407999999999999, + 0.5752970000000001, + 0.46989600000000004, + 0.308466, + 0.120066, + 0.005534, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031833, + 0.191333, + 0.37551999999999996, + 0.514594, + 0.6312989999999999, + 0.711431, + 0.751192, + 0.7492859999999999, + 0.703858, + 0.614596, + 0.48463799999999996, + 0.314851, + 0.12098600000000001, + 0.004995, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031925, + 0.197052, + 0.38814800000000005, + 0.524762, + 0.626928, + 0.692374, + 0.716143, + 0.7076140000000001, + 0.661907, + 0.584851, + 0.469053, + 0.306459, + 0.121005, + 0.005863, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.033595, + 0.18772, + 0.371257, + 0.515101, + 0.626413, + 0.7079650000000001, + 0.7441380000000001, + 0.7432519999999999, + 0.698558, + 0.611916, + 0.485512, + 0.319841, + 0.126107, + 0.005994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03284, + 0.19814400000000001, + 0.290743, + 0.547235, + 0.668337, + 0.5950030000000001, + 0.781571, + 0.7700779999999999, + 0.720268, + 0.63188, + 0.49784300000000004, + 0.326458, + 0.128452, + 0.0070599999999999994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.037232999999999995, + 0.203264, + 0.40596699999999997, + 0.5646939999999999, + 0.6863239999999999, + 0.766539, + 0.802354, + 0.79383, + 0.7449990000000001, + 0.6507580000000001, + 0.5147419999999999, + 0.33799, + 0.13438, + 0.007757, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.041719, + 0.205837, + 0.403714, + 0.562225, + 0.68536, + 0.770467, + 0.8036190000000001, + 0.794658, + 0.741831, + 0.646501, + 0.511359, + 0.334588, + 0.1348, + 0.009633, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.04112, + 0.200904, + 0.39056799999999997, + 0.53426, + 0.642923, + 0.719899, + 0.747913, + 0.737051, + 0.695397, + 0.611998, + 0.490318, + 0.326181, + 0.13218000000000002, + 0.009722, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.037342, + 0.199108, + 0.386202, + 0.529931, + 0.63807, + 0.70993, + 0.734398, + 0.719234, + 0.675148, + 0.594846, + 0.474974, + 0.313772, + 0.129152, + 0.009791000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038433, + 0.196039, + 0.375925, + 0.517062, + 0.630891, + 0.7089249999999999, + 0.743894, + 0.738548, + 0.55279, + 0.606056, + 0.479606, + 0.285516, + 0.126634, + 0.011359, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036768, + 0.15032900000000002, + 0.38269600000000004, + 0.525587, + 0.633947, + 0.710306, + 0.7484339999999999, + 0.74164, + 0.696926, + 0.611206, + 0.48445900000000003, + 0.322266, + 0.133146, + 0.011651, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.035557000000000005, + 0.140129, + 0.275218, + 0.281443, + 0.555212, + 0.6315449999999999, + 0.538423, + 0.37727999999999995, + 0.13103, + 0.4337, + 0.204493, + 0.322255, + 0.12813999999999998, + 0.013416, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036653, + 0.182499, + 0.368115, + 0.527369, + 0.6296029999999999, + 0.699947, + 0.7440410000000001, + 0.678689, + 0.5085149999999999, + 0.525531, + 0.44005099999999997, + 0.255466, + 0.109786, + 0.014183999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036136, + 0.14699500000000001, + 0.288489, + 0.24065799999999998, + 0.49988900000000003, + 0.578037, + 0.650356, + 0.63781, + 0.596899, + 0.30871699999999996, + 0.27147000000000004, + 0.195782, + 0.079908, + 0.01413, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038274, + 0.18654300000000001, + 0.370752, + 0.51515, + 0.626788, + 0.691193, + 0.7007329999999999, + 0.6703049999999999, + 0.622845, + 0.5563400000000001, + 0.45074400000000003, + 0.298825, + 0.13105799999999998, + 0.014851000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038943, + 0.189664, + 0.370415, + 0.510782, + 0.621888, + 0.698824, + 0.73695, + 0.736352, + 0.69389, + 0.608862, + 0.48343, + 0.32593700000000003, + 0.138957, + 0.015052, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025207, + 0.086544, + 0.2025, + 0.14699500000000001, + 0.178921, + 0.595679, + 0.511918, + 0.746797, + 0.712818, + 0.496055, + 0.49797, + 0.328073, + 0.142975, + 0.016474, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.041927, + 0.198898, + 0.393727, + 0.550537, + 0.6721630000000001, + 0.752691, + 0.791807, + 0.78639, + 0.738726, + 0.645733, + 0.5130410000000001, + 0.34267200000000003, + 0.146853, + 0.017783999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.042822000000000006, + 0.218983, + 0.42624900000000004, + 0.585924, + 0.714679, + 0.796581, + 0.833333, + 0.825641, + 0.768677, + 0.673288, + 0.537254, + 0.365889, + 0.158408, + 0.016905999999999997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.04112, + 0.222062, + 0.43511500000000003, + 0.5996760000000001, + 0.723688, + 0.800942, + 0.823935, + 0.770372, + 0.7555660000000001, + 0.6604990000000001, + 0.5272519999999999, + 0.356379, + 0.154811, + 0.016048, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.039738, + 0.211647, + 0.410432, + 0.561813, + 0.668283, + 0.731834, + 0.7558980000000001, + 0.7365499999999999, + 0.680978, + 0.5893010000000001, + 0.475823, + 0.331582, + 0.146741, + 0.01765, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.040382, + 0.205578, + 0.396413, + 0.54189, + 0.649263, + 0.7105090000000001, + 0.7303, + 0.715977, + 0.676191, + 0.603606, + 0.488602, + 0.335844, + 0.148165, + 0.017107, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038153, + 0.195684, + 0.380589, + 0.527771, + 0.645433, + 0.726718, + 0.766889, + 0.765923, + 0.72449, + 0.6376000000000001, + 0.510811, + 0.348852, + 0.153234, + 0.017542000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.040301000000000003, + 0.21276499999999998, + 0.397152, + 0.5613859999999999, + 0.657985, + 0.736112, + 0.799551, + 0.793873, + 0.743774, + 0.653672, + 0.52134, + 0.354842, + 0.15535, + 0.019489, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.041442, + 0.20097900000000002, + 0.40434800000000004, + 0.555787, + 0.6736019999999999, + 0.7528590000000001, + 0.7892509999999999, + 0.783377, + 0.734248, + 0.642808, + 0.512617, + 0.349675, + 0.15282099999999998, + 0.018852, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.040202, + 0.20501499999999998, + 0.39755, + 0.540271, + 0.639068, + 0.692349, + 0.700532, + 0.688028, + 0.6645460000000001, + 0.602483, + 0.488937, + 0.33738999999999997, + 0.149673, + 0.020681, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.040042, + 0.197246, + 0.37905399999999995, + 0.5143049999999999, + 0.6287820000000001, + 0.707105, + 0.7448049999999999, + 0.743107, + 0.7003659999999999, + 0.616591, + 0.486174, + 0.33345400000000003, + 0.143232, + 0.018938, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038765999999999995, + 0.197042, + 0.387881, + 0.538791, + 0.657811, + 0.7370359999999999, + 0.774551, + 0.770784, + 0.7249329999999999, + 0.63695, + 0.509798, + 0.34986900000000004, + 0.154938, + 0.019857, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.041406, + 0.19886099999999998, + 0.388235, + 0.535121, + 0.6438630000000001, + 0.705975, + 0.725391, + 0.714668, + 0.678412, + 0.606443, + 0.491455, + 0.340374, + 0.152591, + 0.021883, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.040060000000000005, + 0.19684100000000002, + 0.387821, + 0.5342619999999999, + 0.637538, + 0.692408, + 0.7136520000000001, + 0.7049460000000001, + 0.6715800000000001, + 0.602635, + 0.4875, + 0.337202, + 0.15294999999999997, + 0.021945, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.043266, + 0.192819, + 0.37493400000000005, + 0.514085, + 0.619599, + 0.692432, + 0.731464, + 0.731559, + 0.690725, + 0.602467, + 0.48736399999999996, + 0.33621100000000004, + 0.15224100000000002, + 0.021474, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.039131, + 0.191453, + 0.37524, + 0.5184489999999999, + 0.624524, + 0.693374, + 0.721629, + 0.719843, + 0.684012, + 0.6048920000000001, + 0.486957, + 0.333826, + 0.151323, + 0.020812999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.037859000000000004, + 0.19366999999999998, + 0.381596, + 0.526567, + 0.638955, + 0.714146, + 0.751456, + 0.748071, + 0.7045220000000001, + 0.620471, + 0.498634, + 0.343065, + 0.154632, + 0.020844, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.035847000000000004, + 0.19053299999999998, + 0.376516, + 0.517941, + 0.626421, + 0.7018220000000001, + 0.739202, + 0.738702, + 0.6984400000000001, + 0.61653, + 0.495889, + 0.343176, + 0.155891, + 0.020914000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034868, + 0.189607, + 0.373081, + 0.512719, + 0.619819, + 0.676603, + 0.7242970000000001, + 0.730967, + 0.692896, + 0.613929, + 0.48014, + 0.328728, + 0.152944, + 0.019939, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.033680999999999996, + 0.16467400000000001, + 0.319664, + 0.461029, + 0.618574, + 0.6915159999999999, + 0.7179, + 0.716426, + 0.605262, + 0.549984, + 0.431166, + 0.26499, + 0.14321199999999998, + 0.021338, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.033055, + 0.158804, + 0.333644, + 0.475215, + 0.588523, + 0.71125, + 0.725481, + 0.70569, + 0.695136, + 0.6300159999999999, + 0.506945, + 0.351519, + 0.159383, + 0.020635999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.033642000000000005, + 0.180592, + 0.35109199999999996, + 0.478918, + 0.5865560000000001, + 0.660199, + 0.6980270000000001, + 0.696112, + 0.655494, + 0.37572300000000003, + 0.231172, + 0.316745, + 0.14757900000000002, + 0.022646, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.033409999999999995, + 0.178671, + 0.357849, + 0.50072, + 0.609645, + 0.686665, + 0.724547, + 0.725538, + 0.685388, + 0.605172, + 0.485137, + 0.33492, + 0.153879, + 0.022616, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.034295, + 0.18945099999999998, + 0.3822, + 0.536862, + 0.659258, + 0.744155, + 0.783871, + 0.7787029999999999, + 0.7316630000000001, + 0.6435420000000001, + 0.515283, + 0.35550099999999996, + 0.161887, + 0.021529, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.037520000000000005, + 0.197154, + 0.39357400000000003, + 0.5398099999999999, + 0.642197, + 0.699843, + 0.730161, + 0.732009, + 0.6996359999999999, + 0.627283, + 0.509817, + 0.35464999999999997, + 0.161286, + 0.02129, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031948, + 0.188439, + 0.37681, + 0.513817, + 0.614227, + 0.689768, + 0.733209, + 0.738884, + 0.702857, + 0.624936, + 0.505193, + 0.35572699999999996, + 0.162479, + 0.017716000000000003, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028822, + 0.195447, + 0.393019, + 0.5397329999999999, + 0.645183, + 0.704693, + 0.73956, + 0.739881, + 0.7017279999999999, + 0.6262190000000001, + 0.50915, + 0.355665, + 0.16354400000000002, + 0.018168, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028170999999999998, + 0.195689, + 0.39605399999999996, + 0.546616, + 0.65837, + 0.729157, + 0.766378, + 0.763892, + 0.722227, + 0.640786, + 0.51985, + 0.362557, + 0.165882, + 0.017826, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027849, + 0.193765, + 0.39143700000000003, + 0.5340499999999999, + 0.627211, + 0.6825249999999999, + 0.711657, + 0.7111559999999999, + 0.676004, + 0.6043440000000001, + 0.494711, + 0.346157, + 0.15918100000000002, + 0.016695, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026806, + 0.187631, + 0.374859, + 0.503897, + 0.586672, + 0.656679, + 0.5724859999999999, + 0.700259, + 0.640009, + 0.5685119999999999, + 0.45714499999999997, + 0.325433, + 0.149855, + 0.021518000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.029771000000000002, + 0.167203, + 0.34266800000000003, + 0.480284, + 0.585948, + 0.657707, + 0.692002, + 0.689659, + 0.587314, + 0.587776, + 0.473223, + 0.323367, + 0.147375, + 0.021834, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.033407, + 0.159736, + 0.335692, + 0.47524099999999997, + 0.5831069999999999, + 0.658111, + 0.699041, + 0.61314, + 0.583372, + 0.585461, + 0.470721, + 0.322364, + 0.14804900000000001, + 0.023818000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028475, + 0.169211, + 0.356615, + 0.506901, + 0.622581, + 0.7033579999999999, + 0.742394, + 0.7405900000000001, + 0.704444, + 0.6230289999999999, + 0.501395, + 0.346339, + 0.156408, + 0.017728999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024974, + 0.175667, + 0.368088, + 0.521645, + 0.640152, + 0.719812, + 0.7597849999999999, + 0.758857, + 0.716019, + 0.6316, + 0.509522, + 0.356269, + 0.161958, + 0.017498, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0265, + 0.171648, + 0.358034, + 0.504274, + 0.61488, + 0.6888540000000001, + 0.7294039999999999, + 0.7289439999999999, + 0.693065, + 0.610286, + 0.48495499999999997, + 0.332512, + 0.152704, + 0.023977000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022515999999999998, + 0.084023, + 0.277282, + 0.204399, + 0.533362, + 0.5530109999999999, + 0.496407, + 0.536986, + 0.506528, + 0.290825, + 0.377672, + 0.273443, + 0.10129200000000001, + 0.020077, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.029623999999999998, + 0.169984, + 0.35880900000000004, + 0.519102, + 0.644633, + 0.735249, + 0.774864, + 0.7689239999999999, + 0.7279500000000001, + 0.646058, + 0.52147, + 0.361056, + 0.163673, + 0.016846, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022645, + 0.174845, + 0.371355, + 0.523745, + 0.636038, + 0.711097, + 0.749275, + 0.747565, + 0.709711, + 0.631049, + 0.510715, + 0.3525, + 0.15849000000000002, + 0.015778, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020832999999999997, + 0.17463900000000002, + 0.368286, + 0.5166069999999999, + 0.6230829999999999, + 0.69323, + 0.733054, + 0.730793, + 0.6929460000000001, + 0.614465, + 0.49593400000000004, + 0.341185, + 0.152788, + 0.016417, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006144, + 0.07465000000000001, + 0.270973, + 0.37614, + 0.463733, + 0.323115, + 0.416686, + 0.418754, + 0.47887799999999997, + 0.5608730000000001, + 0.455164, + 0.325289, + 0.14563900000000002, + 0.017425, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008376, + 0.096971, + 0.333249, + 0.47708300000000003, + 0.5870700000000001, + 0.667234, + 0.705943, + 0.7063740000000001, + 0.6654779999999999, + 0.589662, + 0.472858, + 0.320355, + 0.14424700000000001, + 0.017287, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020425000000000002, + 0.15854, + 0.34454, + 0.49261900000000003, + 0.607958, + 0.687275, + 0.727647, + 0.726949, + 0.689226, + 0.6100140000000001, + 0.49165499999999995, + 0.338763, + 0.150404, + 0.015352000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018639, + 0.165161, + 0.359976, + 0.511953, + 0.6245689999999999, + 0.700379, + 0.740152, + 0.7385900000000001, + 0.6966950000000001, + 0.616583, + 0.496722, + 0.341349, + 0.15143299999999998, + 0.015276999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017901, + 0.16643799999999997, + 0.363272, + 0.517631, + 0.635094, + 0.713886, + 0.755038, + 0.752393, + 0.7103630000000001, + 0.62615, + 0.502616, + 0.34526100000000004, + 0.151745, + 0.013311, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016861, + 0.16393100000000002, + 0.357118, + 0.510175, + 0.627952, + 0.712211, + 0.755189, + 0.755255, + 0.71515, + 0.633672, + 0.51157, + 0.353733, + 0.15578399999999998, + 0.012785999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016267, + 0.166452, + 0.36075, + 0.5108469999999999, + 0.628792, + 0.711665, + 0.7528210000000001, + 0.7519710000000001, + 0.71325, + 0.6281749999999999, + 0.504735, + 0.348151, + 0.152898, + 0.012986000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016765000000000002, + 0.16118700000000002, + 0.350588, + 0.5028210000000001, + 0.6194550000000001, + 0.6994199999999999, + 0.738958, + 0.7347469999999999, + 0.697543, + 0.6142029999999999, + 0.491095, + 0.334322, + 0.14533000000000001, + 0.013602, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017179, + 0.150042, + 0.332447, + 0.478684, + 0.5913390000000001, + 0.669427, + 0.710054, + 0.706696, + 0.6671119999999999, + 0.585976, + 0.46509500000000004, + 0.315475, + 0.132756, + 0.008747, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002205, + 0.060121, + 0.06674200000000001, + 0.061644, + 0.5719059999999999, + 0.574131, + 0.665625, + 0.057652999999999996, + 0.18019200000000002, + 0.15434, + 0.020325, + 0.11923600000000001, + 0.014959, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016055, + 0.14385499999999998, + 0.32550999999999997, + 0.468585, + 0.5821810000000001, + 0.6652619999999999, + 0.707637, + 0.709312, + 0.671417, + 0.59437, + 0.47650400000000004, + 0.323766, + 0.13886, + 0.012132, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013907, + 0.15060300000000001, + 0.338698, + 0.490125, + 0.6058819999999999, + 0.687158, + 0.7290249999999999, + 0.728403, + 0.692297, + 0.609715, + 0.487755, + 0.326013, + 0.13918799999999998, + 0.011949, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013433, + 0.147872, + 0.33881, + 0.490784, + 0.6050829999999999, + 0.68032, + 0.7208, + 0.723591, + 0.6853440000000001, + 0.60637, + 0.487599, + 0.328384, + 0.139934, + 0.010964, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01367, + 0.143287, + 0.32917599999999997, + 0.479076, + 0.5934510000000001, + 0.6749120000000001, + 0.715701, + 0.714788, + 0.679074, + 0.5981029999999999, + 0.476885, + 0.319809, + 0.134625, + 0.009939, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013558, + 0.144707, + 0.331373, + 0.48279700000000003, + 0.598018, + 0.67574, + 0.7144149999999999, + 0.714332, + 0.677572, + 0.5981799999999999, + 0.47788099999999994, + 0.31953699999999996, + 0.133824, + 0.00968, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011961000000000001, + 0.142739, + 0.332787, + 0.485333, + 0.5991409999999999, + 0.673432, + 0.713125, + 0.711305, + 0.66795, + 0.5905549999999999, + 0.473401, + 0.31971, + 0.13300399999999998, + 0.008078, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011664999999999998, + 0.142928, + 0.329692, + 0.481033, + 0.594195, + 0.672692, + 0.713345, + 0.713251, + 0.678145, + 0.596621, + 0.47567200000000004, + 0.318065, + 0.131356, + 0.007741, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010717, + 0.141215, + 0.32306999999999997, + 0.472989, + 0.5841989999999999, + 0.663044, + 0.702528, + 0.700881, + 0.658143, + 0.5762480000000001, + 0.455995, + 0.306647, + 0.12728799999999998, + 0.0070739999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.051, + 0.008494, + 0.39469099999999996, + 0.592891, + 0.5977140000000001, + 0.625775, + 0.633501, + 0.666396, + 0.587482, + 0.466099, + 0.312025, + 0.127938, + 0.006742, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010239000000000002, + 0.136447, + 0.321606, + 0.47143799999999997, + 0.584718, + 0.666158, + 0.711609, + 0.7137279999999999, + 0.673858, + 0.5951799999999999, + 0.474097, + 0.318847, + 0.128992, + 0.005772, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008298, + 0.141035, + 0.331121, + 0.481951, + 0.5919260000000001, + 0.66831, + 0.703824, + 0.704922, + 0.66969, + 0.591263, + 0.470706, + 0.31249099999999996, + 0.124811, + 0.00512, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008267, + 0.13709100000000002, + 0.324084, + 0.47602300000000003, + 0.590712, + 0.6668339999999999, + 0.707945, + 0.705119, + 0.5290860000000001, + 0.582878, + 0.460252, + 0.304499, + 0.12271800000000001, + 0.005093, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008072, + 0.133481, + 0.320299, + 0.47744600000000004, + 0.5994700000000001, + 0.686033, + 0.731494, + 0.7350220000000001, + 0.690578, + 0.6070180000000001, + 0.480834, + 0.321745, + 0.126792, + 0.004812, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00779, + 0.144517, + 0.34993599999999997, + 0.5198740000000001, + 0.646922, + 0.735993, + 0.777798, + 0.7723669999999999, + 0.727992, + 0.6371749999999999, + 0.504147, + 0.33224400000000004, + 0.128842, + 0.0031720000000000003, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005487, + 0.143456, + 0.34610599999999997, + 0.5088360000000001, + 0.6307910000000001, + 0.7117910000000001, + 0.75539, + 0.754596, + 0.7095990000000001, + 0.6220979999999999, + 0.492528, + 0.325678, + 0.125438, + 0.00323, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.005373, + 0.143227, + 0.347498, + 0.507187, + 0.623888, + 0.698751, + 0.743804, + 0.7470289999999999, + 0.7061799999999999, + 0.621328, + 0.49452999999999997, + 0.327817, + 0.12532, + 0.002697, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004726, + 0.140213, + 0.342374, + 0.503129, + 0.623875, + 0.705729, + 0.750364, + 0.7530359999999999, + 0.708913, + 0.623654, + 0.494181, + 0.32613400000000003, + 0.124193, + 0.002797, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004099, + 0.138907, + 0.33822199999999997, + 0.49629399999999996, + 0.6172190000000001, + 0.699663, + 0.744261, + 0.7467849999999999, + 0.7037709999999999, + 0.618878, + 0.49122699999999997, + 0.322232, + 0.12040000000000001, + 0.004202, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004652999999999999, + 0.13662100000000002, + 0.335481, + 0.500767, + 0.628244, + 0.71245, + 0.754878, + 0.750611, + 0.7082430000000001, + 0.6189020000000001, + 0.488597, + 0.318644, + 0.117093, + 0.003629, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004006, + 0.12913999999999998, + 0.322255, + 0.47945299999999996, + 0.598459, + 0.6774779999999999, + 0.715392, + 0.712467, + 0.671119, + 0.583727, + 0.45869600000000005, + 0.29936399999999996, + 0.108293, + 0.0029519999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003899, + 0.12675799999999998, + 0.31815499999999997, + 0.47454399999999997, + 0.587348, + 0.665582, + 0.70674, + 0.706788, + 0.6687759999999999, + 0.585743, + 0.46137599999999995, + 0.296981, + 0.105639, + 0.002359, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003335, + 0.12366200000000001, + 0.312546, + 0.465404, + 0.559199, + 0.5404, + 0.70363, + 0.70052, + 0.5617179999999999, + 0.439291, + 0.400668, + 0.265927, + 0.091641, + 0.001224, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002798, + 0.1184, + 0.31002199999999996, + 0.46475900000000003, + 0.579596, + 0.654808, + 0.694721, + 0.69426, + 0.653168, + 0.570881, + 0.44455700000000004, + 0.27406400000000003, + 0.09713899999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002406, + 0.11888800000000001, + 0.306836, + 0.458847, + 0.5712240000000001, + 0.640745, + 0.679603, + 0.678552, + 0.6374, + 0.555199, + 0.42962, + 0.265231, + 0.092832, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003706, + 0.11653400000000001, + 0.303732, + 0.457692, + 0.5733769999999999, + 0.6570170000000001, + 0.697658, + 0.698473, + 0.658043, + 0.573277, + 0.445885, + 0.278466, + 0.095026, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0037029999999999997, + 0.119132, + 0.310663, + 0.471481, + 0.5915940000000001, + 0.675332, + 0.7174109999999999, + 0.717658, + 0.673609, + 0.586452, + 0.459546, + 0.28980399999999995, + 0.09557500000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004319, + 0.103644, + 0.32169099999999995, + 0.487144, + 0.551172, + 0.69414, + 0.673451, + 0.7319589999999999, + 0.687357, + 0.596832, + 0.466117, + 0.29257299999999997, + 0.094847, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003241, + 0.125825, + 0.32913600000000004, + 0.491283, + 0.608404, + 0.685315, + 0.726881, + 0.727384, + 0.67992, + 0.592128, + 0.46148, + 0.287145, + 0.090999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002592, + 0.121434, + 0.31897699999999996, + 0.481742, + 0.599483, + 0.674786, + 0.710134, + 0.7068369999999999, + 0.6632129999999999, + 0.575431, + 0.44741699999999995, + 0.275254, + 0.08604300000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002052, + 0.11815600000000001, + 0.316576, + 0.481294, + 0.60136, + 0.6816319999999999, + 0.719354, + 0.711635, + 0.66908, + 0.577789, + 0.445101, + 0.274327, + 0.08402899999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0021469999999999996, + 0.119984, + 0.325624, + 0.496, + 0.621972, + 0.7033809999999999, + 0.745115, + 0.739527, + 0.690571, + 0.597995, + 0.463714, + 0.285745, + 0.0858, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0015609999999999999, + 0.118184, + 0.31664299999999995, + 0.475954, + 0.59654, + 0.678072, + 0.717777, + 0.713781, + 0.671649, + 0.580697, + 0.448352, + 0.27414499999999997, + 0.080693, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.000907, + 0.10832699999999999, + 0.293983, + 0.45682799999999996, + 0.5807089999999999, + 0.663621, + 0.704661, + 0.703154, + 0.570496, + 0.490773, + 0.372096, + 0.251903, + 0.073857, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.103695, + 0.284952, + 0.414459, + 0.514033, + 0.646885, + 0.600637, + 0.5662229999999999, + 0.5573210000000001, + 0.162833, + 0.100768, + 0.22199100000000002, + 0.071107, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.103206, + 0.29133499999999996, + 0.44874200000000003, + 0.5677380000000001, + 0.652242, + 0.693485, + 0.6906359999999999, + 0.6478160000000001, + 0.5596810000000001, + 0.427318, + 0.255113, + 0.069294, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.105546, + 0.297691, + 0.44755399999999995, + 0.55668, + 0.636774, + 0.678643, + 0.6782229999999999, + 0.636747, + 0.550224, + 0.42310899999999996, + 0.25056, + 0.066012, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.104811, + 0.293671, + 0.43728500000000003, + 0.542678, + 0.613101, + 0.644374, + 0.641531, + 0.605519, + 0.38060000000000005, + 0.248685, + 0.218975, + 0.062952, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.041209, + 0.287834, + 0.44327999999999995, + 0.560703, + 0.646821, + 0.688198, + 0.6843769999999999, + 0.319996, + 0.033862, + 0.411325, + 0.061418999999999994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09678, + 0.273964, + 0.42163799999999996, + 0.531984, + 0.616543, + 0.6516109999999999, + 0.649445, + 0.610274, + 0.463975, + 0.349865, + 0.24739, + 0.060881, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10677800000000001, + 0.30363, + 0.457733, + 0.575913, + 0.655412, + 0.697217, + 0.6968300000000001, + 0.651571, + 0.56072, + 0.425363, + 0.244651, + 0.058516, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10578, + 0.305517, + 0.45350599999999996, + 0.5525890000000001, + 0.6343880000000001, + 0.674273, + 0.18954300000000002, + 0.02104, + 0.016468, + 0.41572699999999996, + 0.237429, + 0.055146, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.100547, + 0.294126, + 0.453463, + 0.573006, + 0.651343, + 0.687822, + 0.681296, + 0.24521700000000002, + 0.20402099999999998, + 0.049485, + 0.165898, + 0.053232999999999996, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09804399999999999, + 0.29430700000000004, + 0.44932, + 0.5666599999999999, + 0.64324, + 0.676222, + 0.668314, + 0.620078, + 0.527533, + 0.39703, + 0.220797, + 0.049773000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.095766, + 0.285087, + 0.443277, + 0.555987, + 0.630669, + 0.662021, + 0.653458, + 0.604665, + 0.5159790000000001, + 0.160728, + 0.21544300000000002, + 0.019963, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.094664, + 0.283039, + 0.445112, + 0.560492, + 0.642205, + 0.680275, + 0.676956, + 0.6302150000000001, + 0.536471, + 0.40004399999999996, + 0.219795, + 0.04439, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.094322, + 0.284843, + 0.44501999999999997, + 0.564142, + 0.646529, + 0.685341, + 0.6824349999999999, + 0.634381, + 0.5359539999999999, + 0.39334800000000003, + 0.21319, + 0.04134, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.100071, + 0.30755200000000005, + 0.484047, + 0.609601, + 0.692317, + 0.728324, + 0.719368, + 0.6709210000000001, + 0.570039, + 0.425938, + 0.228274, + 0.042527, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.100576, + 0.310529, + 0.490254, + 0.617924, + 0.700704, + 0.738758, + 0.725837, + 0.670923, + 0.569414, + 0.423811, + 0.22773400000000002, + 0.040129, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.096688, + 0.296982, + 0.462267, + 0.584386, + 0.6715220000000001, + 0.7120700000000001, + 0.705865, + 0.654162, + 0.55788, + 0.417105, + 0.222715, + 0.037112, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.094015, + 0.297892, + 0.463688, + 0.580667, + 0.65659, + 0.683769, + 0.664187, + 0.603245, + 0.507748, + 0.381339, + 0.204911, + 0.032825, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.089437, + 0.288495, + 0.450819, + 0.563432, + 0.6369450000000001, + 0.663785, + 0.646377, + 0.584783, + 0.495367, + 0.371068, + 0.19668, + 0.030812000000000003, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.085122, + 0.280087, + 0.443914, + 0.56216, + 0.640024, + 0.6776599999999999, + 0.672249, + 0.617878, + 0.517169, + 0.37389100000000003, + 0.18049, + 0.024440999999999997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.082076, + 0.262995, + 0.430628, + 0.557104, + 0.653967, + 0.690711, + 0.6798630000000001, + 0.6282920000000001, + 0.519812, + 0.36776299999999995, + 0.19318100000000002, + 0.026951, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.093292, + 0.30844099999999997, + 0.49885199999999996, + 0.6368590000000001, + 0.7314550000000001, + 0.770456, + 0.755887, + 0.695492, + 0.581945, + 0.424542, + 0.21530000000000002, + 0.02658, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.097021, + 0.321579, + 0.512035, + 0.650868, + 0.737379, + 0.774154, + 0.7584919999999999, + 0.692058, + 0.580783, + 0.42652999999999996, + 0.214105, + 0.02451, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.094604, + 0.314513, + 0.501854, + 0.631984, + 0.716062, + 0.748725, + 0.72917, + 0.666026, + 0.558239, + 0.407743, + 0.20517, + 0.020307, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.090443, + 0.30183, + 0.47558, + 0.59437, + 0.6673680000000001, + 0.695031, + 0.6782619999999999, + 0.617726, + 0.523592, + 0.386385, + 0.191911, + 0.016558, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.083661, + 0.28184, + 0.462051, + 0.594452, + 0.6847190000000001, + 0.722514, + 0.713658, + 0.6546770000000001, + 0.5496449999999999, + 0.395652, + 0.190338, + 0.013626, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08790600000000001, + 0.302577, + 0.485401, + 0.608275, + 0.6831430000000001, + 0.709656, + 0.68916, + 0.6254829999999999, + 0.5240739999999999, + 0.379986, + 0.185525, + 0.011703, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08412900000000001, + 0.288859, + 0.46193599999999996, + 0.588503, + 0.669823, + 0.706303, + 0.694404, + 0.631456, + 0.524109, + 0.37300599999999995, + 0.174322, + 0.010048999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.076842, + 0.26517, + 0.43738499999999997, + 0.572268, + 0.680645, + 0.7228920000000001, + 0.7130230000000001, + 0.652085, + 0.54532, + 0.392127, + 0.183145, + 0.009888999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.084713, + 0.30424799999999996, + 0.495755, + 0.6296470000000001, + 0.7134429999999999, + 0.746826, + 0.728238, + 0.6620940000000001, + 0.54926, + 0.390058, + 0.178299, + 0.008067999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08281699999999999, + 0.297822, + 0.484236, + 0.61248, + 0.6902010000000001, + 0.719336, + 0.69736, + 0.631652, + 0.522306, + 0.371261, + 0.16936400000000001, + 0.00624, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.079842, + 0.293498, + 0.47559199999999996, + 0.600124, + 0.6790470000000001, + 0.7072419999999999, + 0.685289, + 0.619202, + 0.514371, + 0.364967, + 0.164196, + 0.005873000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.073725, + 0.27306400000000003, + 0.44398200000000004, + 0.566296, + 0.650169, + 0.686335, + 0.675346, + 0.621106, + 0.517038, + 0.36465, + 0.160661, + 0.004835, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.076723, + 0.28345800000000004, + 0.45745800000000003, + 0.578323, + 0.654049, + 0.68402, + 0.667159, + 0.6094579999999999, + 0.507566, + 0.357259, + 0.156128, + 0.00347, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.059387, + 0.245905, + 0.371063, + 0.577198, + 0.5749890000000001, + 0.545766, + 0.563027, + 0.40292700000000004, + 0.200211, + 0.35852, + 0.154666, + 0.002508, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.068218, + 0.263673, + 0.43150900000000003, + 0.547331, + 0.577388, + 0.6052240000000001, + 0.5845009999999999, + 0.504705, + 0.376124, + 0.24774600000000002, + 0.080129, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.067448, + 0.26474000000000003, + 0.439631, + 0.501317, + 0.587448, + 0.558698, + 0.356151, + 0.425711, + 0.257269, + 0.24675299999999997, + 0.047415, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.066188, + 0.260146, + 0.423949, + 0.546438, + 0.626352, + 0.662018, + 0.6532720000000001, + 0.594037, + 0.48781599999999997, + 0.333895, + 0.135472, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038423, + 0.232245, + 0.428281, + 0.54857, + 0.628002, + 0.662551, + 0.6523669999999999, + 0.593091, + 0.485763, + 0.3312, + 0.132563, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.062842, + 0.259795, + 0.439276, + 0.564822, + 0.6496430000000001, + 0.68271, + 0.671639, + 0.606659, + 0.493876, + 0.331801, + 0.129773, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.061281999999999996, + 0.26401100000000005, + 0.45386000000000004, + 0.588178, + 0.6725760000000001, + 0.706539, + 0.690717, + 0.625009, + 0.38653899999999997, + 0.245025, + 0.012269, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.054775, + 0.054612, + 0.217751, + 0.598576, + 0.347933, + 0.7161660000000001, + 0.6978, + 0.147157, + 0.207529, + 0.348006, + 0.003243, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.064946, + 0.284012, + 0.480082, + 0.6123999999999999, + 0.692093, + 0.724176, + 0.10127, + 0.227502, + 0.013538999999999999, + 0.020867, + 0.079705, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.063347, + 0.27813, + 0.472509, + 0.6014640000000001, + 0.678023, + 0.704911, + 0.681207, + 0.6102179999999999, + 0.497005, + 0.328104, + 0.120082, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.059893999999999996, + 0.267918, + 0.45728199999999997, + 0.5822780000000001, + 0.659768, + 0.684342, + 0.6632140000000001, + 0.596789, + 0.487321, + 0.325628, + 0.11706100000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.057939, + 0.266401, + 0.450442, + 0.570547, + 0.6335230000000001, + 0.6497179999999999, + 0.62914, + 0.568915, + 0.46653, + 0.313031, + 0.112288, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.054674, + 0.256502, + 0.436181, + 0.560947, + 0.5430510000000001, + 0.5617759999999999, + 0.646557, + 0.576778, + 0.462645, + 0.29918599999999995, + 0.103493, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.052175, + 0.253827, + 0.441199, + 0.565236, + 0.636888, + 0.660554, + 0.639398, + 0.572006, + 0.462787, + 0.30038400000000004, + 0.100241, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.05171, + 0.255584, + 0.441209, + 0.5668150000000001, + 0.6413070000000001, + 0.668728, + 0.6488740000000001, + 0.5809030000000001, + 0.466656, + 0.30166699999999996, + 0.100827, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.050858, + 0.253434, + 0.43593, + 0.554246, + 0.620658, + 0.636805, + 0.607407, + 0.542194, + 0.44450599999999996, + 0.291452, + 0.09598999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.048127, + 0.243536, + 0.416502, + 0.45360500000000004, + 0.537848, + 0.6210370000000001, + 0.5384840000000001, + 0.44772500000000004, + 0.447344, + 0.251609, + 0.088078, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.043531, + 0.219894, + 0.398851, + 0.524128, + 0.598099, + 0.6264109999999999, + 0.608898, + 0.557902, + 0.44674, + 0.28036700000000003, + 0.08276900000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.043183, + 0.236495, + 0.416605, + 0.5397150000000001, + 0.62014, + 0.6529969999999999, + 0.635564, + 0.570061, + 0.45686200000000005, + 0.286976, + 0.084994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.042483, + 0.24319300000000002, + 0.430652, + 0.557433, + 0.634103, + 0.65854, + 0.632051, + 0.559492, + 0.446678, + 0.279265, + 0.08178, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.041898000000000005, + 0.244881, + 0.436876, + 0.562731, + 0.6375449999999999, + 0.660394, + 0.633298, + 0.5588719999999999, + 0.447255, + 0.28070100000000003, + 0.080154, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038862, + 0.240059, + 0.423147, + 0.538959, + 0.618309, + 0.651651, + 0.636895, + 0.568049, + 0.453351, + 0.280725, + 0.07465000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.035768, + 0.235137, + 0.422114, + 0.545661, + 0.618355, + 0.642042, + 0.616854, + 0.551388, + 0.442795, + 0.273832, + 0.070149, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.032957, + 0.230689, + 0.418208, + 0.539057, + 0.606037, + 0.6251019999999999, + 0.599024, + 0.534023, + 0.426995, + 0.262783, + 0.066952, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030677, + 0.229981, + 0.421015, + 0.546366, + 0.623522, + 0.650821, + 0.628068, + 0.558356, + 0.44204899999999997, + 0.26723399999999997, + 0.068591, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028468, + 0.22783799999999998, + 0.419799, + 0.541416, + 0.614899, + 0.63891, + 0.61291, + 0.5444289999999999, + 0.431063, + 0.260906, + 0.063857, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023306, + 0.20844900000000002, + 0.392553, + 0.5177609999999999, + 0.5979629999999999, + 0.6250439999999999, + 0.601333, + 0.481858, + 0.251106, + 0.163836, + 0.038179000000000005, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021533999999999998, + 0.206279, + 0.392372, + 0.523848, + 0.603898, + 0.63189, + 0.6067659999999999, + 0.5359109999999999, + 0.408934, + 0.233927, + 0.051175, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021013999999999998, + 0.210345, + 0.409751, + 0.54832, + 0.635013, + 0.6729080000000001, + 0.657267, + 0.586643, + 0.465536, + 0.27495800000000004, + 0.06324, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023575, + 0.232213, + 0.438413, + 0.570172, + 0.648104, + 0.6710900000000001, + 0.643169, + 0.571905, + 0.45200999999999997, + 0.26927100000000004, + 0.060287999999999994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022057, + 0.229532, + 0.432834, + 0.564585, + 0.6408769999999999, + 0.663053, + 0.634691, + 0.556892, + 0.43673700000000004, + 0.25705399999999995, + 0.0555, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019889, + 0.22059600000000001, + 0.418784, + 0.544142, + 0.621509, + 0.644906, + 0.620247, + 0.547282, + 0.428476, + 0.248886, + 0.050881, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018111000000000002, + 0.215781, + 0.41248599999999996, + 0.536329, + 0.6052390000000001, + 0.625668, + 0.598826, + 0.378624, + 0.37693, + 0.196311, + 0.046908, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017030999999999998, + 0.21016200000000002, + 0.40384800000000004, + 0.398018, + 0.5812350000000001, + 0.60954, + 0.592482, + 0.528775, + 0.417814, + 0.23981899999999998, + 0.023097000000000003, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014684, + 0.2049, + 0.402571, + 0.5423429999999999, + 0.547418, + 0.4093, + 0.30870299999999995, + 0.547997, + 0.319856, + 0.220202, + 0.036376, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011456, + 0.19670500000000002, + 0.39527100000000004, + 0.528978, + 0.60876, + 0.6316799999999999, + 0.6076480000000001, + 0.5428339999999999, + 0.42582, + 0.242606, + 0.040801000000000004, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013673999999999999, + 0.214113, + 0.420834, + 0.5597430000000001, + 0.6427039999999999, + 0.67048, + 0.642612, + 0.565605, + 0.4367, + 0.24651599999999999, + 0.038451, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012035, + 0.20561600000000002, + 0.40593599999999996, + 0.54108, + 0.6207, + 0.647239, + 0.6209779999999999, + 0.545631, + 0.42242, + 0.23296899999999998, + 0.033108, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008978, + 0.192532, + 0.388581, + 0.521621, + 0.60124, + 0.629786, + 0.6043350000000001, + 0.531867, + 0.409298, + 0.227534, + 0.029854, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007753, + 0.187654, + 0.38234199999999996, + 0.511464, + 0.585287, + 0.60662, + 0.581268, + 0.511805, + 0.398883, + 0.224148, + 0.02818, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007053, + 0.185805, + 0.375927, + 0.500037, + 0.56963, + 0.597468, + 0.5773830000000001, + 0.510872, + 0.39615, + 0.219048, + 0.026705, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004099, + 0.18094200000000002, + 0.37263, + 0.5011909999999999, + 0.574722, + 0.597499, + 0.570586, + 0.501077, + 0.384611, + 0.20900200000000002, + 0.02296, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004468, + 0.175241, + 0.364012, + 0.478192, + 0.5475460000000001, + 0.583438, + 0.439335, + 0.504962, + 0.389358, + 0.21044300000000002, + 0.022756000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.177291, + 0.373799, + 0.507509, + 0.591043, + 0.6192960000000001, + 0.597124, + 0.52324, + 0.400737, + 0.21434, + 0.021555, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.150385, + 0.338997, + 0.4818, + 0.572628, + 0.6017469999999999, + 0.580009, + 0.373573, + 0.37421, + 0.194152, + 0.003354, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.14979699999999999, + 0.228929, + 0.481213, + 0.568846, + 0.600154, + 0.580215, + 0.51209, + 0.392079, + 0.20922900000000003, + 0.020467, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08083199999999999, + 0.232099, + 0.482801, + 0.5627190000000001, + 0.498164, + 0.435174, + 0.351072, + 0.28915199999999996, + 0.14305199999999998, + 0.003283, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024513, + 0.346494, + 0.32615, + 0.573357, + 0.607205, + 0.588825, + 0.51916, + 0.39595800000000003, + 0.20794900000000002, + 0.012917999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.151341, + 0.34754599999999997, + 0.489064, + 0.571661, + 0.602927, + 0.581693, + 0.509258, + 0.385441, + 0.201382, + 0.016177, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.17056100000000002, + 0.383116, + 0.534518, + 0.6196240000000001, + 0.647965, + 0.620694, + 0.5450839999999999, + 0.41609199999999996, + 0.218616, + 0.018501, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.160016, + 0.363435, + 0.506499, + 0.590881, + 0.619033, + 0.595371, + 0.5193369999999999, + 0.395272, + 0.17350200000000002, + 0.008966, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07596800000000001, + 0.241744, + 0.49944700000000003, + 0.455626, + 0.50849, + 0.320034, + 0.23671999999999999, + 0.108423, + 0.16964400000000002, + 0.007622, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.14062799999999998, + 0.189454, + 0.4714, + 0.408132, + 0.430942, + 0.178798, + 0.504814, + 0.380819, + 0.19515000000000002, + 0.011653, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.14677199999999999, + 0.33975700000000003, + 0.47808999999999996, + 0.56304, + 0.502155, + 0.41929099999999997, + 0.36426, + 0.176563, + 0.067291, + 0.001113, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.14144800000000002, + 0.338646, + 0.485058, + 0.563625, + 0.5907749999999999, + 0.56692, + 0.494998, + 0.373198, + 0.191473, + 0.011846, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06433499999999999, + 0.231017, + 0.335453, + 0.5473830000000001, + 0.5823740000000001, + 0.562813, + 0.494665, + 0.37210899999999997, + 0.137154, + 0.007687, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.143591, + 0.349757, + 0.499045, + 0.5885560000000001, + 0.621398, + 0.597831, + 0.522635, + 0.39282999999999996, + 0.202256, + 0.008407, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0635, + 0.34009100000000003, + 0.486976, + 0.569596, + 0.603739, + 0.584653, + 0.515358, + 0.390985, + 0.20262, + 0.012493, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06314800000000001, + 0.33870100000000003, + 0.475841, + 0.549922, + 0.585296, + 0.5681620000000001, + 0.49886, + 0.374455, + 0.193519, + 0.011385, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06573999999999999, + 0.330195, + 0.468435, + 0.5446190000000001, + 0.56514, + 0.542883, + 0.482128, + 0.365375, + 0.191405, + 0.011933999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.05315400000000001, + 0.20283299999999999, + 0.33069299999999996, + 0.45095100000000005, + 0.440981, + 0.41150099999999995, + 0.458339, + 0.353757, + 0.183159, + 0.009366, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.053342, + 0.208784, + 0.453227, + 0.543203, + 0.5821689999999999, + 0.565639, + 0.501481, + 0.37741399999999997, + 0.196145, + 0.011381, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.120463, + 0.314512, + 0.46050599999999997, + 0.546219, + 0.583488, + 0.565106, + 0.49794499999999997, + 0.371956, + 0.094087, + 0.001062, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015433, + 0.131639, + 0.20315799999999998, + 0.012362, + 0.06952599999999999, + 0.02618, + 0.032836, + 0.08994100000000001, + 0.056783, + 0.010027, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10819100000000001, + 0.29938400000000004, + 0.364867, + 0.43964, + 0.42477699999999996, + 0.445087, + 0.31572100000000003, + 0.13458699999999998, + 0.020681, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036859, + 0.08828100000000001, + 0.08282099999999999, + 0.130786, + 0.351127, + 0.336097, + 0.379638, + 0.27890699999999996, + 0.17896, + 0.005429000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10466800000000001, + 0.00507, + 0.457807, + 0.307574, + 0.372399, + 0.401781, + 0.200015, + 0.005702, + 0.190623, + 0.00495, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.107344, + 0.314921, + 0.476922, + 0.569009, + 0.607897, + 0.590093, + 0.520841, + 0.39121, + 0.197143, + 0.00566, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10728, + 0.303464, + 0.45329899999999995, + 0.5405570000000001, + 0.5793339999999999, + 0.45904700000000004, + 0.49782499999999996, + 0.266731, + 0.146287, + 0.008859, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.100965, + 0.30238400000000004, + 0.45943599999999996, + 0.547574, + 0.584808, + 0.566751, + 0.35568299999999997, + 0.372574, + 0.190185, + 0.009074, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.101205, + 0.307601, + 0.466706, + 0.561849, + 0.600324, + 0.5808289999999999, + 0.511471, + 0.383149, + 0.193938, + 0.009578, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.10023, + 0.31065699999999996, + 0.471208, + 0.515823, + 0.5230130000000001, + 0.575727, + 0.414311, + 0.380789, + 0.198157, + 0.010682, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09473999999999999, + 0.29558, + 0.45243, + 0.546573, + 0.5901810000000001, + 0.5813189999999999, + 0.21108600000000002, + 0.141643, + 0.193686, + 0.009659000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08902800000000001, + 0.294024, + 0.357752, + 0.324027, + 0.582724, + 0.027924, + 0.19164599999999998, + 0.076059, + 0.10757, + 0.007665, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.092065, + 0.298016, + 0.46426, + 0.560408, + 0.6031369999999999, + 0.587172, + 0.515438, + 0.388034, + 0.20076, + 0.011305999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.091671, + 0.29983, + 0.463589, + 0.560024, + 0.5989779999999999, + 0.5815359999999999, + 0.5132749999999999, + 0.387034, + 0.20096899999999998, + 0.012029, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.085336, + 0.158522, + 0.444445, + 0.5304840000000001, + 0.559742, + 0.549946, + 0.48927499999999996, + 0.372391, + 0.194496, + 0.011257999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07577500000000001, + 0.17056100000000002, + 0.446291, + 0.40341899999999997, + 0.413005, + 0.38709899999999997, + 0.077582, + 0.285616, + 0.19878800000000002, + 0.006972000000000001, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08317400000000001, + 0.293077, + 0.46144, + 0.562736, + 0.607542, + 0.59468, + 0.527851, + 0.400974, + 0.211105, + 0.01591, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.085075, + 0.291786, + 0.45381299999999997, + 0.546158, + 0.583913, + 0.568297, + 0.504597, + 0.385032, + 0.20467500000000002, + 0.008119999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.061225999999999996, + 0.07191, + 0.43544, + 0.433187, + 0.44755700000000004, + 0.56165, + 0.45692099999999997, + 0.383309, + 0.2027, + 0.015527, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.079315, + 0.288259, + 0.45148, + 0.544455, + 0.582112, + 0.56726, + 0.502379, + 0.38518, + 0.206497, + 0.015752000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.075518, + 0.279343, + 0.43961500000000003, + 0.5184160000000001, + 0.5501860000000001, + 0.5440470000000001, + 0.485947, + 0.371241, + 0.19733799999999999, + 0.013205999999999999, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030548, + 0.149894, + 0.250506, + 0.453637, + 0.57217, + 0.448015, + 0.516853, + 0.397627, + 0.212008, + 0.014402, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.067276, + 0.263601, + 0.43258300000000005, + 0.526889, + 0.437587, + 0.5638, + 0.502197, + 0.383875, + 0.204656, + 0.016835999999999997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.068893, + 0.269957, + 0.43371499999999996, + 0.5284310000000001, + 0.570666, + 0.558982, + 0.302652, + 0.32002600000000003, + 0.08913, + 0.003676, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.065553, + 0.262365, + 0.432004, + 0.527038, + 0.570743, + 0.560129, + 0.500919, + 0.343792, + 0.205208, + 0.011622, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.07253799999999999, + 0.285231, + 0.458283, + 0.559757, + 0.600951, + 0.475324, + 0.35981, + 0.27920100000000003, + 0.110406, + 0.006163, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.071065, + 0.282051, + 0.45328399999999996, + 0.549851, + 0.493921, + 0.5162519999999999, + 0.518815, + 0.402447, + 0.224782, + 0.024914000000000002, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06468, + 0.26617799999999997, + 0.431159, + 0.41487999999999997, + 0.448781, + 0.41622899999999996, + 0.344767, + 0.25162799999999996, + 0.112171, + 0.006654, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017875, + 0.099539, + 0.147631, + 0.280245, + 0.409477, + 0.459101, + 0.323611, + 0.179341, + 0.212308, + 0.015411, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008386, + 0.179917, + 0.319699, + 0.281781, + 0.150833, + 0.14043799999999998, + 0.04218, + 0.096152, + 0.076027, + 0.004096, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.016027, + 0.007328, + 0.146984, + 0.081163, + 0.120132, + 0.048034999999999994, + 0.105957, + 0.293942, + 0.05697, + 0.022897999999999998, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.051933999999999994, + 0.040779, + 0.191251, + 0.051662, + 0.145851, + 0.147685, + 0.12615, + 0.089821, + 0.07617600000000001, + 0.005256, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.052993000000000005, + 0.24642, + 0.416819, + 0.526861, + 0.574294, + 0.43489, + 0.371593, + 0.401469, + 0.167606, + 0.035059, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "electric_to_load_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.22, + 2.608, + 4.262, + 5.224, + 5.655, + 5.579, + 5.011, + 3.929, + 2.26, + 0.332, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.217, + 2.646, + 4.323, + 5.292, + 5.73, + 5.659, + 5.056, + 3.981, + 2.307, + 0.081, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.216, + 1.392, + 4.36, + 5.395, + 5.894, + 5.83, + 5.26, + 4.15, + 2.428, + 0.379, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.61, + 2.679, + 4.374, + 5.368, + 5.801, + 5.726, + 5.155, + 4.072, + 2.393, + 0.378, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.213, + 2.583, + 4.235, + 5.201, + 5.636, + 5.565, + 4.117, + 2.767, + 2.352, + 0.224, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.238, + 2.573, + 4.148, + 3.683, + 3.68, + 4.348, + 4.967, + 3.957, + 2.361, + 0.407, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.559, + 2.491, + 4.075, + 5.042, + 5.509, + 5.483, + 4.979, + 3.954, + 2.342, + 0.428, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.59, + 2.638, + 4.369, + 5.426, + 5.94, + 5.888, + 5.319, + 4.257, + 2.536, + 0.498, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.206, + 1.435, + 4.292, + 5.262, + 5.729, + 5.678, + 5.149, + 4.12, + 2.49, + 0.521, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.272, + 2.573, + 4.219, + 4.452, + 4.237, + 4.835, + 3.476, + 3.098, + 1.646, + 0.237, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.051, + 0.296, + 1.531, + 4.868, + 5.426, + 4.374, + 3.968, + 4.003, + 2.21, + 0.543, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.541, + 2.513, + 4.182, + 5.193, + 5.685, + 5.647, + 5.1, + 4.094, + 2.505, + 0.592, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.558, + 2.53, + 4.157, + 5.095, + 5.575, + 5.567, + 5.082, + 4.108, + 2.521, + 0.6, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.599, + 2.626, + 4.309, + 5.3, + 4.858, + 4.256, + 3.802, + 3.564, + 2.093, + 0.675, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.299, + 2.453, + 4.012, + 3.821, + 4.509, + 2.944, + 4.994, + 1.906, + 0.291, + 0.187, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.533, + 2.426, + 4.096, + 5.144, + 5.673, + 5.674, + 5.184, + 4.184, + 2.59, + 0.68, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.556, + 2.443, + 4.031, + 5.004, + 5.519, + 4.465, + 5.067, + 4.119, + 2.565, + 0.705, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.444, + 1.938, + 2.57, + 4.161, + 4.605, + 4.487, + 3.112, + 2.734, + 1.274, + 0.199, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.486, + 0.444, + 1.665, + 2.641, + 2.525, + 5.603, + 5.143, + 2.649, + 1.89, + 0.198, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.572, + 2.516, + 4.229, + 5.243, + 5.784, + 2.68, + 0.603, + 0.854, + 0.09, + 0.129, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.266, + 1.318, + 3.279, + 4.281, + 4.568, + 4.681, + 3.649, + 2.75, + 2.265, + 0.845, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.646, + 2.635, + 4.231, + 5.207, + 5.755, + 5.778, + 5.281, + 4.314, + 2.788, + 0.855, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.616, + 2.533, + 4.154, + 3.754, + 4.616, + 4.174, + 3.826, + 3.359, + 1.982, + 0.378, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.183, + 1.258, + 1.6, + 2.373, + 2.419, + 2.546, + 2.138, + 0.838, + 0.448, + 0.177, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.555, + 1.454, + 1.032, + 1.7, + 0.055, + 5.545, + 4.537, + 2.93, + 0.938, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.609, + 1.716, + 3.35, + 0.262, + 4.522, + 4.471, + 3.659, + 0.132, + 2.805, + 0.869, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.712, + 2.857, + 4.68, + 5.819, + 6.358, + 6.352, + 5.851, + 4.854, + 3.2, + 1.089, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.812, + 2.95, + 4.705, + 5.768, + 6.3, + 6.298, + 5.778, + 4.751, + 3.15, + 1.105, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.809, + 2.914, + 4.58, + 5.554, + 6.014, + 5.982, + 4.335, + 3.913, + 1.946, + 0.522, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.344, + 2.78, + 4.443, + 4.547, + 4.967, + 4.92, + 4.382, + 3.626, + 2.387, + 0.668, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.257, + 2.252, + 3.544, + 6.28, + 6.326, + 5.831, + 4.813, + 3.22, + 1.038, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.677, + 2.62, + 4.291, + 5.285, + 5.798, + 5.884, + 5.484, + 4.606, + 3.112, + 1.111, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.862, + 3.016, + 4.74, + 4.851, + 5.172, + 4.907, + 5.749, + 4.757, + 3.259, + 1.27, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.919, + 3.04, + 4.706, + 5.709, + 6.215, + 6.201, + 5.699, + 4.753, + 3.266, + 1.295, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.88, + 2.933, + 4.582, + 5.617, + 6.123, + 6.126, + 5.623, + 4.677, + 3.207, + 1.263, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.33, + 1.69, + 2.946, + 4.481, + 4.921, + 4.581, + 3.882, + 3.569, + 2.108, + 0.649, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.896, + 2.899, + 4.432, + 5.463, + 6.023, + 6.093, + 4.812, + 3.902, + 2.7, + 0.942, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.591, + 2.22, + 3.463, + 4.33, + 5.232, + 4.32, + 4.001, + 3.1, + 2.54, + 0.907, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.539, + 1.531, + 2.971, + 3.204, + 2.755, + 4.337, + 4.456, + 2.766, + 2.197, + 0.657, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.868, + 2.143, + 3.424, + 3.792, + 4.712, + 1.57, + 1.733, + 1.008, + 0.833, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.232, + 1.506, + 0.857, + 1.842, + 4.294, + 4.003, + 4.301, + 3.565, + 2.616, + 0.491, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.979, + 4.661, + 5.736, + 6.334, + 6.398, + 5.914, + 4.972, + 3.444, + 1.422, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.969, + 2.956, + 3.167, + 5.67, + 6.263, + 6.306, + 5.91, + 4.943, + 3.429, + 0.152, + 0.0, + 0.0, + 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.054, + 3.14, + 4.825, + 2.86, + 6.44, + 6.497, + 6.051, + 5.093, + 2.867, + 1.51, + 0.0, + 0.0, + 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.134, + 3.267, + 4.948, + 6.057, + 6.636, + 6.657, + 6.174, + 5.179, + 3.665, + 1.609, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.535, + 3.32, + 4.897, + 5.876, + 6.391, + 6.401, + 5.898, + 4.945, + 3.496, + 1.556, + 0.0, + 0.0, + 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.173, + 3.209, + 4.803, + 5.824, + 6.36, + 6.403, + 5.942, + 4.989, + 3.534, + 1.555, + 0.0, + 0.0, + 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.177, + 3.238, + 4.853, + 5.903, + 6.423, + 6.419, + 5.938, + 4.962, + 2.977, + 0.51, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.503, + 2.179, + 2.958, + 3.875, + 3.398, + 2.196, + 4.002, + 3.837, + 2.773, + 1.196, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.287, + 0.228, + 0.302, + 1.024, + 5.04, + 4.217, + 5.061, + 3.629, + 1.646, + 0.03, + 0.0, + 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.29, + 3.342, + 4.884, + 5.885, + 6.426, + 6.475, + 6.046, + 5.145, + 3.686, + 1.717, + 0.037, + 0.0, + 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.277, + 3.269, + 4.726, + 5.693, + 6.297, + 6.413, + 6.038, + 5.157, + 3.733, + 1.752, + 0.048, + 0.0, + 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.299, + 1.322, + 1.354, + 0.957, + 4.366, + 5.138, + 4.688, + 3.623, + 2.702, + 1.195, + 0.024, + 0.0, + 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.502, + 3.77, + 5.46, + 6.563, + 7.165, + 7.222, + 6.754, + 5.739, + 4.177, + 1.978, + 0.085, + 0.0, + 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.525, + 3.708, + 5.292, + 6.288, + 6.682, + 6.58, + 6.037, + 5.183, + 3.879, + 1.895, + 0.089, + 0.0, + 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.48, + 3.577, + 5.193, + 6.29, + 6.86, + 6.894, + 4.971, + 1.135, + 0.365, + 0.577, + 0.085, + 0.0, + 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.483, + 3.58, + 5.117, + 6.172, + 6.739, + 6.792, + 6.333, + 5.399, + 3.952, + 1.9, + 0.097, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.049, + 3.792, + 5.47, + 5.315, + 5.515, + 7.221, + 6.732, + 5.714, + 0.466, + 0.551, + 0.029, + 0.0, + 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.697, + 3.939, + 5.579, + 6.651, + 7.23, + 7.266, + 6.793, + 5.792, + 4.268, + 0.078, + 0.103, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.294, + 2.478, + 2.243, + 3.083, + 4.408, + 0.768, + 4.257, + 2.742, + 0.888, + 1.081, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.663, + 2.365, + 3.112, + 3.949, + 4.951, + 4.282, + 4.0, + 2.829, + 1.937, + 0.85, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012, + 0.926, + 2.404, + 3.808, + 5.261, + 5.44, + 5.19, + 5.786, + 4.325, + 2.577, + 1.064, + 0.049, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.059, + 1.699, + 3.743, + 3.844, + 5.077, + 5.447, + 5.634, + 4.355, + 3.776, + 3.889, + 1.947, + 0.153, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.076, + 1.764, + 3.769, + 5.108, + 6.043, + 4.558, + 6.602, + 6.195, + 4.419, + 3.886, + 1.128, + 0.161, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.033, + 1.0, + 2.393, + 3.201, + 6.102, + 6.602, + 5.4, + 6.272, + 5.32, + 3.896, + 1.973, + 0.179, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.095, + 1.889, + 4.008, + 5.515, + 5.401, + 5.731, + 5.213, + 5.074, + 4.705, + 3.3, + 2.121, + 0.086, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.124, + 2.044, + 4.199, + 5.729, + 6.705, + 7.142, + 7.079, + 6.572, + 5.618, + 4.176, + 1.745, + 0.181, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.079, + 1.559, + 4.031, + 5.476, + 6.405, + 6.771, + 6.584, + 5.99, + 5.203, + 3.141, + 1.681, + 0.226, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.146, + 2.003, + 3.138, + 5.465, + 6.439, + 6.908, + 6.877, + 6.423, + 5.451, + 4.041, + 2.093, + 0.259, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.163, + 1.361, + 2.962, + 5.722, + 5.556, + 5.467, + 5.934, + 4.971, + 4.331, + 2.827, + 1.64, + 0.218, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.198, + 2.122, + 4.213, + 5.713, + 6.713, + 7.175, + 7.132, + 6.587, + 5.604, + 4.166, + 2.177, + 0.3, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.225, + 2.128, + 4.17, + 5.623, + 6.607, + 7.087, + 7.104, + 6.609, + 5.623, + 4.2, + 2.223, + 0.321, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.269, + 2.216, + 4.223, + 5.585, + 6.428, + 6.853, + 6.842, + 6.422, + 5.537, + 4.154, + 2.215, + 0.329, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.29, + 2.24, + 4.312, + 5.758, + 6.749, + 7.192, + 7.116, + 6.618, + 5.602, + 4.168, + 2.225, + 0.338, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.307, + 2.168, + 4.108, + 5.352, + 6.216, + 6.548, + 6.688, + 6.34, + 5.499, + 4.174, + 2.275, + 0.357, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.358, + 2.384, + 4.45, + 5.899, + 6.893, + 7.383, + 7.36, + 6.847, + 5.877, + 3.942, + 1.763, + 0.308, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.396, + 2.468, + 4.581, + 6.054, + 7.0, + 7.414, + 7.303, + 6.735, + 5.786, + 4.362, + 2.402, + 0.406, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.415, + 2.497, + 4.579, + 6.012, + 6.953, + 7.364, + 7.253, + 6.647, + 5.64, + 4.251, + 2.361, + 0.411, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.227, + 1.5, + 2.773, + 5.281, + 5.882, + 5.685, + 5.631, + 5.329, + 4.043, + 4.178, + 2.311, + 0.41, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.442, + 2.371, + 4.272, + 5.626, + 6.524, + 6.993, + 6.998, + 6.554, + 5.592, + 4.178, + 2.265, + 0.404, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.465, + 2.334, + 4.196, + 5.467, + 6.17, + 6.548, + 6.706, + 6.413, + 5.577, + 4.212, + 2.312, + 0.423, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.505, + 2.43, + 3.305, + 4.298, + 6.129, + 5.83, + 5.705, + 5.137, + 4.737, + 4.066, + 1.711, + 0.341, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.5, + 2.376, + 3.269, + 4.954, + 6.56, + 6.935, + 6.827, + 6.3, + 4.023, + 3.604, + 1.772, + 0.429, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.527, + 2.412, + 4.226, + 5.557, + 6.626, + 7.122, + 7.13, + 5.863, + 5.63, + 4.253, + 2.33, + 0.454, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.597, + 2.628, + 4.605, + 6.054, + 7.051, + 7.536, + 1.803, + 4.366, + 4.338, + 2.823, + 1.094, + 0.485, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.616, + 2.661, + 4.603, + 5.975, + 6.816, + 7.21, + 7.255, + 6.778, + 5.811, + 4.369, + 1.162, + 0.496, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.638, + 2.582, + 4.395, + 5.646, + 6.429, + 5.988, + 5.98, + 5.476, + 5.017, + 4.078, + 2.283, + 0.491, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.652, + 1.592, + 3.228, + 5.599, + 6.621, + 6.811, + 5.368, + 5.617, + 5.605, + 3.923, + 1.641, + 0.356, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.767, + 2.98, + 4.966, + 6.374, + 7.301, + 7.735, + 7.652, + 7.081, + 6.079, + 4.599, + 2.609, + 0.563, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.755, + 2.804, + 4.686, + 6.063, + 7.024, + 7.497, + 7.479, + 7.028, + 6.041, + 4.563, + 0.047, + 0.024, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.837, + 3.067, + 5.077, + 6.506, + 7.462, + 7.922, + 7.824, + 7.266, + 6.2, + 4.701, + 2.665, + 0.595, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.855, + 3.012, + 4.907, + 6.257, + 7.098, + 7.439, + 7.3, + 5.676, + 5.838, + 4.443, + 2.564, + 0.593, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.841, + 2.833, + 3.834, + 4.69, + 6.289, + 6.767, + 6.89, + 6.53, + 5.685, + 4.327, + 2.498, + 0.587, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.886, + 2.914, + 3.241, + 5.076, + 6.859, + 7.344, + 7.364, + 6.896, + 5.945, + 4.54, + 2.607, + 0.626, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.947, + 3.098, + 5.04, + 6.458, + 7.343, + 7.775, + 7.747, + 7.215, + 6.186, + 2.949, + 2.645, + 0.656, + 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.005, + 3.161, + 5.091, + 6.494, + 7.44, + 7.812, + 7.717, + 7.138, + 6.101, + 4.625, + 2.657, + 0.674, + 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.035, + 3.183, + 5.034, + 6.348, + 7.144, + 7.437, + 7.274, + 6.743, + 5.843, + 4.523, + 2.653, + 0.677, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.759, + 3.034, + 4.741, + 6.02, + 6.883, + 7.32, + 7.283, + 6.8, + 5.828, + 4.406, + 2.597, + 0.667, + 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.046, + 3.066, + 4.783, + 6.09, + 6.948, + 7.402, + 7.409, + 6.941, + 5.944, + 4.484, + 2.367, + 0.611, + 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.116, + 3.21, + 4.985, + 6.287, + 7.206, + 7.649, + 7.64, + 7.102, + 6.103, + 4.663, + 2.748, + 0.71, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004, + 3.203, + 3.016, + 6.415, + 1.444, + 4.144, + 7.73, + 7.18, + 5.25, + 3.248, + 0.588, + 0.025, + 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.152, + 3.236, + 3.018, + 6.401, + 7.295, + 7.7, + 6.494, + 7.033, + 3.593, + 1.82, + 1.564, + 0.351, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004, + 3.181, + 5.076, + 1.59, + 0.2, + 0.644, + 0.306, + 1.173, + 1.16, + 2.116, + 0.762, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.819, + 3.504, + 5.369, + 6.721, + 7.533, + 7.912, + 7.787, + 7.197, + 6.17, + 4.746, + 2.815, + 0.757, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019, + 1.226, + 3.293, + 4.982, + 6.137, + 6.73, + 6.946, + 7.016, + 6.685, + 5.852, + 4.548, + 2.699, + 0.751, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024, + 1.239, + 3.269, + 4.915, + 6.096, + 6.829, + 7.099, + 6.935, + 6.522, + 5.703, + 4.424, + 2.666, + 0.753, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.028, + 1.25, + 3.26, + 4.828, + 5.89, + 6.507, + 6.833, + 6.942, + 6.626, + 5.777, + 4.463, + 2.692, + 0.75, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.051, + 0.992, + 3.257, + 4.897, + 5.103, + 5.765, + 7.17, + 7.086, + 6.641, + 5.75, + 4.438, + 2.128, + 0.755, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.046, + 1.302, + 3.335, + 4.977, + 6.101, + 6.746, + 6.961, + 6.725, + 6.14, + 5.307, + 4.145, + 2.484, + 0.744, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.037, + 1.27, + 3.128, + 4.774, + 5.961, + 6.829, + 7.054, + 6.805, + 6.174, + 5.237, + 4.152, + 2.579, + 0.751, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.042, + 1.341, + 3.311, + 4.846, + 5.927, + 6.563, + 6.78, + 6.691, + 6.288, + 5.509, + 4.295, + 2.646, + 0.779, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.043, + 1.355, + 3.254, + 4.723, + 5.897, + 6.742, + 7.113, + 7.088, + 6.642, + 5.738, + 4.402, + 2.715, + 0.811, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.057, + 1.427, + 3.424, + 5.032, + 6.189, + 6.978, + 7.359, + 7.288, + 6.905, + 5.971, + 4.631, + 2.862, + 0.865, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.078, + 0.785, + 3.373, + 4.813, + 6.197, + 5.985, + 3.665, + 4.27, + 4.543, + 1.705, + 1.564, + 1.003, + 0.265, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.937, + 2.476, + 3.117, + 3.65, + 1.812, + 4.553, + 5.765, + 5.14, + 3.102, + 3.402, + 2.059, + 0.853, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.081, + 1.484, + 3.493, + 5.137, + 6.398, + 7.22, + 7.61, + 7.549, + 3.641, + 4.521, + 1.964, + 1.156, + 0.201, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.098, + 1.565, + 3.623, + 5.256, + 6.445, + 7.211, + 7.497, + 7.295, + 6.736, + 5.777, + 4.501, + 2.759, + 0.885, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.112, + 1.533, + 3.522, + 5.152, + 6.367, + 7.179, + 7.374, + 7.085, + 6.465, + 5.517, + 4.321, + 2.738, + 0.889, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.129, + 1.551, + 3.496, + 5.075, + 6.209, + 6.866, + 7.034, + 6.779, + 6.293, + 5.494, + 4.323, + 2.662, + 0.874, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.135, + 1.536, + 3.4, + 4.793, + 5.923, + 6.755, + 7.155, + 7.131, + 6.68, + 5.759, + 4.426, + 2.862, + 0.924, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.136, + 1.611, + 3.609, + 5.178, + 6.298, + 6.981, + 7.135, + 6.779, + 6.229, + 5.613, + 4.448, + 2.776, + 0.909, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.15, + 1.583, + 3.511, + 5.033, + 6.098, + 6.746, + 6.902, + 6.64, + 6.283, + 5.601, + 4.405, + 2.731, + 0.905, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.15, + 1.532, + 3.444, + 4.953, + 6.026, + 6.71, + 6.897, + 6.731, + 6.19, + 5.412, + 4.235, + 2.648, + 0.902, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.17, + 1.544, + 3.332, + 4.661, + 5.684, + 6.477, + 6.859, + 6.864, + 6.451, + 5.622, + 4.374, + 2.73, + 0.932, + 0.008, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.187, + 1.642, + 3.548, + 4.834, + 5.449, + 6.363, + 6.368, + 7.325, + 6.831, + 4.832, + 4.069, + 2.528, + 0.906, + 0.015, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.227, + 1.608, + 3.008, + 4.679, + 6.276, + 7.006, + 7.414, + 2.812, + 3.329, + 6.101, + 4.766, + 2.157, + 1.068, + 0.018, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.266, + 1.714, + 3.674, + 2.687, + 6.52, + 7.342, + 7.717, + 6.81, + 3.485, + 0.789, + 4.021, + 2.183, + 1.059, + 0.029, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.229, + 1.795, + 3.806, + 5.381, + 4.701, + 7.273, + 7.524, + 7.361, + 4.891, + 4.811, + 4.499, + 2.811, + 0.996, + 0.026, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.245, + 1.662, + 3.448, + 4.894, + 6.003, + 6.758, + 7.159, + 7.127, + 6.686, + 5.754, + 4.46, + 2.779, + 1.021, + 0.021, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.287, + 1.7, + 3.521, + 5.044, + 6.222, + 7.067, + 7.461, + 7.405, + 6.874, + 5.968, + 4.634, + 2.91, + 1.044, + 0.038, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.285, + 1.748, + 3.611, + 5.094, + 6.261, + 7.06, + 7.431, + 7.368, + 6.895, + 6.006, + 4.702, + 2.992, + 1.075, + 0.044, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.267, + 1.804, + 3.73, + 5.253, + 6.401, + 7.267, + 7.626, + 7.531, + 7.018, + 6.091, + 4.768, + 3.027, + 1.092, + 0.03, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.281, + 2.007, + 4.11, + 5.69, + 6.809, + 7.471, + 7.754, + 7.597, + 7.03, + 6.149, + 4.846, + 3.107, + 1.149, + 0.04, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.313, + 1.887, + 3.877, + 5.407, + 6.54, + 7.285, + 7.635, + 7.567, + 7.062, + 6.147, + 4.827, + 3.086, + 1.156, + 0.052, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.348, + 1.853, + 3.812, + 5.4, + 6.628, + 7.419, + 7.763, + 6.81, + 1.601, + 4.682, + 4.811, + 3.036, + 1.14, + 0.053, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.336, + 1.828, + 3.72, + 5.245, + 6.393, + 7.144, + 7.511, + 7.447, + 7.01, + 6.09, + 3.884, + 2.628, + 1.036, + 0.074, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.326, + 1.825, + 3.744, + 5.344, + 6.584, + 7.404, + 7.775, + 7.721, + 7.173, + 6.252, + 4.917, + 3.167, + 1.198, + 0.049, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.3, + 1.902, + 3.857, + 5.338, + 6.353, + 6.896, + 7.094, + 6.965, + 6.578, + 5.762, + 4.579, + 2.988, + 1.154, + 0.046, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.305, + 1.927, + 3.885, + 5.36, + 6.423, + 7.069, + 7.274, + 7.081, + 6.521, + 5.593, + 4.467, + 2.983, + 1.162, + 0.05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.308, + 1.877, + 3.753, + 5.174, + 6.237, + 6.82, + 6.965, + 6.698, + 6.125, + 5.499, + 4.491, + 2.948, + 1.148, + 0.053, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.304, + 1.829, + 3.589, + 4.919, + 6.034, + 6.8, + 7.18, + 7.162, + 6.728, + 5.874, + 4.632, + 3.009, + 1.156, + 0.048, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.305, + 1.883, + 3.71, + 5.016, + 5.992, + 6.618, + 6.845, + 6.764, + 6.327, + 5.59, + 4.483, + 2.929, + 1.157, + 0.056, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.321, + 1.794, + 3.549, + 4.923, + 5.987, + 6.767, + 7.113, + 7.104, + 6.677, + 5.849, + 4.641, + 3.057, + 1.205, + 0.057, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.314, + 1.894, + 2.779, + 5.231, + 6.388, + 5.687, + 7.47, + 7.361, + 6.884, + 6.04, + 4.758, + 3.12, + 1.228, + 0.067, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.356, + 1.943, + 3.88, + 5.397, + 6.56, + 7.327, + 7.669, + 7.588, + 7.121, + 6.22, + 4.92, + 3.231, + 1.284, + 0.074, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.399, + 1.967, + 3.859, + 5.374, + 6.551, + 7.364, + 7.681, + 7.595, + 7.091, + 6.179, + 4.888, + 3.198, + 1.288, + 0.092, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.393, + 1.92, + 3.733, + 5.107, + 6.145, + 6.881, + 7.149, + 7.045, + 6.647, + 5.85, + 4.687, + 3.118, + 1.263, + 0.093, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.357, + 1.903, + 3.691, + 5.065, + 6.099, + 6.786, + 7.02, + 6.875, + 6.453, + 5.686, + 4.54, + 2.999, + 1.234, + 0.094, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.367, + 1.874, + 3.593, + 4.942, + 6.03, + 6.776, + 7.11, + 7.059, + 5.284, + 5.793, + 4.584, + 2.729, + 1.21, + 0.109, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.351, + 1.437, + 3.658, + 5.024, + 6.059, + 6.789, + 7.154, + 7.089, + 6.661, + 5.842, + 4.631, + 3.08, + 1.273, + 0.111, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.34, + 1.339, + 2.631, + 2.69, + 5.307, + 6.036, + 5.146, + 3.606, + 1.252, + 4.145, + 1.955, + 3.08, + 1.225, + 0.128, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.35, + 1.744, + 3.519, + 5.041, + 6.018, + 6.69, + 7.112, + 6.487, + 4.86, + 5.023, + 4.206, + 2.442, + 1.049, + 0.136, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.345, + 1.405, + 2.757, + 2.3, + 4.778, + 5.525, + 6.216, + 6.096, + 5.705, + 2.951, + 2.595, + 1.871, + 0.764, + 0.135, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.366, + 1.783, + 3.544, + 4.924, + 5.991, + 6.607, + 6.698, + 6.407, + 5.953, + 5.318, + 4.308, + 2.856, + 1.253, + 0.142, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.372, + 1.813, + 3.54, + 4.882, + 5.944, + 6.679, + 7.044, + 7.038, + 6.632, + 5.82, + 4.621, + 3.115, + 1.328, + 0.144, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.241, + 0.827, + 1.936, + 1.405, + 1.71, + 5.694, + 4.893, + 7.138, + 6.813, + 4.741, + 4.76, + 3.136, + 1.367, + 0.157, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.401, + 1.901, + 3.763, + 5.262, + 6.425, + 7.194, + 7.568, + 7.516, + 7.061, + 6.172, + 4.904, + 3.275, + 1.404, + 0.17, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.409, + 2.093, + 4.074, + 5.6, + 6.831, + 7.614, + 7.965, + 7.892, + 7.347, + 6.435, + 5.135, + 3.497, + 1.514, + 0.162, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.393, + 2.123, + 4.159, + 5.732, + 6.917, + 7.656, + 7.875, + 7.363, + 7.222, + 6.313, + 5.04, + 3.406, + 1.48, + 0.153, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.38, + 2.023, + 3.923, + 5.37, + 6.388, + 6.995, + 7.225, + 7.04, + 6.509, + 5.633, + 4.548, + 3.169, + 1.403, + 0.169, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.386, + 1.965, + 3.789, + 5.179, + 6.206, + 6.791, + 6.98, + 6.843, + 6.463, + 5.769, + 4.67, + 3.21, + 1.416, + 0.164, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.365, + 1.87, + 3.638, + 5.045, + 6.169, + 6.946, + 7.33, + 7.321, + 6.925, + 6.094, + 4.882, + 3.334, + 1.465, + 0.168, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.385, + 2.034, + 3.796, + 5.366, + 6.289, + 7.036, + 7.642, + 7.588, + 7.109, + 6.248, + 4.983, + 3.392, + 1.485, + 0.186, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.396, + 1.921, + 3.865, + 5.312, + 6.438, + 7.196, + 7.544, + 7.488, + 7.018, + 6.144, + 4.9, + 3.342, + 1.461, + 0.18, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.384, + 1.96, + 3.8, + 5.164, + 6.108, + 6.618, + 6.696, + 6.576, + 6.352, + 5.759, + 4.673, + 3.225, + 1.431, + 0.198, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.383, + 1.885, + 3.623, + 4.916, + 6.01, + 6.759, + 7.119, + 7.103, + 6.694, + 5.893, + 4.647, + 3.187, + 1.369, + 0.181, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.371, + 1.883, + 3.707, + 5.15, + 6.287, + 7.045, + 7.403, + 7.367, + 6.929, + 6.088, + 4.873, + 3.344, + 1.481, + 0.19, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.396, + 1.901, + 3.711, + 5.115, + 6.154, + 6.748, + 6.933, + 6.831, + 6.484, + 5.796, + 4.697, + 3.253, + 1.458, + 0.209, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.383, + 1.881, + 3.707, + 5.107, + 6.094, + 6.618, + 6.821, + 6.738, + 6.419, + 5.76, + 4.66, + 3.223, + 1.462, + 0.21, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.414, + 1.843, + 3.584, + 4.914, + 5.922, + 6.618, + 6.991, + 6.992, + 6.602, + 5.758, + 4.658, + 3.214, + 1.455, + 0.205, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.374, + 1.83, + 3.587, + 4.955, + 5.969, + 6.627, + 6.897, + 6.88, + 6.538, + 5.782, + 4.654, + 3.191, + 1.446, + 0.199, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.362, + 1.851, + 3.647, + 5.033, + 6.107, + 6.826, + 7.183, + 7.15, + 6.734, + 5.931, + 4.766, + 3.279, + 1.478, + 0.199, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.343, + 1.821, + 3.599, + 4.951, + 5.987, + 6.708, + 7.065, + 7.061, + 6.676, + 5.893, + 4.74, + 3.28, + 1.49, + 0.2, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.333, + 1.812, + 3.566, + 4.901, + 5.924, + 6.467, + 6.923, + 6.987, + 6.623, + 5.868, + 4.589, + 3.142, + 1.462, + 0.191, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.322, + 1.574, + 3.055, + 4.407, + 5.912, + 6.61, + 6.862, + 6.848, + 5.785, + 5.257, + 4.121, + 2.533, + 1.369, + 0.204, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.316, + 1.518, + 3.189, + 4.542, + 5.625, + 6.798, + 6.934, + 6.745, + 6.644, + 6.022, + 4.845, + 3.36, + 1.523, + 0.197, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.322, + 1.726, + 3.356, + 4.578, + 5.606, + 6.31, + 6.672, + 6.654, + 6.265, + 3.591, + 2.21, + 3.028, + 1.411, + 0.216, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.319, + 1.708, + 3.42, + 4.786, + 5.827, + 6.563, + 6.925, + 6.935, + 6.551, + 5.784, + 4.637, + 3.201, + 1.471, + 0.216, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.328, + 1.811, + 3.653, + 5.131, + 6.301, + 7.113, + 7.492, + 7.443, + 6.993, + 6.151, + 4.925, + 3.398, + 1.547, + 0.206, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.359, + 1.884, + 3.762, + 5.16, + 6.138, + 6.689, + 6.979, + 6.997, + 6.687, + 5.996, + 4.873, + 3.39, + 1.542, + 0.203, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.305, + 1.801, + 3.602, + 4.911, + 5.871, + 6.593, + 7.008, + 7.062, + 6.718, + 5.973, + 4.829, + 3.4, + 1.553, + 0.169, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.275, + 1.868, + 3.757, + 5.159, + 6.167, + 6.736, + 7.069, + 7.072, + 6.707, + 5.986, + 4.867, + 3.4, + 1.563, + 0.174, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.269, + 1.87, + 3.786, + 5.225, + 6.293, + 6.969, + 7.325, + 7.301, + 6.903, + 6.125, + 4.969, + 3.465, + 1.586, + 0.17, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.266, + 1.852, + 3.741, + 5.105, + 5.995, + 6.524, + 6.802, + 6.797, + 6.461, + 5.776, + 4.729, + 3.309, + 1.521, + 0.16, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.256, + 1.793, + 3.583, + 4.816, + 5.608, + 6.277, + 5.472, + 6.693, + 6.117, + 5.434, + 4.369, + 3.111, + 1.432, + 0.206, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.285, + 1.598, + 3.275, + 4.591, + 5.601, + 6.286, + 6.614, + 6.592, + 5.614, + 5.618, + 4.523, + 3.091, + 1.409, + 0.209, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.319, + 1.527, + 3.209, + 4.542, + 5.573, + 6.29, + 6.682, + 5.861, + 5.576, + 5.596, + 4.499, + 3.081, + 1.415, + 0.228, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.272, + 1.617, + 3.409, + 4.845, + 5.951, + 6.723, + 7.096, + 7.079, + 6.733, + 5.955, + 4.792, + 3.31, + 1.495, + 0.169, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.239, + 1.679, + 3.518, + 4.986, + 6.119, + 6.88, + 7.262, + 7.253, + 6.844, + 6.037, + 4.87, + 3.405, + 1.548, + 0.167, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.253, + 1.641, + 3.422, + 4.82, + 5.877, + 6.584, + 6.972, + 6.967, + 6.624, + 5.833, + 4.635, + 3.178, + 1.46, + 0.229, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.215, + 0.803, + 2.65, + 1.954, + 5.098, + 5.286, + 4.745, + 5.133, + 4.841, + 2.78, + 3.61, + 2.614, + 0.968, + 0.192, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.283, + 1.625, + 3.43, + 4.962, + 6.162, + 7.028, + 7.406, + 7.35, + 6.958, + 6.175, + 4.984, + 3.451, + 1.564, + 0.161, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.216, + 1.671, + 3.549, + 5.006, + 6.079, + 6.797, + 7.162, + 7.145, + 6.784, + 6.032, + 4.882, + 3.369, + 1.515, + 0.151, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.199, + 1.669, + 3.52, + 4.938, + 5.956, + 6.626, + 7.007, + 6.985, + 6.623, + 5.873, + 4.74, + 3.261, + 1.46, + 0.157, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.059, + 0.714, + 2.59, + 3.595, + 4.432, + 3.088, + 3.983, + 4.003, + 4.577, + 5.361, + 4.351, + 3.109, + 1.392, + 0.167, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08, + 0.927, + 3.185, + 4.56, + 5.611, + 6.378, + 6.748, + 6.752, + 6.361, + 5.636, + 4.52, + 3.062, + 1.379, + 0.165, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.195, + 1.515, + 3.293, + 4.709, + 5.811, + 6.569, + 6.955, + 6.948, + 6.588, + 5.831, + 4.699, + 3.238, + 1.438, + 0.147, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.178, + 1.579, + 3.441, + 4.893, + 5.97, + 6.694, + 7.075, + 7.06, + 6.659, + 5.893, + 4.748, + 3.263, + 1.447, + 0.146, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.171, + 1.591, + 3.472, + 4.948, + 6.07, + 6.823, + 7.217, + 7.192, + 6.79, + 5.985, + 4.804, + 3.3, + 1.45, + 0.127, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.161, + 1.567, + 3.413, + 4.876, + 6.002, + 6.807, + 7.218, + 7.219, + 6.836, + 6.057, + 4.89, + 3.381, + 1.489, + 0.122, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.155, + 1.591, + 3.448, + 4.883, + 6.01, + 6.802, + 7.196, + 7.187, + 6.817, + 6.004, + 4.824, + 3.328, + 1.461, + 0.124, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.16, + 1.541, + 3.351, + 4.806, + 5.921, + 6.685, + 7.063, + 7.023, + 6.667, + 5.871, + 4.694, + 3.196, + 1.389, + 0.13, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.164, + 1.434, + 3.178, + 4.575, + 5.652, + 6.399, + 6.787, + 6.755, + 6.376, + 5.601, + 4.445, + 3.015, + 1.269, + 0.084, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021, + 0.575, + 0.638, + 0.589, + 5.466, + 5.488, + 6.362, + 0.551, + 1.722, + 1.475, + 0.194, + 1.14, + 0.143, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.153, + 1.375, + 3.111, + 4.479, + 5.565, + 6.359, + 6.764, + 6.78, + 6.418, + 5.681, + 4.555, + 3.095, + 1.327, + 0.116, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.133, + 1.439, + 3.237, + 4.685, + 5.791, + 6.568, + 6.968, + 6.962, + 6.617, + 5.828, + 4.662, + 3.116, + 1.33, + 0.114, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.128, + 1.413, + 3.238, + 4.691, + 5.783, + 6.503, + 6.89, + 6.916, + 6.551, + 5.796, + 4.661, + 3.139, + 1.338, + 0.105, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.131, + 1.37, + 3.146, + 4.579, + 5.672, + 6.451, + 6.841, + 6.832, + 6.491, + 5.717, + 4.558, + 3.057, + 1.287, + 0.095, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.13, + 1.383, + 3.167, + 4.615, + 5.716, + 6.459, + 6.829, + 6.828, + 6.476, + 5.718, + 4.568, + 3.054, + 1.279, + 0.093, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.114, + 1.364, + 3.181, + 4.639, + 5.727, + 6.437, + 6.816, + 6.799, + 6.384, + 5.645, + 4.525, + 3.056, + 1.271, + 0.077, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.111, + 1.366, + 3.151, + 4.598, + 5.679, + 6.43, + 6.818, + 6.817, + 6.482, + 5.703, + 4.547, + 3.04, + 1.256, + 0.074, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.102, + 1.35, + 3.088, + 4.521, + 5.584, + 6.338, + 6.715, + 6.699, + 6.291, + 5.508, + 4.358, + 2.931, + 1.217, + 0.068, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.487, + 0.081, + 3.773, + 5.667, + 5.713, + 5.981, + 6.055, + 6.37, + 5.615, + 4.455, + 2.982, + 1.223, + 0.064, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.098, + 1.304, + 3.074, + 4.506, + 5.589, + 6.367, + 6.802, + 6.822, + 6.441, + 5.689, + 4.532, + 3.048, + 1.233, + 0.055, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.079, + 1.348, + 3.165, + 4.607, + 5.658, + 6.388, + 6.727, + 6.738, + 6.401, + 5.651, + 4.499, + 2.987, + 1.193, + 0.049, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.079, + 1.31, + 3.098, + 4.55, + 5.646, + 6.374, + 6.767, + 6.74, + 5.057, + 5.571, + 4.399, + 2.91, + 1.173, + 0.049, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.077, + 1.276, + 3.061, + 4.564, + 5.73, + 6.557, + 6.992, + 7.025, + 6.601, + 5.802, + 4.596, + 3.075, + 1.212, + 0.046, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.074, + 1.381, + 3.345, + 4.969, + 6.183, + 7.035, + 7.434, + 7.382, + 6.958, + 6.09, + 4.819, + 3.176, + 1.231, + 0.03, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.052, + 1.371, + 3.308, + 4.864, + 6.029, + 6.803, + 7.22, + 7.213, + 6.782, + 5.946, + 4.708, + 3.113, + 1.199, + 0.031, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.051, + 1.369, + 3.321, + 4.848, + 5.963, + 6.679, + 7.109, + 7.14, + 6.75, + 5.939, + 4.727, + 3.133, + 1.198, + 0.026, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.045, + 1.34, + 3.272, + 4.809, + 5.963, + 6.745, + 7.172, + 7.198, + 6.776, + 5.961, + 4.723, + 3.117, + 1.187, + 0.027, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.039, + 1.328, + 3.233, + 4.744, + 5.899, + 6.688, + 7.114, + 7.138, + 6.727, + 5.915, + 4.695, + 3.08, + 1.151, + 0.04, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.044, + 1.306, + 3.207, + 4.786, + 6.005, + 6.81, + 7.215, + 7.174, + 6.77, + 5.916, + 4.67, + 3.046, + 1.119, + 0.035, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038, + 1.234, + 3.08, + 4.583, + 5.72, + 6.475, + 6.838, + 6.81, + 6.415, + 5.579, + 4.384, + 2.861, + 1.035, + 0.028, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.037, + 1.212, + 3.041, + 4.536, + 5.614, + 6.362, + 6.755, + 6.756, + 6.392, + 5.599, + 4.41, + 2.839, + 1.01, + 0.023, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.032, + 1.182, + 2.987, + 4.448, + 5.345, + 5.165, + 6.725, + 6.696, + 5.369, + 4.199, + 3.83, + 2.542, + 0.876, + 0.012, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027, + 1.132, + 2.963, + 4.442, + 5.54, + 6.259, + 6.64, + 6.636, + 6.243, + 5.457, + 4.249, + 2.62, + 0.928, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023, + 1.136, + 2.933, + 4.386, + 5.46, + 6.124, + 6.496, + 6.486, + 6.092, + 5.307, + 4.106, + 2.535, + 0.887, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.035, + 1.114, + 2.903, + 4.375, + 5.48, + 6.28, + 6.668, + 6.676, + 6.29, + 5.479, + 4.262, + 2.662, + 0.908, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.035, + 1.139, + 2.969, + 4.507, + 5.655, + 6.455, + 6.857, + 6.86, + 6.438, + 5.605, + 4.392, + 2.77, + 0.914, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.041, + 0.991, + 3.075, + 4.656, + 5.268, + 6.635, + 6.437, + 6.996, + 6.57, + 5.705, + 4.455, + 2.796, + 0.907, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.031, + 1.203, + 3.146, + 4.696, + 5.815, + 6.55, + 6.948, + 6.952, + 6.499, + 5.66, + 4.411, + 2.745, + 0.87, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025, + 1.161, + 3.049, + 4.605, + 5.73, + 6.45, + 6.788, + 6.756, + 6.339, + 5.5, + 4.276, + 2.631, + 0.822, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02, + 1.129, + 3.026, + 4.6, + 5.748, + 6.515, + 6.876, + 6.802, + 6.395, + 5.523, + 4.254, + 2.622, + 0.803, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.021, + 1.147, + 3.112, + 4.741, + 5.945, + 6.723, + 7.122, + 7.069, + 6.601, + 5.716, + 4.432, + 2.731, + 0.82, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015, + 1.13, + 3.027, + 4.549, + 5.702, + 6.481, + 6.861, + 6.822, + 6.42, + 5.55, + 4.285, + 2.62, + 0.771, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009, + 1.035, + 2.81, + 4.366, + 5.551, + 6.343, + 6.735, + 6.721, + 5.453, + 4.691, + 3.557, + 2.408, + 0.706, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.991, + 2.724, + 3.961, + 4.913, + 6.183, + 5.741, + 5.412, + 5.327, + 1.556, + 0.963, + 2.122, + 0.68, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.986, + 2.785, + 4.289, + 5.427, + 6.234, + 6.628, + 6.601, + 6.192, + 5.35, + 4.084, + 2.438, + 0.662, + 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.009, + 2.845, + 4.278, + 5.321, + 6.086, + 6.487, + 6.483, + 6.086, + 5.259, + 4.044, + 2.395, + 0.631, + 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.002, + 2.807, + 4.18, + 5.187, + 5.86, + 6.159, + 6.132, + 5.788, + 3.638, + 2.377, + 2.093, + 0.602, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.394, + 2.751, + 4.237, + 5.359, + 6.182, + 6.578, + 6.541, + 3.059, + 0.324, + 3.932, + 0.587, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.925, + 2.619, + 4.03, + 5.085, + 5.893, + 6.228, + 6.208, + 5.833, + 4.435, + 3.344, + 2.365, + 0.582, + 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.021, + 2.902, + 4.375, + 5.505, + 6.265, + 6.664, + 6.66, + 6.228, + 5.359, + 4.066, + 2.338, + 0.559, + 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.011, + 2.92, + 4.335, + 5.282, + 6.064, + 6.445, + 1.812, + 0.201, + 0.157, + 3.974, + 2.269, + 0.527, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.961, + 2.811, + 4.334, + 5.477, + 6.226, + 6.574, + 6.512, + 2.344, + 1.95, + 0.473, + 1.586, + 0.509, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.937, + 2.813, + 4.295, + 5.416, + 6.148, + 6.463, + 6.388, + 5.927, + 5.042, + 3.795, + 2.11, + 0.476, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.915, + 2.725, + 4.237, + 5.314, + 6.028, + 6.328, + 6.246, + 5.78, + 4.932, + 1.536, + 2.059, + 0.191, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.905, + 2.705, + 4.254, + 5.357, + 6.138, + 6.502, + 6.47, + 6.024, + 5.128, + 3.824, + 2.101, + 0.424, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.902, + 2.723, + 4.254, + 5.392, + 6.18, + 6.551, + 6.523, + 6.064, + 5.123, + 3.76, + 2.038, + 0.395, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.956, + 2.94, + 4.627, + 5.827, + 6.617, + 6.961, + 6.876, + 6.413, + 5.449, + 4.071, + 2.182, + 0.406, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.961, + 2.968, + 4.686, + 5.906, + 6.697, + 7.061, + 6.938, + 6.413, + 5.443, + 4.051, + 2.177, + 0.384, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.924, + 2.839, + 4.418, + 5.586, + 6.419, + 6.806, + 6.747, + 6.253, + 5.332, + 3.987, + 2.129, + 0.355, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.899, + 2.847, + 4.432, + 5.55, + 6.276, + 6.536, + 6.348, + 5.766, + 4.853, + 3.645, + 1.959, + 0.314, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.855, + 2.757, + 4.309, + 5.385, + 6.088, + 6.345, + 6.178, + 5.589, + 4.735, + 3.547, + 1.88, + 0.295, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.814, + 2.677, + 4.243, + 5.373, + 6.117, + 6.477, + 6.425, + 5.906, + 4.943, + 3.574, + 1.725, + 0.234, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.784, + 2.514, + 4.116, + 5.325, + 6.251, + 6.602, + 6.498, + 6.005, + 4.968, + 3.515, + 1.846, + 0.258, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.892, + 2.948, + 4.768, + 6.087, + 6.991, + 7.364, + 7.225, + 6.648, + 5.562, + 4.058, + 2.058, + 0.254, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.927, + 3.074, + 4.894, + 6.221, + 7.048, + 7.4, + 7.25, + 6.615, + 5.551, + 4.077, + 2.046, + 0.234, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.904, + 3.006, + 4.797, + 6.041, + 6.844, + 7.156, + 6.97, + 6.366, + 5.336, + 3.897, + 1.961, + 0.194, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.864, + 2.885, + 4.546, + 5.681, + 6.379, + 6.643, + 6.483, + 5.904, + 5.005, + 3.693, + 1.834, + 0.158, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.8, + 2.694, + 4.416, + 5.682, + 6.545, + 6.906, + 6.821, + 6.258, + 5.254, + 3.782, + 1.819, + 0.13, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.84, + 2.892, + 4.64, + 5.814, + 6.53, + 6.783, + 6.587, + 5.978, + 5.009, + 3.632, + 1.773, + 0.112, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.804, + 2.761, + 4.415, + 5.625, + 6.402, + 6.751, + 6.637, + 6.036, + 5.01, + 3.565, + 1.666, + 0.096, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.734, + 2.535, + 4.181, + 5.47, + 6.506, + 6.91, + 6.815, + 6.233, + 5.212, + 3.748, + 1.751, + 0.095, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.81, + 2.908, + 4.739, + 6.018, + 6.819, + 7.138, + 6.961, + 6.328, + 5.25, + 3.728, + 1.704, + 0.077, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.792, + 2.847, + 4.628, + 5.854, + 6.597, + 6.876, + 6.666, + 6.037, + 4.992, + 3.549, + 1.619, + 0.06, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.763, + 2.805, + 4.546, + 5.736, + 6.49, + 6.76, + 6.55, + 5.918, + 4.916, + 3.488, + 1.569, + 0.056, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.705, + 2.61, + 4.244, + 5.413, + 6.214, + 6.56, + 6.455, + 5.937, + 4.942, + 3.485, + 1.536, + 0.046, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.733, + 2.709, + 4.372, + 5.528, + 6.252, + 6.538, + 6.377, + 5.825, + 4.851, + 3.415, + 1.492, + 0.033, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.568, + 2.35, + 3.547, + 5.517, + 5.496, + 5.217, + 5.382, + 3.851, + 1.914, + 3.427, + 1.478, + 0.024, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.652, + 2.52, + 4.124, + 5.231, + 5.519, + 5.785, + 5.587, + 4.824, + 3.595, + 2.368, + 0.766, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.645, + 2.53, + 4.202, + 4.792, + 5.615, + 5.34, + 3.404, + 4.069, + 2.459, + 2.359, + 0.453, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.633, + 2.487, + 4.052, + 5.223, + 5.987, + 6.328, + 6.244, + 5.678, + 4.663, + 3.191, + 1.295, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.367, + 2.22, + 4.094, + 5.243, + 6.003, + 6.333, + 6.235, + 5.669, + 4.643, + 3.166, + 1.267, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.601, + 2.483, + 4.199, + 5.399, + 6.209, + 6.525, + 6.42, + 5.799, + 4.721, + 3.171, + 1.24, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.586, + 2.523, + 4.338, + 5.622, + 6.429, + 6.753, + 6.602, + 5.974, + 3.695, + 2.342, + 0.117, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.524, + 0.522, + 2.081, + 5.721, + 3.326, + 6.845, + 6.67, + 1.407, + 1.984, + 3.326, + 0.031, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.621, + 2.715, + 4.589, + 5.853, + 6.615, + 6.922, + 0.968, + 2.175, + 0.129, + 0.199, + 0.762, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.605, + 2.658, + 4.516, + 5.749, + 6.481, + 6.738, + 6.511, + 5.833, + 4.75, + 3.136, + 1.148, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.572, + 2.561, + 4.371, + 5.566, + 6.306, + 6.541, + 6.339, + 5.704, + 4.658, + 3.112, + 1.119, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.554, + 2.546, + 4.305, + 5.453, + 6.055, + 6.21, + 6.013, + 5.438, + 4.459, + 2.992, + 1.073, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.523, + 2.452, + 4.169, + 5.362, + 5.191, + 5.37, + 6.18, + 5.513, + 4.422, + 2.86, + 0.989, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.499, + 2.426, + 4.217, + 5.403, + 6.087, + 6.314, + 6.111, + 5.467, + 4.423, + 2.871, + 0.958, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.494, + 2.443, + 4.217, + 5.418, + 6.13, + 6.392, + 6.202, + 5.552, + 4.46, + 2.883, + 0.964, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.486, + 2.422, + 4.167, + 5.298, + 5.932, + 6.087, + 5.806, + 5.182, + 4.249, + 2.786, + 0.917, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.46, + 2.328, + 3.981, + 4.336, + 5.141, + 5.936, + 5.147, + 4.279, + 4.276, + 2.405, + 0.842, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.416, + 2.102, + 3.812, + 5.01, + 5.717, + 5.987, + 5.82, + 5.333, + 4.27, + 2.68, + 0.791, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.413, + 2.26, + 3.982, + 5.159, + 5.927, + 6.241, + 6.075, + 5.449, + 4.367, + 2.743, + 0.812, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.406, + 2.324, + 4.116, + 5.328, + 6.061, + 6.294, + 6.041, + 5.348, + 4.269, + 2.669, + 0.782, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.4, + 2.341, + 4.176, + 5.379, + 6.094, + 6.312, + 6.053, + 5.342, + 4.275, + 2.683, + 0.766, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.371, + 2.295, + 4.045, + 5.151, + 5.91, + 6.229, + 6.088, + 5.43, + 4.333, + 2.683, + 0.714, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.342, + 2.247, + 4.035, + 5.216, + 5.91, + 6.137, + 5.896, + 5.27, + 4.232, + 2.617, + 0.67, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.315, + 2.205, + 3.997, + 5.152, + 5.793, + 5.975, + 5.726, + 5.104, + 4.081, + 2.512, + 0.64, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.293, + 2.198, + 4.024, + 5.222, + 5.96, + 6.221, + 6.003, + 5.337, + 4.225, + 2.554, + 0.656, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.272, + 2.178, + 4.013, + 5.175, + 5.877, + 6.107, + 5.858, + 5.204, + 4.12, + 2.494, + 0.61, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.223, + 1.992, + 3.752, + 4.949, + 5.715, + 5.974, + 5.748, + 4.606, + 2.4, + 1.566, + 0.365, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.206, + 1.972, + 3.75, + 5.007, + 5.772, + 6.04, + 5.8, + 5.122, + 3.909, + 2.236, + 0.489, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.201, + 2.011, + 3.916, + 5.241, + 6.07, + 6.432, + 6.282, + 5.607, + 4.45, + 2.628, + 0.604, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.225, + 2.22, + 4.19, + 5.45, + 6.195, + 6.414, + 6.148, + 5.466, + 4.32, + 2.574, + 0.576, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.211, + 2.194, + 4.137, + 5.396, + 6.126, + 6.338, + 6.066, + 5.323, + 4.174, + 2.457, + 0.53, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.19, + 2.108, + 4.003, + 5.201, + 5.941, + 6.164, + 5.928, + 5.231, + 4.095, + 2.379, + 0.486, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.173, + 2.062, + 3.943, + 5.126, + 5.785, + 5.98, + 5.724, + 3.619, + 3.603, + 1.876, + 0.448, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.163, + 2.009, + 3.86, + 3.804, + 5.556, + 5.826, + 5.663, + 5.054, + 3.994, + 2.292, + 0.221, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.14, + 1.958, + 3.848, + 5.184, + 5.232, + 3.912, + 2.951, + 5.238, + 3.057, + 2.105, + 0.348, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.109, + 1.88, + 3.778, + 5.056, + 5.819, + 6.038, + 5.808, + 5.189, + 4.07, + 2.319, + 0.39, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.131, + 2.047, + 4.022, + 5.35, + 6.143, + 6.409, + 6.142, + 5.406, + 4.174, + 2.356, + 0.368, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.115, + 1.965, + 3.88, + 5.172, + 5.933, + 6.186, + 5.935, + 5.215, + 4.038, + 2.227, + 0.316, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.086, + 1.84, + 3.714, + 4.986, + 5.747, + 6.02, + 5.776, + 5.084, + 3.912, + 2.175, + 0.285, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.074, + 1.794, + 3.654, + 4.889, + 5.594, + 5.798, + 5.556, + 4.892, + 3.813, + 2.142, + 0.269, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.067, + 1.776, + 3.593, + 4.779, + 5.445, + 5.711, + 5.519, + 4.883, + 3.786, + 2.094, + 0.255, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.039, + 1.729, + 3.562, + 4.79, + 5.493, + 5.711, + 5.454, + 4.789, + 3.676, + 1.998, + 0.219, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.043, + 1.675, + 3.479, + 4.571, + 5.234, + 5.577, + 4.199, + 4.827, + 3.722, + 2.011, + 0.218, + 0.0, + 0.0, + 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.695, + 3.573, + 4.851, + 5.649, + 5.919, + 5.707, + 5.001, + 3.83, + 2.049, + 0.206, + 0.0, + 0.0, + 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.437, + 3.24, + 4.605, + 5.473, + 5.752, + 5.544, + 3.571, + 3.577, + 1.856, + 0.032, + 0.0, + 0.0, + 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.432, + 2.188, + 4.6, + 5.437, + 5.736, + 5.546, + 4.895, + 3.748, + 2.0, + 0.196, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.773, + 2.218, + 4.615, + 5.379, + 4.762, + 4.159, + 3.356, + 2.764, + 1.367, + 0.031, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.234, + 3.312, + 3.117, + 5.48, + 5.804, + 5.628, + 4.962, + 3.785, + 1.988, + 0.123, + 0.0, + 0.0, + 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.447, + 3.322, + 4.675, + 5.464, + 5.763, + 5.56, + 4.868, + 3.684, + 1.925, + 0.155, + 0.0, + 0.0, + 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.63, + 3.662, + 5.109, + 5.922, + 6.193, + 5.933, + 5.21, + 3.977, + 2.09, + 0.177, + 0.0, + 0.0, + 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.529, + 3.474, + 4.841, + 5.648, + 5.917, + 5.691, + 4.964, + 3.778, + 1.658, + 0.086, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.726, + 2.311, + 4.774, + 4.355, + 4.86, + 3.059, + 2.263, + 1.036, + 1.621, + 0.073, + 0.0, + 0.0, + 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.344, + 1.811, + 4.506, + 3.901, + 4.119, + 1.709, + 4.825, + 3.64, + 1.865, + 0.111, + 0.0, + 0.0, + 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.403, + 3.247, + 4.57, + 5.382, + 4.8, + 4.008, + 3.482, + 1.688, + 0.643, + 0.011, + 0.0, + 0.0, + 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.352, + 3.237, + 4.636, + 5.387, + 5.647, + 5.419, + 4.731, + 3.567, + 1.83, + 0.113, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.615, + 2.208, + 3.206, + 5.232, + 5.566, + 5.379, + 4.728, + 3.557, + 1.311, + 0.073, + 0.0, + 0.0, + 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.372, + 3.343, + 4.77, + 5.626, + 5.939, + 5.714, + 4.995, + 3.755, + 1.933, + 0.08, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.607, + 3.251, + 4.655, + 5.444, + 5.771, + 5.588, + 4.926, + 3.737, + 1.937, + 0.119, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.604, + 3.237, + 4.548, + 5.256, + 5.594, + 5.431, + 4.768, + 3.579, + 1.85, + 0.109, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.628, + 3.156, + 4.477, + 5.206, + 5.402, + 5.189, + 4.608, + 3.492, + 1.829, + 0.114, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.508, + 1.939, + 3.161, + 4.31, + 4.215, + 3.933, + 4.381, + 3.381, + 1.751, + 0.09, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.51, + 1.996, + 4.332, + 5.192, + 5.564, + 5.406, + 4.793, + 3.607, + 1.875, + 0.109, + 0.0, + 0.0, + 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.151, + 3.006, + 4.402, + 5.221, + 5.577, + 5.401, + 4.759, + 3.555, + 0.899, + 0.01, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.148, + 1.258, + 1.942, + 0.118, + 0.665, + 0.25, + 0.314, + 0.86, + 0.543, + 0.096, + 0.0, + 0.0, + 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.034, + 2.862, + 3.487, + 4.202, + 4.06, + 4.254, + 3.018, + 1.286, + 0.198, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.352, + 0.844, + 0.792, + 1.25, + 3.356, + 3.212, + 3.629, + 2.666, + 1.711, + 0.052, + 0.0, + 0.0, + 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.0, + 0.048, + 4.376, + 2.94, + 3.559, + 3.84, + 1.912, + 0.055, + 1.822, + 0.047, + 0.0, + 0.0, + 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.026, + 3.01, + 4.559, + 5.439, + 5.81, + 5.64, + 4.978, + 3.739, + 1.884, + 0.054, + 0.0, + 0.0, + 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.025, + 2.901, + 4.333, + 5.167, + 5.537, + 4.388, + 4.758, + 2.549, + 1.398, + 0.085, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.965, + 2.89, + 4.391, + 5.234, + 5.59, + 5.417, + 3.4, + 3.561, + 1.818, + 0.087, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.967, + 2.94, + 4.461, + 5.37, + 5.738, + 5.552, + 4.889, + 3.662, + 1.854, + 0.092, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.958, + 2.969, + 4.504, + 4.93, + 4.999, + 5.503, + 3.96, + 3.64, + 1.894, + 0.102, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.906, + 2.825, + 4.324, + 5.224, + 5.641, + 5.556, + 2.018, + 1.354, + 1.851, + 0.092, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.851, + 2.81, + 3.419, + 3.097, + 5.57, + 0.267, + 1.832, + 0.727, + 1.028, + 0.073, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.88, + 2.848, + 4.437, + 5.356, + 5.765, + 5.612, + 4.927, + 3.709, + 1.919, + 0.108, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.876, + 2.866, + 4.431, + 5.353, + 5.725, + 5.558, + 4.906, + 3.699, + 1.921, + 0.115, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.816, + 1.515, + 4.248, + 5.07, + 5.35, + 5.256, + 4.677, + 3.559, + 1.859, + 0.108, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.724, + 1.63, + 4.266, + 3.856, + 3.948, + 3.7, + 0.742, + 2.73, + 1.9, + 0.067, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.795, + 2.801, + 4.411, + 5.379, + 5.807, + 5.684, + 5.045, + 3.833, + 2.018, + 0.152, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.813, + 2.789, + 4.338, + 5.22, + 5.581, + 5.432, + 4.823, + 3.68, + 1.956, + 0.078, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.585, + 0.687, + 4.162, + 4.14, + 4.278, + 5.368, + 4.367, + 3.664, + 1.937, + 0.148, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.758, + 2.755, + 4.315, + 5.204, + 5.564, + 5.422, + 4.802, + 3.682, + 1.974, + 0.151, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.722, + 2.67, + 4.202, + 4.955, + 5.259, + 5.2, + 4.645, + 3.548, + 1.886, + 0.126, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.292, + 1.433, + 2.394, + 4.336, + 5.469, + 4.282, + 4.94, + 3.801, + 2.026, + 0.138, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.643, + 2.52, + 4.135, + 5.036, + 4.183, + 5.389, + 4.8, + 3.669, + 1.956, + 0.161, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.658, + 2.58, + 4.146, + 5.051, + 5.455, + 5.343, + 2.893, + 3.059, + 0.852, + 0.035, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.627, + 2.508, + 4.129, + 5.038, + 5.455, + 5.354, + 4.788, + 3.286, + 1.961, + 0.111, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.693, + 2.726, + 4.38, + 5.35, + 5.744, + 4.543, + 3.439, + 2.669, + 1.055, + 0.059, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.679, + 2.696, + 4.333, + 5.256, + 4.721, + 4.934, + 4.959, + 3.847, + 2.149, + 0.238, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.618, + 2.544, + 4.121, + 3.966, + 4.29, + 3.978, + 3.295, + 2.405, + 1.072, + 0.064, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.171, + 0.951, + 1.411, + 2.679, + 3.914, + 4.388, + 3.093, + 1.714, + 2.029, + 0.147, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.08, + 1.72, + 3.056, + 2.693, + 1.442, + 1.342, + 0.403, + 0.919, + 0.727, + 0.039, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.153, + 0.07, + 1.405, + 0.776, + 1.148, + 0.459, + 1.013, + 2.81, + 0.545, + 0.219, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.496, + 0.39, + 1.828, + 0.494, + 1.394, + 1.412, + 1.206, + 0.859, + 0.728, + 0.05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.507, + 2.355, + 3.984, + 5.036, + 5.489, + 4.157, + 3.552, + 3.837, + 1.602, + 0.335, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "size_kw": 10.0, + "name": "roof_east", + "annual_energy_produced_kwh": 16714.41, + "year_one_energy_produced_kwh": 17487.0, + "annual_energy_exported_kwh": 0.0, + "electric_to_storage_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "electric_curtailed_series_kw": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "lifecycle_om_cost_after_tax": 1564.0, + "lcoe_per_kwh": 0.0594 + } + ], + "Financial": { + "net_present_cost": 0.0, + "lcc": 2.1607552999e6, + "year_one_om_costs_before_tax": 1946.6667, + "lifecycle_generation_tech_capital_costs": 45554.4483, + "lifecycle_offgrid_other_annual_costs_after_tax": 0.0, + "initial_capital_costs_after_incentives": 111136.229, + "lifecycle_MG_upgrade_and_fuel_cost": 0.0, + "lifecycle_elecbill_after_tax": 1.9628039643e6, + "lifecycle_offgrid_other_capital_costs": 0.0, + "om_and_replacement_present_cost_after_tax": 48907.9073, + "replacements_future_cost_after_tax": 89626.194, + "developer_annual_free_cashflows": [], + "initial_capital_costs": 207302.2781, + "lifecycle_om_costs_after_tax_bau": 10947.5032, + "offtaker_annual_free_cashflows_bau": [ + 0.0, + -178945.02, + -183062.46, + -187274.64, + -191583.74, + -195991.99, + -200501.68, + -205115.15, + -209834.76, + -214662.98, + -219602.3, + -224655.28, + -229824.52, + -235112.72, + -240522.59, + -246056.96, + -251718.67, + -257510.66, + -263435.92, + -269497.54, + -275698.63, + -282042.41, + -288532.17, + -295171.27, + -301963.13, + -308911.28 + ], + "lifecycle_capital_costs": 141016.3332, + "lifecycle_production_incentive_after_tax": 0.0, + "internal_rate_of_return": 0.19, + "lifecycle_elecbill_after_tax_bau": 2.2542869359e6, + "lifecycle_chp_standby_cost_after_tax": 0.0, + "lifecycle_om_costs_before_tax_bau": 14793.9232, + "lifecycle_om_costs_after_tax": 19027.8031, + "replacements_present_cost_after_tax": 29880.1042, + "lifecycle_outage_cost": 38003.691, + "lifecycle_storage_capital_costs": 95461.8849, + "offtaker_annual_free_cashflows": [ + -207302.28, + -56136.74, + -158798.32, + -162870.37, + -166917.1, + -170971.32, + -174918.79, + -178956.01, + -183332.99, + -187804.51, + -258452.53, + -196550.24, + -201074.67, + -205703.27, + -210438.41, + -215282.57, + -220238.24, + -225308.0, + -230494.46, + -235800.33, + -241228.34, + -246781.32, + -252462.12, + -258273.71, + -264219.09, + -270301.34 + ], + "year_one_om_costs_before_tax_bau": 1120.0, + "lifecycle_emissions_cost_health_bau": 51794.8, + "lifecycle_fuel_costs_after_tax_bau": 0.0, + "developer_om_and_replacement_present_cost_after_tax": 48907.9073, + "offtaker_discounted_annual_free_cashflows": [ + -207302.28, + -51834.48, + -135390.75, + -128220.28, + -121335.25, + -114757.47, + -108409.1, + -102411.11, + -96875.28, + -91632.58, + -116438.4, + -81763.7, + -77235.31, + -72957.72, + -68917.04, + -65100.15, + -61494.66, + -58088.86, + -54871.68, + -51832.69, + -48962.01, + -46250.31, + -43688.81, + -41269.17, + -38983.54, + -36824.49 + ], + "lifecycle_emissions_cost_climate_bau": 307867.42, + "lcc_bau": 2.3311493105e6, + "lifecycle_capital_costs_plus_om_after_tax": 160044.1364, + "lifecycle_emissions_cost_health": 46648.31, + "lifecycle_om_costs_before_tax": 25713.2475, + "annualized_payment_to_third_party": 0.0, + "lifecycle_emissions_cost_climate": 277850.82, + "lifecycle_fuel_costs_after_tax": 0.0, + "lifecycle_chp_standby_cost_after_tax_bau": 0.0, + "lifecycle_production_incentive_after_tax_bau": 0.0, + "offtaker_discounted_annual_free_cashflows_bau": [ + 0.0, + -165230.86, + -156078.25, + -147432.62, + -139265.91, + -131551.57, + -124264.56, + -117381.2, + -110879.12, + -104737.22, + -98935.54, + -93455.23, + -88278.49, + -83388.5, + -78769.39, + -74406.14, + -70284.59, + -66391.34, + -62713.75, + -59239.87, + -55958.42, + -52858.74, + -49930.76, + -47164.97, + -44552.39, + -42084.52 + ], + "npv": 170394.01, + "lifecycle_MG_upgrade_and_fuel_cost_bau": 0.0, + "simple_payback_years": 4.45, + "year_one_om_costs_after_tax": 1440.5333, + "lifecycle_outage_cost_bau": 65914.3623 + } } diff --git a/test/scenarios/ac_dc_pvs.json b/test/scenarios/ac_dc_pvs.json index 41e85b7c1..1dbd041f7 100644 --- a/test/scenarios/ac_dc_pvs.json +++ b/test/scenarios/ac_dc_pvs.json @@ -36,7 +36,7 @@ { "name": "ground", "dc_coupled_with_storage": true, - "min_kw": 40.0, + "existing_kw": 40.0, "installed_cost_per_kw": 1600.0, "om_cost_per_kw": 16.0, "macrs_option_years": 5, @@ -56,7 +56,7 @@ }, { "name": "roof_west", - "min_kw": 30.0, + "existing_kw": 30.0, "installed_cost_per_kw": 1600.0, "om_cost_per_kw": 16.0, "macrs_option_years": 5, @@ -76,7 +76,7 @@ }, { "name": "roof_east", - "min_kw": 0.0, + "existing_kw": 0.0, "installed_cost_per_kw": 1600.0, "om_cost_per_kw": 16.0, "macrs_option_years": 5, From 7b9655d4b201ac6c3c18e0002c6b4033bd490645 Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Wed, 14 Aug 2024 16:27:41 -0600 Subject: [PATCH 6/8] Revert "make loads net in ac/dc test" This reverts commit edbed04ca79d0859c43d83beb6c7852ea5f15820. --- test/ac_dc_pvs_results.json | 51668 ++++++++++++++++---------------- test/debugging_tests.jl | 2 +- test/scenarios/ac_dc_pvs.json | 6 +- 3 files changed, 25835 insertions(+), 25841 deletions(-) diff --git a/test/ac_dc_pvs_results.json b/test/ac_dc_pvs_results.json index a02126f0a..9c9934d1a 100644 --- a/test/ac_dc_pvs_results.json +++ b/test/ac_dc_pvs_results.json @@ -1,54 +1,54 @@ { "Site": { "annual_emissions_from_fuelburn_tonnes_PM25": 0.0, - "lifecycle_emissions_tonnes_CO2_bau": 9358.12, - "annual_emissions_tonnes_CO2_bau": 434.86, - "lifecycle_emissions_reduction_CO2_fraction": 0.0974982154535314, - "lifecycle_emissions_tonnes_PM25": 0.48, - "lifecycle_emissions_tonnes_PM25_bau": 0.53, + "lifecycle_emissions_tonnes_CO2_bau": 10619.11, + "annual_emissions_tonnes_CO2_bau": 493.46, + "lifecycle_emissions_reduction_CO2_fraction": 0.08770414846441935, + "lifecycle_emissions_tonnes_PM25": 0.54, + "lifecycle_emissions_tonnes_PM25_bau": 0.6, "annual_emissions_from_fuelburn_tonnes_NOx_bau": 0.0, - "lifecycle_emissions_tonnes_SO2": 0.56, + "lifecycle_emissions_tonnes_SO2": 0.63, "lifecycle_emissions_from_fuelburn_tonnes_PM25": 0.0, "annual_emissions_tonnes_SO2_bau": 0.03, "annual_emissions_from_fuelburn_tonnes_NOx": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_SO2_bau": 0.0, - "annual_emissions_tonnes_NOx": 0.12, - "renewable_electricity_fraction_bau": 0.045939, + "annual_emissions_tonnes_NOx": 0.13, + "renewable_electricity_fraction_bau": 0.043832, "annual_emissions_tonnes_SO2": 0.03, - "annual_emissions_tonnes_PM25": 0.02, - "total_renewable_energy_fraction_bau": 0.045939, + "annual_emissions_tonnes_PM25": 0.03, + "total_renewable_energy_fraction_bau": 0.043832, "lifecycle_emissions_from_fuelburn_tonnes_CO2_bau": 0.0, - "lifecycle_emissions_tonnes_NOx": 2.49, + "lifecycle_emissions_tonnes_NOx": 2.84, "annual_emissions_from_fuelburn_tonnes_CO2": 0.0, "annual_emissions_from_fuelburn_tonnes_CO2_bau": 0.0, - "annual_emissions_tonnes_PM25_bau": 0.02, - "total_renewable_energy_fraction": 0.201207, + "annual_emissions_tonnes_PM25_bau": 0.03, + "total_renewable_energy_fraction": 0.127111, "annual_emissions_from_fuelburn_tonnes_SO2": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_NOx_bau": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_SO2": 0.0, "annual_renewable_electricity_kwh_bau": 45938.78, - "renewable_electricity_fraction": 0.201207, - "lifecycle_emissions_tonnes_NOx_bau": 2.76, - "lifecycle_emissions_tonnes_SO2_bau": 0.62, + "renewable_electricity_fraction": 0.127111, + "lifecycle_emissions_tonnes_NOx_bau": 3.1, + "lifecycle_emissions_tonnes_SO2_bau": 0.69, "lifecycle_emissions_from_fuelburn_tonnes_CO2": 0.0, "annual_emissions_from_fuelburn_tonnes_PM25_bau": 0.0, "annual_emissions_from_fuelburn_tonnes_SO2_bau": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_PM25_bau": 0.0, - "annual_emissions_tonnes_NOx_bau": 0.13, + "annual_emissions_tonnes_NOx_bau": 0.14, "lifecycle_emissions_from_fuelburn_tonnes_NOx": 0.0, - "annual_renewable_electricity_kwh": 201206.67, - "annual_emissions_tonnes_CO2": 392.46, - "lifecycle_emissions_tonnes_CO2": 8445.72 + "annual_renewable_electricity_kwh": 133220.29, + "annual_emissions_tonnes_CO2": 450.18, + "lifecycle_emissions_tonnes_CO2": 9687.77 }, "Outages": { - "expected_outage_cost": 38003.69101517182, + "expected_outage_cost": 48626.925060989764, "electric_storage_microgrid_upgraded": true, "unserved_load_per_outage_kwh": [ [ - 2934.9 + 3755.3 ] ], - "pv_microgrid_size_kw": 121.6667, + "pv_microgrid_size_kw": 81.6667, "pv_to_storage_series_kw": [ [ [ @@ -312,32 +312,32 @@ ], [ [ - 2.467 + 0.0 ] ], [ [ - 7.593 + 0.0 ] ], [ [ - 27.479 + 4.696 ] ], [ [ - 14.63 + 0.0 ] ], [ [ - 21.782 + 0.0 ] ], [ [ - 4.668 + 0.0 ] ], [ @@ -1015,7 +1015,7 @@ ], "pv_microgrid_upgrade_cost": 0.0, "max_outage_cost_per_outage_duration": [ - 38003.69101517182 + 48626.925060989764 ], "unserved_load_series_kw": [ [ @@ -1040,52 +1040,52 @@ ], [ [ - 4.4985749249905425 + 37.433546077563356 ] ], [ [ - 0.0 + 24.533637324522715 ] ], [ [ - 38.954240578951485 + 62.79802787330266 ] ], [ [ - 25.215782278447378 + 53.370084406028745 ] ], [ [ - 18.46897149460871 + 48.47706568845373 ] ], [ [ - 18.526527228529417 + 48.14388256624365 ] ], [ [ - 38.47081039497125 + 60.465546485892446 ] ], [ [ - 57.809153953554144 + 53.674890636684914 ] ], [ [ - 56.7607599028973 + 72.33464724259885 ] ], [ [ - 94.84041781498684 + 96.81708998727834 ] ], [ @@ -1105,7 +1105,7 @@ ], [ [ - 43.99892355189999 + 75.87522944749999 ] ], [ @@ -1160,52 +1160,52 @@ ], [ [ - 27.545618904499626 + 28.85677334013075 ] ], [ [ - 8.992402886784191 + 25.78576249215584 ] ], [ [ - 15.780079410714663 + 20.163808459202798 ] ], [ [ - 47.66268221460136 + 66.54813870915874 ] ], [ [ - 48.483197172743154 + 66.46938080672783 ] ], [ [ - 4.671189229751718 + 59.1240574308129 ] ], [ [ - 25.114796075762854 + 51.92081975310418 ] ], [ [ - 37.42444801644768 + 59.7028329893292 ] ], [ [ - 56.47509076430239 + 72.01904184917512 ] ], [ [ - 88.85549108487504 + 93.12035599694865 ] ], [ @@ -1280,52 +1280,52 @@ ], [ [ - 0.0 + 1.1344715129870426 ] ], [ [ - 3.552713678800501e-15 + 8.603499720987141 ] ], [ [ - 3.552713678800501e-15 + 0.0 ] ], [ [ - 0.0 + 7.105427357601002e-15 ] ], [ [ - 0.0 + 7.415687529864961 ] ], [ [ - 0.0 + 24.41137127316086 ] ], [ [ - 0.0 + 27.720069784593868 ] ], [ [ - 13.438481755355632 + 35.66391434900611 ] ], [ [ - 32.833056897049744 + 48.18733523581045 ] ], [ [ - 64.50725185406851 + 68.84667065747823 ] ], [ @@ -1345,7 +1345,7 @@ ], [ [ - 0.0 + 15.938152947799999 ] ], [ @@ -1370,7 +1370,7 @@ ], [ [ - 0.0 + 16.553543950349997 ] ], [ @@ -1400,52 +1400,52 @@ ], [ [ - 30.509936857109146 + 34.32778428328436 ] ], [ [ - 25.36579835636666 + 42.64199954824281 ] ], [ [ - 4.6415512077528405 + 61.15474487046113 ] ], [ [ - 21.587254811716633 + 50.954835497072466 ] ], [ [ - 13.769712185780705 + 45.3847677164197 ] ], [ [ - 13.496360661803237 + 44.82597037053687 ] ], [ [ - 19.900055645888102 + 48.64383054096701 ] ], [ [ - 32.82177591806004 + 56.79658689733885 ] ], [ [ - 53.41616690522776 + 57.23547494336699 ] ], [ [ - 86.83480344212165 + 91.86080623558979 ] ], [ @@ -1465,7 +1465,7 @@ ], [ [ - 49.25393091834653 + 75.3876981175 ] ], [ @@ -1522,252 +1522,252 @@ ], [ [ - 0.84 + 1.0 ] ], [ [ - 0.707 + 0.84 ] ], [ [ - 0.707 + 0.84 ] ], [ [ - 0.707 + 0.84 ] ], [ [ - 0.707 + 0.84 ] ], [ [ - 0.707 + 0.84 ] ], [ [ - 0.707 + 0.84 ] ], [ [ - 0.707 + 0.68 ] ], [ [ - 0.707 + 0.68 ] ], [ [ - 0.707 + 0.68 ] ], [ [ - 0.707 + 0.68 ] ], [ [ - 0.707 + 0.68 ] ], [ [ - 0.707 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.68 ] ], [ [ - 0.547 + 0.52 ] ], [ [ - 0.547 + 0.52 ] ], [ [ - 0.547 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.387 + 0.52 ] ], [ [ - 0.398 + 0.52 ] ], [ [ - 0.432 + 0.52 ] ], [ @@ -1777,172 +1777,172 @@ ], [ [ - 0.622 + 0.45 ] ], [ [ - 0.721 + 0.45 ] ], [ [ - 0.742 + 0.45 ] ], [ [ - 0.737 + 0.45 ] ], [ [ - 0.737 + 0.45 ] ], [ [ - 0.737 + 0.45 ] ], [ [ - 0.737 + 0.45 ] ], [ [ - 0.737 + 0.45 ] ], [ [ - 0.737 + 0.45 ] ], [ [ - 0.737 + 0.45 ] ], [ [ - 0.657 + 0.45 ] ], [ [ - 0.657 + 0.45 ] ], [ [ - 0.657 + 0.45 ] ], [ [ - 0.657 + 0.45 ] ], [ [ - 0.657 + 0.45 ] ], [ [ - 0.574 + 0.45 ] ], [ [ - 0.574 + 0.45 ] ], [ [ - 0.574 + 0.45 ] ], [ [ - 0.491 + 0.309 ] ], [ [ - 0.491 + 0.309 ] ], [ [ - 0.491 + 0.309 ] ], [ [ - 0.491 + 0.309 ] ], [ [ - 0.491 + 0.309 ] ], [ [ - 0.331 + 0.309 ] ], [ [ - 0.331 + 0.309 ] ], [ [ - 0.331 + 0.309 ] ], [ [ - 0.331 + 0.309 ] ], [ [ - 0.331 + 0.309 ] ], [ [ - 0.331 + 0.309 ] ], [ [ - 0.331 + 0.2 ] ], [ [ - 0.331 + 0.2 ] ], [ [ - 0.331 + 0.2 ] ], [ [ - 0.331 + 0.2 ] ], [ [ - 0.331 + 0.2 ] ], [ @@ -2487,52 +2487,52 @@ ], [ [ - 2.758 + 1.7 ] ], [ [ - 39.255 + 22.347 ] ], [ [ - 59.673 + 35.829 ] ], [ [ - 73.365 + 45.21 ] ], [ [ - 80.053 + 50.045 ] ], [ [ - 79.996 + 50.379 ] ], [ [ - 60.066 + 38.071 ] ], [ [ - 40.728 + 26.011 ] ], [ [ - 41.627 + 26.053 ] ], [ [ - 5.186 + 3.209 ] ], [ @@ -2607,52 +2607,52 @@ ], [ [ - 3.263 + 1.952 ] ], [ [ - 39.004 + 22.211 ] ], [ [ - 58.26 + 35.026 ] ], [ [ - 50.412 + 31.526 ] ], [ [ - 49.591 + 31.605 ] ], [ [ - 61.527 + 38.95 ] ], [ [ - 72.96 + 46.154 ] ], [ [ - 60.65 + 38.372 ] ], [ [ - 41.599 + 26.055 ] ], [ [ - 10.932 + 6.667 ] ], [ @@ -2727,12 +2727,12 @@ ], [ [ - 5.697 + 4.563 ] ], [ [ - 30.045 + 21.442 ] ], [ @@ -2742,37 +2742,37 @@ ], [ [ - 56.252 + 43.747 ] ], [ [ - 56.252 + 48.836 ] ], [ [ - 73.966 + 49.554 ] ], [ [ - 73.101 + 46.246 ] ], [ [ - 60.527 + 38.302 ] ], [ [ - 41.133 + 25.778 ] ], [ [ - 11.171 + 6.832 ] ], [ @@ -2847,52 +2847,52 @@ ], [ [ - 8.639 + 4.822 ] ], [ [ - 40.084 + 22.808 ] ], [ [ - 61.564 + 36.927 ] ], [ [ - 76.487 + 47.12 ] ], [ [ - 84.305 + 52.69 ] ], [ [ - 84.578 + 53.249 ] ], [ [ - 78.174 + 49.431 ] ], [ [ - 65.253 + 41.278 ] ], [ [ - 44.658 + 27.976 ] ], [ [ - 12.953 + 7.927 ] ], [ @@ -2969,12 +2969,12 @@ ], [ [ - 31.876305895599998 + 0.0 ] ], [ [ - 26.477048520759453 + 18.850742673440678 ] ], [ @@ -3004,7 +3004,7 @@ ], [ [ - 0.0 + 18.850742673440678 ] ], [ @@ -3034,7 +3034,7 @@ ], [ [ - 31.876305895599998 + 0.0 ] ], [ @@ -3099,7 +3099,7 @@ ], [ [ - 0.0 + 18.850742673440678 ] ], [ @@ -3114,7 +3114,7 @@ ], [ [ - 31.876305895599998 + 0.0 ] ], [ @@ -3224,7 +3224,7 @@ ], [ [ - 0.0 + 12.504537023484826 ] ], [ @@ -3239,7 +3239,7 @@ ], [ [ - 0.8641905819693108 + 0.0 ] ], [ @@ -3274,7 +3274,7 @@ ], [ [ - 15.938152947799999 + 0.0 ] ], [ @@ -3299,7 +3299,7 @@ ], [ [ - 16.553543950349997 + 0.0 ] ], [ @@ -3339,7 +3339,7 @@ ], [ [ - 31.876305895599998 + 0.0 ] ], [ @@ -3369,7 +3369,7 @@ ], [ [ - 0.0 + 12.862832454464847 ] ], [ @@ -3394,7 +3394,7 @@ ], [ [ - 26.13376719915346 + 0.0 ] ], [ @@ -3431,10 +3431,10 @@ "microgrid_upgrade_capital_cost": 0.0 }, "ElectricStorage": { - "size_kw": 31.88, - "size_kwh": 210.17, - "initial_capital_cost": 124638.15, - "dc_couple_inverter_size_kw": 82.18, + "size_kw": 18.85, + "size_kwh": 124.29, + "initial_capital_cost": 73705.45000000001, + "dc_couple_inverter_size_kw": 43.05, "soc_series_fraction": [ 0.5, 0.5, @@ -3443,10 +3443,10 @@ 0.5, 0.5, 0.5, - 0.51, - 0.654, - 0.798, - 0.941, + 0.509, + 0.646, + 0.789, + 0.933, 1.0, 1.0, 1.0, @@ -3467,12 +3467,12 @@ 0.2, 0.2, 0.2, - 0.21, - 0.354, - 0.497, - 0.641, - 0.785, - 0.929, + 0.209, + 0.348, + 0.491, + 0.635, + 0.779, + 0.923, 1.0, 1.0, 0.84, @@ -3491,13 +3491,13 @@ 0.2, 0.2, 0.2, - 0.21, - 0.28, - 0.424, - 0.567, - 0.711, - 0.855, - 0.999, + 0.209, + 0.269, + 0.413, + 0.556, + 0.7, + 0.844, + 0.988, 1.0, 0.84, 0.68, @@ -3515,12 +3515,12 @@ 0.2, 0.2, 0.2, - 0.236, - 0.38, - 0.523, - 0.667, - 0.811, - 0.955, + 0.231, + 0.371, + 0.515, + 0.658, + 0.802, + 0.946, 1.0, 1.0, 1.0, @@ -3563,12 +3563,12 @@ 0.2, 0.2, 0.2, - 0.212, - 0.356, - 0.5, - 0.643, - 0.787, - 0.931, + 0.21, + 0.344, + 0.488, + 0.631, + 0.774, + 0.918, 1.0, 1.0, 0.84, @@ -3587,12 +3587,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.377, - 0.521, - 0.664, - 0.808, - 0.952, + 0.229, + 0.357, + 0.501, + 0.645, + 0.789, + 0.932, 1.0, 1.0, 0.84, @@ -3611,12 +3611,12 @@ 0.2, 0.2, 0.2, - 0.235, - 0.379, - 0.523, - 0.666, - 0.81, - 0.954, + 0.23, + 0.368, + 0.511, + 0.655, + 0.799, + 0.943, 1.0, 1.0, 0.84, @@ -3635,12 +3635,84 @@ 0.2, 0.2, 0.2, - 0.209, - 0.282, + 0.208, + 0.27, + 0.414, + 0.558, + 0.702, + 0.846, + 0.989, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.212, + 0.346, + 0.489, + 0.633, + 0.777, + 0.921, + 1.0, + 1.0, + 0.861, + 0.701, + 0.541, + 0.381, + 0.221, + 0.221, + 0.221, + 0.221, + 0.221, + 0.221, + 0.221, + 0.221, + 0.221, + 0.221, + 0.221, + 0.221, + 0.222, + 0.23, + 0.281, 0.425, 0.569, - 0.713, - 0.857, + 0.712, + 0.856, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.356, + 0.499, + 0.643, + 0.787, + 0.931, 1.0, 1.0, 0.84, @@ -3659,7 +3731,7 @@ 0.2, 0.2, 0.2, - 0.214, + 0.229, 0.358, 0.502, 0.645, @@ -3667,30 +3739,318 @@ 0.933, 1.0, 1.0, - 0.851, - 0.691, - 0.531, - 0.371, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, - 0.211, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.231, + 0.366, + 0.51, + 0.653, + 0.797, + 0.941, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, 0.213, + 0.338, + 0.481, + 0.625, + 0.769, + 0.874, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.228, + 0.349, + 0.493, + 0.637, + 0.781, + 0.924, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.229, + 0.352, + 0.496, + 0.64, + 0.783, + 0.927, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, 0.222, - 0.281, - 0.425, - 0.569, + 0.313, + 0.414, + 0.557, + 0.701, + 0.845, + 0.959, + 1.0, + 0.981, + 0.821, + 0.661, + 0.501, + 0.341, + 0.341, + 0.341, + 0.341, + 0.341, + 0.341, + 0.341, + 0.341, + 0.341, + 0.341, + 0.341, + 0.341, + 0.365, + 0.377, + 0.433, + 0.526, + 0.61, + 0.754, + 0.898, + 1.0, + 0.925, + 0.765, + 0.605, + 0.445, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.314, + 0.439, + 0.583, + 0.726, + 0.87, + 0.96, + 0.976, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.21, + 0.262, + 0.397, + 0.541, + 0.685, + 0.828, + 0.967, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.235, + 0.365, + 0.508, + 0.652, + 0.796, + 0.94, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.233, + 0.357, + 0.5, + 0.644, + 0.788, + 0.932, + 1.0, + 1.0, + 1.0, + 1.0, + 0.879, + 0.719, + 0.559, + 0.559, + 0.559, + 0.559, + 0.559, + 0.559, + 0.559, + 0.559, + 0.559, + 0.559, + 0.559, + 0.559, + 0.564, + 0.612, + 0.664, + 0.744, + 0.823, + 0.907, + 0.977, + 1.0, + 1.0, + 1.0, + 0.891, + 0.731, + 0.571, + 0.571, + 0.571, + 0.571, + 0.571, + 0.571, + 0.571, + 0.571, + 0.571, + 0.571, + 0.571, + 0.571, + 0.571, + 0.587, + 0.633, + 0.661, + 0.711, 0.712, 0.856, 1.0, + 0.968, + 0.808, + 0.648, + 0.488, + 0.328, + 0.328, + 0.328, + 0.328, + 0.328, + 0.328, + 0.328, + 0.328, + 0.328, + 0.328, + 0.328, + 0.328, + 0.359, + 0.431, + 0.566, + 0.573, + 0.717, + 0.86, + 0.997, + 1.0, 0.84, 0.68, 0.52, @@ -3707,7 +4067,7 @@ 0.2, 0.2, 0.2, - 0.232, + 0.238, 0.376, 0.519, 0.663, @@ -3731,12 +4091,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.377, - 0.521, - 0.665, - 0.808, - 0.952, + 0.245, + 0.387, + 0.531, + 0.675, + 0.819, + 0.962, 1.0, 1.0, 0.84, @@ -3755,12 +4115,12 @@ 0.2, 0.2, 0.2, - 0.236, - 0.38, - 0.524, - 0.668, - 0.811, - 0.955, + 0.245, + 0.385, + 0.528, + 0.672, + 0.816, + 0.96, 1.0, 1.0, 0.84, @@ -3779,14 +4139,38 @@ 0.2, 0.2, 0.2, - 0.216, - 0.359, - 0.503, - 0.647, - 0.791, - 0.912, + 0.214, + 0.344, + 0.488, + 0.632, + 0.776, + 0.919, 1.0, 1.0, + 0.849, + 0.689, + 0.529, + 0.369, + 0.209, + 0.209, + 0.209, + 0.209, + 0.209, + 0.209, + 0.209, + 0.209, + 0.209, + 0.209, + 0.209, + 0.209, + 0.209, + 0.215, + 0.295, + 0.425, + 0.569, + 0.712, + 0.856, + 1.0, 0.84, 0.68, 0.52, @@ -3803,12 +4187,12 @@ 0.2, 0.2, 0.2, - 0.232, - 0.373, - 0.517, - 0.661, - 0.804, - 0.948, + 0.233, + 0.351, + 0.495, + 0.639, + 0.783, + 0.926, 1.0, 1.0, 0.84, @@ -3827,12 +4211,12 @@ 0.2, 0.2, 0.2, - 0.234, - 0.376, - 0.52, - 0.664, - 0.807, - 0.951, + 0.248, + 0.388, + 0.532, + 0.676, + 0.819, + 0.963, 1.0, 1.0, 0.84, @@ -3851,61 +4235,13 @@ 0.2, 0.2, 0.2, - 0.226, - 0.332, - 0.448, - 0.591, - 0.735, - 0.879, - 1.0, - 1.0, - 0.922, - 0.762, - 0.602, - 0.442, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.31, - 0.324, - 0.388, - 0.497, - 0.594, - 0.738, - 0.882, + 0.253, + 0.393, + 0.537, + 0.681, + 0.825, + 0.968, 1.0, - 0.88, - 0.72, - 0.56, - 0.4, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.274, - 0.418, - 0.562, - 0.706, - 0.849, - 0.954, - 0.972, 1.0, 0.84, 0.68, @@ -3923,13 +4259,13 @@ 0.2, 0.2, 0.2, - 0.212, - 0.272, - 0.416, - 0.559, - 0.703, - 0.847, - 0.991, + 0.25, + 0.385, + 0.529, + 0.673, + 0.816, + 0.96, + 1.0, 1.0, 0.84, 0.68, @@ -3947,13 +4283,13 @@ 0.2, 0.2, 0.2, - 0.24, - 0.384, - 0.528, - 0.671, - 0.815, - 0.959, - 1.0, + 0.211, + 0.277, + 0.388, + 0.532, + 0.675, + 0.819, + 0.963, 1.0, 0.84, 0.68, @@ -3971,86 +4307,14 @@ 0.2, 0.2, 0.2, - 0.238, + 0.251, 0.382, - 0.525, - 0.669, + 0.526, + 0.67, 0.813, 0.957, 1.0, 1.0, - 1.0, - 0.969, - 0.809, - 0.649, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.489, - 0.495, - 0.55, - 0.611, - 0.703, - 0.795, - 0.892, - 0.973, - 1.0, - 1.0, - 1.0, - 0.869, - 0.709, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.549, - 0.567, - 0.62, - 0.653, - 0.711, - 0.712, - 0.856, - 1.0, - 0.934, - 0.774, - 0.614, - 0.454, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.294, - 0.329, - 0.413, - 0.557, - 0.565, - 0.709, - 0.852, - 0.996, - 1.0, 0.84, 0.68, 0.52, @@ -4067,13 +4331,85 @@ 0.2, 0.2, 0.2, - 0.244, - 0.388, - 0.532, - 0.676, - 0.819, - 0.963, + 0.227, + 0.321, + 0.456, + 0.6, + 0.744, + 0.887, + 1.0, + 1.0, + 0.863, + 0.703, + 0.543, + 0.383, + 0.223, + 0.223, + 0.223, + 0.223, + 0.223, + 0.223, + 0.223, + 0.223, + 0.223, + 0.223, + 0.223, + 0.223, + 0.247, + 0.303, + 0.413, + 0.525, + 0.615, + 0.758, + 0.902, + 1.0, + 0.966, + 0.806, + 0.646, + 0.486, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.373, + 0.461, + 0.594, + 0.732, + 0.876, + 0.921, + 0.972, 1.0, + 0.938, + 0.778, + 0.618, + 0.458, + 0.298, + 0.298, + 0.298, + 0.298, + 0.298, + 0.298, + 0.298, + 0.298, + 0.298, + 0.298, + 0.298, + 0.298, + 0.304, + 0.358, + 0.382, + 0.436, + 0.58, + 0.723, + 0.867, 1.0, 0.84, 0.68, @@ -4091,12 +4427,12 @@ 0.2, 0.2, 0.2, - 0.253, - 0.396, - 0.54, - 0.684, - 0.828, - 0.972, + 0.2, + 0.33, + 0.473, + 0.617, + 0.761, + 0.905, 1.0, 1.0, 0.84, @@ -4115,12 +4451,12 @@ 0.2, 0.2, 0.2, - 0.253, - 0.396, - 0.54, - 0.684, - 0.828, - 0.971, + 0.249, + 0.374, + 0.491, + 0.635, + 0.778, + 0.922, 1.0, 1.0, 0.84, @@ -4139,12 +4475,12 @@ 0.2, 0.2, 0.2, - 0.216, - 0.36, - 0.503, - 0.647, - 0.791, - 0.935, + 0.256, + 0.391, + 0.534, + 0.628, + 0.771, + 0.915, 1.0, 1.0, 0.84, @@ -4163,13 +4499,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.208, - 0.3, - 0.443, - 0.587, - 0.731, - 0.875, + 0.26, + 0.4, + 0.544, + 0.688, + 0.831, + 0.975, + 1.0, 1.0, 0.84, 0.68, @@ -4187,12 +4523,12 @@ 0.2, 0.2, 0.2, - 0.239, - 0.375, - 0.519, - 0.663, - 0.807, - 0.95, + 0.219, + 0.362, + 0.505, + 0.649, + 0.793, + 0.937, 1.0, 1.0, 0.84, @@ -4211,12 +4547,12 @@ 0.2, 0.2, 0.2, - 0.256, - 0.399, - 0.543, - 0.687, - 0.831, - 0.975, + 0.262, + 0.398, + 0.542, + 0.686, + 0.829, + 0.973, 1.0, 1.0, 0.84, @@ -4235,12 +4571,12 @@ 0.2, 0.2, 0.2, - 0.261, - 0.405, - 0.549, - 0.692, - 0.836, - 0.98, + 0.26, + 0.397, + 0.54, + 0.684, + 0.828, + 0.972, 1.0, 1.0, 0.84, @@ -4259,14 +4595,38 @@ 0.2, 0.2, 0.2, - 0.258, + 0.216, + 0.299, 0.402, - 0.546, - 0.689, - 0.833, - 0.977, + 0.539, + 0.652, + 0.717, + 0.858, 1.0, 1.0, + 0.999, + 0.839, + 0.679, + 0.519, + 0.519, + 0.519, + 0.519, + 0.519, + 0.519, + 0.519, + 0.519, + 0.519, + 0.519, + 0.519, + 0.519, + 0.519, + 0.526, + 0.533, + 0.541, + 0.569, + 0.712, + 0.856, + 1.0, 0.84, 0.68, 0.52, @@ -4283,13 +4643,13 @@ 0.2, 0.2, 0.2, - 0.213, - 0.289, - 0.418, - 0.561, - 0.705, - 0.849, - 0.993, + 0.263, + 0.4, + 0.544, + 0.688, + 0.831, + 0.975, + 1.0, 1.0, 0.84, 0.68, @@ -4307,14 +4667,38 @@ 0.2, 0.2, 0.2, - 0.259, - 0.403, - 0.547, - 0.691, - 0.834, - 0.978, + 0.26, + 0.393, + 0.536, + 0.68, + 0.824, + 0.968, 1.0, 1.0, + 0.916, + 0.756, + 0.596, + 0.436, + 0.276, + 0.276, + 0.276, + 0.276, + 0.276, + 0.276, + 0.276, + 0.276, + 0.276, + 0.276, + 0.276, + 0.276, + 0.335, + 0.376, + 0.415, + 0.441, + 0.585, + 0.729, + 0.872, + 1.0, 0.84, 0.68, 0.52, @@ -4331,12 +4715,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.34, - 0.484, - 0.628, - 0.771, - 0.915, + 0.271, + 0.415, + 0.559, + 0.703, + 0.846, + 0.99, 1.0, 1.0, 0.84, @@ -4355,61 +4739,13 @@ 0.2, 0.2, 0.2, - 0.227, - 0.292, - 0.42, - 0.55, - 0.654, - 0.797, - 0.941, - 1.0, - 0.908, - 0.748, - 0.588, - 0.428, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.323, - 0.425, - 0.569, - 0.713, - 0.856, - 0.909, - 0.967, - 1.0, - 0.905, - 0.745, - 0.585, - 0.425, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, 0.272, - 0.334, - 0.362, - 0.425, - 0.569, - 0.712, - 0.856, + 0.415, + 0.559, + 0.703, + 0.847, + 0.99, + 1.0, 1.0, 0.84, 0.68, @@ -4427,12 +4763,12 @@ 0.2, 0.2, 0.2, - 0.2, - 0.344, - 0.488, - 0.631, - 0.775, - 0.919, + 0.268, + 0.411, + 0.555, + 0.698, + 0.842, + 0.986, 1.0, 1.0, 0.84, @@ -4451,12 +4787,12 @@ 0.2, 0.2, 0.2, - 0.256, - 0.4, - 0.535, - 0.679, - 0.823, - 0.966, + 0.266, + 0.408, + 0.552, + 0.696, + 0.84, + 0.983, 1.0, 1.0, 0.84, @@ -4475,12 +4811,12 @@ 0.2, 0.2, 0.2, - 0.264, - 0.408, - 0.552, - 0.66, - 0.804, - 0.948, + 0.201, + 0.345, + 0.489, + 0.632, + 0.776, + 0.92, 1.0, 1.0, 0.84, @@ -4499,14 +4835,38 @@ 0.2, 0.2, 0.2, - 0.269, - 0.413, - 0.557, - 0.701, - 0.844, - 0.988, + 0.275, + 0.419, + 0.563, + 0.707, + 0.851, + 0.994, 1.0, 1.0, + 0.984, + 0.824, + 0.664, + 0.504, + 0.344, + 0.344, + 0.344, + 0.344, + 0.344, + 0.344, + 0.344, + 0.344, + 0.344, + 0.344, + 0.344, + 0.344, + 0.352, + 0.439, + 0.508, + 0.605, + 0.749, + 0.77, + 0.913, + 1.0, 0.84, 0.68, 0.52, @@ -4523,13 +4883,13 @@ 0.2, 0.2, 0.2, - 0.223, - 0.366, - 0.51, - 0.654, - 0.798, - 0.941, - 1.0, + 0.22, + 0.302, + 0.405, + 0.537, + 0.681, + 0.824, + 0.958, 1.0, 0.84, 0.68, @@ -4547,12 +4907,12 @@ 0.2, 0.2, 0.2, - 0.271, - 0.415, - 0.559, - 0.703, - 0.847, - 0.99, + 0.231, + 0.315, + 0.448, + 0.592, + 0.736, + 0.879, 1.0, 1.0, 0.84, @@ -4570,13 +4930,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.27, - 0.413, - 0.557, - 0.701, - 0.845, - 0.988, + 0.201, + 0.272, + 0.414, + 0.547, + 0.691, + 0.835, + 0.979, 1.0, 1.0, 0.84, @@ -4594,38 +4954,14 @@ 0.2, 0.2, 0.2, - 0.2, - 0.219, - 0.314, - 0.434, - 0.578, - 0.709, - 0.784, - 0.928, - 1.0, + 0.202, + 0.274, + 0.417, + 0.56, + 0.704, + 0.848, + 0.992, 1.0, - 0.991, - 0.831, - 0.671, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.511, - 0.52, - 0.527, - 0.536, - 0.569, - 0.712, - 0.856, 1.0, 0.84, 0.68, @@ -4642,14 +4978,14 @@ 0.2, 0.2, 0.2, - 0.2, - 0.273, - 0.416, - 0.56, - 0.704, - 0.848, - 0.991, - 1.0, + 0.201, + 0.234, + 0.316, + 0.422, + 0.566, + 0.709, + 0.853, + 0.997, 1.0, 0.84, 0.68, @@ -4666,38 +5002,14 @@ 0.2, 0.2, 0.2, - 0.2, - 0.269, - 0.413, - 0.557, - 0.701, - 0.844, - 0.988, - 1.0, + 0.204, + 0.28, + 0.424, + 0.568, + 0.711, + 0.855, + 0.999, 1.0, - 0.874, - 0.714, - 0.554, - 0.394, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.303, - 0.35, - 0.395, - 0.425, - 0.569, - 0.712, - 0.856, 1.0, 0.84, 0.68, @@ -4714,12 +5026,12 @@ 0.2, 0.2, 0.2, - 0.2, - 0.283, - 0.426, - 0.57, - 0.714, - 0.858, + 0.206, + 0.288, + 0.432, + 0.576, + 0.719, + 0.863, 1.0, 1.0, 1.0, @@ -4738,13 +5050,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.283, - 0.427, - 0.571, - 0.714, - 0.858, - 1.0, + 0.203, + 0.261, + 0.405, + 0.549, + 0.693, + 0.837, + 0.98, 1.0, 1.0, 0.84, @@ -4762,13 +5074,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.279, - 0.422, - 0.566, - 0.71, - 0.854, - 0.998, + 0.207, + 0.285, + 0.396, + 0.54, + 0.684, + 0.828, + 0.971, 1.0, 1.0, 0.84, @@ -4786,13 +5098,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.277, - 0.421, - 0.565, - 0.708, - 0.852, - 0.996, + 0.207, + 0.254, + 0.355, + 0.499, + 0.643, + 0.786, + 0.93, 1.0, 1.0, 0.84, @@ -4810,13 +5122,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.201, - 0.345, - 0.489, - 0.633, - 0.776, - 0.92, + 0.208, + 0.289, + 0.433, + 0.577, + 0.72, + 0.864, + 1.0, 1.0, 1.0, 0.84, @@ -4834,38 +5146,14 @@ 0.2, 0.2, 0.2, - 0.2, - 0.287, - 0.431, - 0.575, - 0.719, - 0.863, - 1.0, + 0.209, + 0.289, + 0.433, + 0.576, + 0.72, + 0.864, 1.0, 1.0, - 0.925, - 0.765, - 0.605, - 0.445, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.294, - 0.395, - 0.475, - 0.588, - 0.731, - 0.756, - 0.899, 1.0, 0.84, 0.68, @@ -4882,13 +5170,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.223, - 0.318, - 0.438, - 0.582, - 0.726, - 0.87, + 0.211, + 0.293, + 0.437, + 0.581, + 0.725, + 0.868, + 1.0, 1.0, 1.0, 0.84, @@ -4906,13 +5194,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.236, - 0.333, - 0.477, - 0.621, - 0.764, - 0.908, + 0.211, + 0.294, + 0.438, + 0.582, + 0.725, + 0.869, + 1.0, 1.0, 1.0, 0.84, @@ -4930,12 +5218,12 @@ 0.2, 0.2, 0.2, - 0.202, - 0.283, - 0.427, - 0.571, - 0.715, - 0.858, + 0.211, + 0.289, + 0.433, + 0.577, + 0.721, + 0.864, 1.0, 1.0, 1.0, @@ -4954,12 +5242,12 @@ 0.2, 0.2, 0.2, - 0.202, - 0.286, - 0.43, - 0.574, - 0.717, - 0.861, + 0.213, + 0.3, + 0.444, + 0.588, + 0.732, + 0.875, 1.0, 1.0, 1.0, @@ -4978,13 +5266,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.24, - 0.334, - 0.457, - 0.601, - 0.745, - 0.888, + 0.214, + 0.303, + 0.447, + 0.591, + 0.734, + 0.878, + 1.0, 1.0, 1.0, 0.84, @@ -5002,12 +5290,12 @@ 0.2, 0.2, 0.2, - 0.205, - 0.293, - 0.437, - 0.58, - 0.724, - 0.868, + 0.215, + 0.304, + 0.448, + 0.591, + 0.735, + 0.879, 1.0, 1.0, 1.0, @@ -5026,13 +5314,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.302, - 0.446, - 0.59, - 0.733, - 0.877, - 1.0, + 0.206, + 0.255, + 0.345, + 0.489, + 0.633, + 0.776, + 0.92, 1.0, 1.0, 0.84, @@ -5050,13 +5338,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.271, - 0.415, - 0.559, - 0.703, - 0.846, - 0.99, + 0.215, + 0.298, + 0.441, + 0.585, + 0.729, + 0.873, + 1.0, 1.0, 1.0, 0.84, @@ -5074,12 +5362,12 @@ 0.2, 0.2, 0.2, - 0.208, - 0.299, - 0.428, - 0.571, - 0.715, - 0.859, + 0.215, + 0.295, + 0.438, + 0.582, + 0.726, + 0.87, 1.0, 1.0, 1.0, @@ -5098,13 +5386,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.262, - 0.38, - 0.524, - 0.667, - 0.811, - 0.955, + 0.216, + 0.299, + 0.409, + 0.553, + 0.697, + 0.841, + 0.984, 1.0, 1.0, 0.84, @@ -5122,13 +5410,13 @@ 0.2, 0.2, 0.2, - 0.21, - 0.303, - 0.447, - 0.591, - 0.735, - 0.878, - 1.0, + 0.215, + 0.296, + 0.402, + 0.546, + 0.69, + 0.834, + 0.977, 1.0, 1.0, 0.84, @@ -5146,12 +5434,12 @@ 0.2, 0.2, 0.2, - 0.21, - 0.303, - 0.447, - 0.59, - 0.734, - 0.878, + 0.216, + 0.297, + 0.441, + 0.585, + 0.728, + 0.872, 1.0, 1.0, 1.0, @@ -5170,13 +5458,13 @@ 0.2, 0.2, 0.2, - 0.212, - 0.308, - 0.452, - 0.596, - 0.74, - 0.883, - 1.0, + 0.218, + 0.306, + 0.45, + 0.594, + 0.738, + 0.881, + 0.932, 1.0, 1.0, 0.84, @@ -5194,12 +5482,12 @@ 0.2, 0.2, 0.2, - 0.213, - 0.309, - 0.453, - 0.597, - 0.74, - 0.884, + 0.218, + 0.307, + 0.45, + 0.594, + 0.738, + 0.882, 1.0, 1.0, 1.0, @@ -5218,12 +5506,12 @@ 0.2, 0.2, 0.2, - 0.213, + 0.219, 0.303, 0.447, 0.591, 0.735, - 0.879, + 0.878, 1.0, 1.0, 1.0, @@ -5242,13 +5530,13 @@ 0.2, 0.2, 0.2, - 0.215, - 0.316, - 0.46, - 0.604, - 0.748, - 0.891, - 1.0, + 0.219, + 0.267, + 0.37, + 0.514, + 0.658, + 0.801, + 0.945, 1.0, 1.0, 0.84, @@ -5266,7 +5554,7 @@ 0.2, 0.2, 0.2, - 0.216, + 0.222, 0.319, 0.463, 0.607, @@ -5290,12 +5578,12 @@ 0.2, 0.2, 0.2, - 0.217, - 0.32, - 0.464, - 0.608, - 0.752, - 0.895, + 0.221, + 0.312, + 0.456, + 0.6, + 0.743, + 0.887, 1.0, 1.0, 1.0, @@ -5314,13 +5602,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.263, - 0.368, - 0.512, - 0.656, - 0.799, - 0.943, + 0.223, + 0.322, + 0.466, + 0.609, + 0.753, + 0.897, + 1.0, 1.0, 1.0, 0.84, @@ -5338,12 +5626,12 @@ 0.2, 0.2, 0.2, - 0.217, - 0.313, - 0.457, - 0.601, - 0.745, - 0.888, + 0.223, + 0.32, + 0.463, + 0.607, + 0.751, + 0.895, 1.0, 1.0, 1.0, @@ -5362,12 +5650,12 @@ 0.2, 0.2, 0.2, - 0.217, - 0.31, - 0.453, - 0.597, - 0.741, - 0.885, + 0.223, + 0.313, + 0.437, + 0.581, + 0.725, + 0.868, 1.0, 1.0, 1.0, @@ -5386,13 +5674,13 @@ 0.2, 0.2, 0.2, - 0.218, + 0.224, 0.315, - 0.443, - 0.586, - 0.73, - 0.874, - 1.0, + 0.416, + 0.56, + 0.704, + 0.847, + 0.991, 1.0, 1.0, 0.84, @@ -5410,12 +5698,12 @@ 0.2, 0.2, 0.2, - 0.218, - 0.311, - 0.434, - 0.578, - 0.722, - 0.866, + 0.225, + 0.322, + 0.465, + 0.609, + 0.753, + 0.897, 1.0, 1.0, 1.0, @@ -5434,12 +5722,12 @@ 0.2, 0.2, 0.2, - 0.219, - 0.313, - 0.456, - 0.6, - 0.744, - 0.888, + 0.226, + 0.324, + 0.468, + 0.612, + 0.755, + 0.899, 1.0, 1.0, 1.0, @@ -5458,13 +5746,13 @@ 0.2, 0.2, 0.2, - 0.221, - 0.323, - 0.467, - 0.611, - 0.755, - 0.898, - 0.957, + 0.227, + 0.325, + 0.469, + 0.612, + 0.756, + 0.9, + 1.0, 1.0, 1.0, 0.84, @@ -5482,12 +5770,12 @@ 0.2, 0.2, 0.2, - 0.221, - 0.324, - 0.467, - 0.611, - 0.755, - 0.899, + 0.22, + 0.313, + 0.457, + 0.601, + 0.744, + 0.888, 1.0, 1.0, 1.0, @@ -5506,12 +5794,12 @@ 0.2, 0.2, 0.2, - 0.221, + 0.227, 0.32, 0.464, - 0.607, - 0.751, - 0.895, + 0.608, + 0.752, + 0.896, 1.0, 1.0, 1.0, @@ -5530,13 +5818,13 @@ 0.2, 0.2, 0.2, - 0.222, - 0.278, - 0.397, - 0.541, - 0.685, - 0.829, - 0.972, + 0.227, + 0.325, + 0.469, + 0.613, + 0.757, + 0.9, + 1.0, 1.0, 1.0, 0.84, @@ -5554,14 +5842,14 @@ 0.2, 0.2, 0.2, - 0.225, - 0.338, - 0.482, - 0.626, - 0.769, - 0.913, - 1.0, - 1.0, + 0.2, + 0.297, + 0.387, + 0.531, + 0.571, + 0.695, + 0.839, + 0.983, 1.0, 0.84, 0.68, @@ -5578,38 +5866,38 @@ 0.2, 0.2, 0.2, - 0.225, - 0.33, - 0.474, - 0.618, - 0.761, - 0.905, - 1.0, + 0.228, + 0.326, + 0.416, + 0.559, + 0.703, + 0.847, + 0.991, 1.0, 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.341, - 0.485, - 0.629, - 0.773, - 0.916, 1.0, 1.0, + 0.942, + 0.782, + 0.622, + 0.622, + 0.622, + 0.622, + 0.622, + 0.622, + 0.622, + 0.622, + 0.622, + 0.622, + 0.622, + 0.622, + 0.717, + 0.861, + 0.905, + 0.91, + 0.928, + 0.936, + 0.968, 1.0, 0.84, 0.68, @@ -5626,12 +5914,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.339, - 0.482, - 0.626, - 0.77, - 0.914, + 0.221, + 0.325, + 0.469, + 0.613, + 0.756, + 0.9, 1.0, 1.0, 1.0, @@ -5650,12 +5938,12 @@ 0.2, 0.2, 0.2, - 0.226, - 0.331, - 0.474, - 0.618, - 0.762, - 0.906, + 0.229, + 0.327, + 0.471, + 0.615, + 0.758, + 0.902, 1.0, 1.0, 1.0, @@ -5673,13 +5961,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.227, - 0.333, - 0.451, - 0.594, - 0.738, - 0.882, + 0.201, + 0.229, + 0.325, + 0.469, + 0.613, + 0.757, + 0.9, 1.0, 1.0, 1.0, @@ -5697,13 +5985,13 @@ 0.2, 0.2, 0.2, - 0.2, + 0.201, 0.229, - 0.341, - 0.485, - 0.629, - 0.772, - 0.916, + 0.324, + 0.468, + 0.612, + 0.756, + 0.899, 1.0, 1.0, 1.0, @@ -5721,13 +6009,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.23, - 0.344, - 0.488, - 0.631, - 0.775, - 0.919, + 0.201, + 0.225, + 0.32, + 0.464, + 0.608, + 0.752, + 0.895, 1.0, 1.0, 1.0, @@ -5745,13 +6033,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.231, - 0.345, - 0.489, - 0.632, - 0.776, - 0.92, + 0.201, + 0.23, + 0.326, + 0.47, + 0.614, + 0.758, + 0.901, 1.0, 1.0, 1.0, @@ -5769,37 +6057,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.223, - 0.331, - 0.475, - 0.619, - 0.762, - 0.906, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.377, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.248, - 0.357, - 0.501, - 0.644, - 0.788, - 0.932, + 0.201, + 0.23, + 0.32, + 0.464, + 0.607, + 0.751, + 0.895, 1.0, 1.0, 1.0, @@ -5817,13 +6081,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.232, - 0.345, - 0.489, - 0.633, - 0.777, - 0.92, + 0.201, + 0.23, + 0.325, + 0.469, + 0.613, + 0.756, + 0.9, 1.0, 1.0, 1.0, @@ -5841,14 +6105,14 @@ 0.2, 0.2, 0.2, - 0.2, - 0.2, - 0.312, - 0.416, - 0.56, - 0.607, - 0.75, - 0.894, + 0.201, + 0.23, + 0.324, + 0.467, + 0.611, + 0.755, + 0.899, + 1.0, 1.0, 1.0, 0.84, @@ -5865,39 +6129,15 @@ 0.2, 0.2, 0.2, - 0.2, + 0.201, 0.233, - 0.346, - 0.45, - 0.594, - 0.738, - 0.881, - 1.0, - 1.0, - 1.0, + 0.33, + 0.474, + 0.618, + 0.761, + 0.905, 1.0, 1.0, - 0.905, - 0.745, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.585, - 0.695, - 0.839, - 0.89, - 0.896, - 0.916, - 0.926, - 0.963, 1.0, 0.84, 0.68, @@ -5913,14 +6153,14 @@ 0.2, 0.2, 0.2, - 0.2, - 0.224, - 0.345, - 0.489, - 0.632, - 0.776, - 0.92, - 1.0, + 0.202, + 0.222, + 0.318, + 0.462, + 0.605, + 0.749, + 0.857, + 0.987, 1.0, 1.0, 0.84, @@ -5938,38 +6178,14 @@ 0.2, 0.2, 0.2, - 0.234, - 0.347, - 0.491, - 0.635, - 0.778, - 0.922, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.377, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.218, - 0.251, - 0.363, - 0.506, - 0.65, - 0.794, - 0.938, - 1.0, - 1.0, + 0.223, + 0.293, + 0.384, + 0.494, + 0.544, + 0.683, + 0.826, + 0.97, 1.0, 0.84, 0.68, @@ -5985,13 +6201,13 @@ 0.2, 0.2, 0.2, - 0.201, + 0.202, 0.233, - 0.344, - 0.488, - 0.632, - 0.776, - 0.919, + 0.33, + 0.474, + 0.618, + 0.762, + 0.905, 1.0, 1.0, 1.0, @@ -6009,13 +6225,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.229, - 0.339, - 0.483, - 0.627, - 0.771, - 0.914, + 0.203, + 0.235, + 0.336, + 0.48, + 0.623, + 0.767, + 0.911, 1.0, 1.0, 1.0, @@ -6033,13 +6249,13 @@ 0.2, 0.2, 0.2, - 0.201, + 0.203, 0.235, - 0.346, - 0.49, - 0.634, - 0.778, - 0.921, + 0.333, + 0.477, + 0.62, + 0.764, + 0.908, 1.0, 1.0, 1.0, @@ -6057,13 +6273,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.234, - 0.339, - 0.483, - 0.626, - 0.77, - 0.914, + 0.203, + 0.236, + 0.333, + 0.476, + 0.62, + 0.764, + 0.908, 1.0, 1.0, 1.0, @@ -6081,13 +6297,13 @@ 0.2, 0.2, 0.2, - 0.201, + 0.203, 0.235, - 0.345, - 0.489, - 0.632, - 0.776, - 0.92, + 0.33, + 0.473, + 0.617, + 0.761, + 0.905, 1.0, 1.0, 1.0, @@ -6105,37 +6321,13 @@ 0.2, 0.2, 0.2, - 0.201, + 0.203, 0.235, - 0.343, - 0.487, - 0.631, - 0.775, - 0.918, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.394, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.236, - 0.272, - 0.385, - 0.529, - 0.673, - 0.816, - 0.96, + 0.334, + 0.477, + 0.621, + 0.765, + 0.909, 1.0, 1.0, 1.0, @@ -6153,13 +6345,13 @@ 0.2, 0.2, 0.2, - 0.202, - 0.226, - 0.337, - 0.48, - 0.624, - 0.768, - 0.893, + 0.203, + 0.235, + 0.331, + 0.475, + 0.619, + 0.762, + 0.906, 1.0, 1.0, 1.0, @@ -6177,14 +6369,14 @@ 0.2, 0.2, 0.2, - 0.2, - 0.227, - 0.308, - 0.414, - 0.54, - 0.599, - 0.743, - 0.887, + 0.203, + 0.234, + 0.327, + 0.471, + 0.615, + 0.759, + 0.902, + 1.0, 1.0, 1.0, 0.84, @@ -6201,13 +6393,13 @@ 0.2, 0.2, 0.2, - 0.202, - 0.238, - 0.351, - 0.495, - 0.639, - 0.782, - 0.926, + 0.204, + 0.235, + 0.326, + 0.466, + 0.61, + 0.754, + 0.898, 1.0, 1.0, 1.0, @@ -6225,13 +6417,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.24, - 0.357, - 0.501, - 0.645, - 0.789, - 0.932, + 0.204, + 0.237, + 0.333, + 0.476, + 0.62, + 0.764, + 0.908, 1.0, 1.0, 1.0, @@ -6249,14 +6441,14 @@ 0.2, 0.2, 0.2, - 0.203, - 0.241, - 0.354, - 0.498, - 0.642, - 0.785, - 0.929, - 1.0, + 0.205, + 0.24, + 0.322, + 0.46, + 0.604, + 0.748, + 0.892, + 0.971, 1.0, 1.0, 0.84, @@ -6273,38 +6465,14 @@ 0.2, 0.2, 0.2, - 0.204, - 0.242, - 0.354, - 0.497, - 0.641, - 0.785, - 0.929, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.412, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.255, - 0.293, - 0.402, - 0.546, - 0.689, - 0.833, - 0.977, - 1.0, + 0.206, + 0.243, + 0.342, + 0.418, + 0.562, + 0.705, + 0.849, + 0.993, 1.0, 1.0, 0.84, @@ -6321,13 +6489,13 @@ 0.2, 0.2, 0.2, - 0.204, + 0.205, 0.24, - 0.355, - 0.499, - 0.642, - 0.786, - 0.93, + 0.341, + 0.485, + 0.625, + 0.768, + 0.912, 1.0, 1.0, 1.0, @@ -6345,13 +6513,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.241, - 0.352, - 0.496, - 0.639, - 0.783, - 0.927, + 0.205, + 0.239, + 0.332, + 0.476, + 0.619, + 0.763, + 0.907, 1.0, 1.0, 1.0, @@ -6369,13 +6537,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.239, - 0.348, - 0.491, - 0.635, - 0.779, - 0.923, + 0.207, + 0.243, + 0.337, + 0.481, + 0.624, + 0.768, + 0.912, 1.0, 1.0, 1.0, @@ -6393,13 +6561,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.241, - 0.346, - 0.49, - 0.633, - 0.777, - 0.921, + 0.206, + 0.242, + 0.337, + 0.481, + 0.625, + 0.769, + 0.912, 1.0, 1.0, 1.0, @@ -6418,12 +6586,12 @@ 0.2, 0.2, 0.205, - 0.243, - 0.354, - 0.497, - 0.641, - 0.785, - 0.929, + 0.24, + 0.338, + 0.482, + 0.626, + 0.769, + 0.913, 1.0, 1.0, 1.0, @@ -6441,37 +6609,37 @@ 0.2, 0.2, 0.2, - 0.206, - 0.247, - 0.342, - 0.485, - 0.629, - 0.773, - 0.917, + 0.205, + 0.241, + 0.348, + 0.492, + 0.636, + 0.78, + 0.923, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.413, - 0.253, - 0.253, - 0.253, - 0.253, - 0.253, - 0.253, - 0.253, - 0.253, - 0.253, - 0.253, - 0.26, - 0.302, - 0.417, - 0.505, - 0.649, - 0.793, - 0.936, + 0.367, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.214, + 0.249, + 0.351, + 0.495, + 0.638, + 0.782, + 0.926, 1.0, 1.0, 1.0, @@ -6489,13 +6657,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.246, - 0.364, - 0.507, - 0.651, - 0.795, - 0.939, + 0.208, + 0.245, + 0.344, + 0.488, + 0.632, + 0.776, + 0.919, 1.0, 1.0, 1.0, @@ -6513,13 +6681,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.245, - 0.353, - 0.497, - 0.64, - 0.784, - 0.928, + 0.207, + 0.243, + 0.34, + 0.484, + 0.627, + 0.771, + 0.915, 1.0, 1.0, 1.0, @@ -6537,13 +6705,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.25, - 0.359, - 0.502, - 0.646, - 0.79, - 0.934, + 0.207, + 0.242, + 0.339, + 0.483, + 0.626, + 0.77, + 0.914, 1.0, 1.0, 1.0, @@ -6561,13 +6729,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.248, - 0.359, - 0.503, - 0.647, - 0.791, - 0.934, + 0.206, + 0.239, + 0.338, + 0.482, + 0.626, + 0.77, + 0.913, 1.0, 1.0, 1.0, @@ -6586,12 +6754,12 @@ 0.2, 0.2, 0.206, - 0.246, - 0.36, - 0.504, - 0.647, - 0.791, - 0.935, + 0.239, + 0.338, + 0.482, + 0.626, + 0.77, + 0.913, 1.0, 1.0, 1.0, @@ -6610,36 +6778,36 @@ 0.2, 0.2, 0.206, - 0.248, - 0.372, - 0.516, - 0.659, - 0.803, - 0.947, + 0.238, + 0.334, + 0.478, + 0.622, + 0.765, + 0.909, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.433, - 0.273, - 0.273, - 0.273, - 0.273, - 0.273, - 0.273, - 0.273, - 0.273, - 0.273, - 0.273, - 0.281, - 0.323, - 0.44, - 0.584, - 0.728, - 0.871, - 1.0, + 0.368, + 0.208, + 0.208, + 0.208, + 0.208, + 0.208, + 0.208, + 0.208, + 0.208, + 0.208, + 0.208, + 0.213, + 0.245, + 0.337, + 0.48, + 0.624, + 0.767, + 0.911, 1.0, 1.0, 1.0, @@ -6657,13 +6825,13 @@ 0.2, 0.2, 0.2, - 0.209, - 0.252, - 0.367, - 0.511, - 0.655, - 0.799, - 0.942, + 0.205, + 0.237, + 0.331, + 0.475, + 0.619, + 0.763, + 0.907, 1.0, 1.0, 1.0, @@ -6681,13 +6849,13 @@ 0.2, 0.2, 0.2, - 0.209, - 0.25, - 0.362, - 0.506, - 0.65, - 0.793, - 0.937, + 0.206, + 0.238, + 0.328, + 0.47, + 0.614, + 0.757, + 0.901, 1.0, 1.0, 1.0, @@ -6705,13 +6873,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.249, - 0.361, - 0.505, - 0.648, - 0.792, - 0.936, + 0.205, + 0.237, + 0.31, + 0.454, + 0.597, + 0.741, + 0.885, 1.0, 1.0, 1.0, @@ -6730,12 +6898,12 @@ 0.2, 0.2, 0.207, - 0.246, - 0.36, - 0.504, - 0.648, - 0.792, - 0.935, + 0.241, + 0.338, + 0.482, + 0.626, + 0.769, + 0.913, 1.0, 1.0, 1.0, @@ -6753,13 +6921,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.245, - 0.36, - 0.504, - 0.648, - 0.792, - 0.935, + 0.208, + 0.244, + 0.341, + 0.485, + 0.628, + 0.772, + 0.916, 1.0, 1.0, 1.0, @@ -6777,61 +6945,61 @@ 0.2, 0.2, 0.2, - 0.207, - 0.245, - 0.355, - 0.499, - 0.643, - 0.787, - 0.931, + 0.208, + 0.242, + 0.337, + 0.48, + 0.624, + 0.768, + 0.912, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.435, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.282, - 0.319, - 0.426, - 0.569, - 0.713, - 0.857, - 1.0, + 0.398, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.245, + 0.277, + 0.37, + 0.514, + 0.657, + 0.801, + 0.945, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.206, - 0.243, - 0.352, - 0.496, - 0.64, - 0.784, - 0.927, + 0.398, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.238, + 0.245, + 0.278, + 0.368, + 0.51, + 0.653, + 0.797, + 0.941, 1.0, 1.0, 1.0, @@ -6849,13 +7017,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.244, - 0.349, - 0.492, - 0.636, - 0.78, - 0.924, + 0.208, + 0.239, + 0.33, + 0.473, + 0.617, + 0.761, + 0.905, 1.0, 1.0, 1.0, @@ -6873,15 +7041,15 @@ 0.2, 0.2, 0.2, - 0.206, - 0.243, - 0.327, - 0.471, - 0.615, - 0.759, - 0.903, - 1.0, - 1.0, + 0.208, + 0.238, + 0.307, + 0.381, + 0.525, + 0.668, + 0.812, + 0.916, + 0.95, 1.0, 0.84, 0.68, @@ -6897,13 +7065,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.247, - 0.36, - 0.504, - 0.648, - 0.791, - 0.935, + 0.207, + 0.239, + 0.326, + 0.469, + 0.613, + 0.757, + 0.901, 1.0, 1.0, 1.0, @@ -6921,14 +7089,14 @@ 0.2, 0.2, 0.2, - 0.209, - 0.251, - 0.363, - 0.507, - 0.651, - 0.794, - 0.938, - 1.0, + 0.207, + 0.236, + 0.307, + 0.37, + 0.509, + 0.653, + 0.797, + 0.941, 1.0, 1.0, 0.84, @@ -6945,63 +7113,63 @@ 0.2, 0.2, 0.2, - 0.209, - 0.249, - 0.358, - 0.502, - 0.646, - 0.79, - 0.933, + 0.207, + 0.239, + 0.327, + 0.465, + 0.609, + 0.753, + 0.897, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.457, - 0.297, - 0.297, - 0.297, - 0.297, - 0.297, - 0.297, - 0.297, - 0.297, - 0.297, - 0.297, - 0.304, - 0.342, - 0.45, - 0.593, - 0.737, - 0.881, - 1.0, + 0.4, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.247, + 0.277, + 0.364, + 0.503, + 0.646, + 0.79, + 0.934, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.456, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.304, - 0.342, - 0.447, - 0.591, - 0.735, - 0.878, - 1.0, - 1.0, - 1.0, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.206, + 0.225, + 0.275, + 0.314, + 0.361, + 0.505, + 0.648, + 0.792, + 0.936, 1.0, 0.84, 0.68, @@ -7017,13 +7185,13 @@ 0.2, 0.2, 0.2, - 0.21, - 0.245, - 0.351, - 0.495, - 0.639, - 0.783, - 0.926, + 0.208, + 0.239, + 0.331, + 0.475, + 0.619, + 0.763, + 0.906, 1.0, 1.0, 1.0, @@ -7041,14 +7209,14 @@ 0.2, 0.2, 0.2, - 0.209, - 0.244, - 0.323, - 0.41, - 0.553, - 0.697, - 0.841, - 0.961, + 0.207, + 0.24, + 0.339, + 0.482, + 0.626, + 0.77, + 0.914, + 1.0, 1.0, 1.0, 0.84, @@ -7065,13 +7233,13 @@ 0.2, 0.2, 0.2, - 0.209, - 0.245, - 0.347, - 0.49, - 0.634, - 0.778, - 0.922, + 0.206, + 0.239, + 0.339, + 0.483, + 0.627, + 0.77, + 0.914, 1.0, 1.0, 1.0, @@ -7089,14 +7257,14 @@ 0.2, 0.2, 0.2, - 0.208, - 0.242, - 0.324, - 0.397, - 0.541, - 0.685, - 0.829, - 0.972, + 0.206, + 0.238, + 0.332, + 0.476, + 0.619, + 0.763, + 0.907, + 1.0, 1.0, 1.0, 0.84, @@ -7113,37 +7281,37 @@ 0.2, 0.2, 0.2, - 0.208, - 0.245, - 0.347, - 0.491, - 0.635, - 0.778, - 0.922, + 0.207, + 0.237, + 0.329, + 0.472, + 0.616, + 0.76, + 0.904, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.46, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.3, - 0.308, - 0.343, - 0.444, - 0.588, - 0.732, - 0.876, - 1.0, + 0.4, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.247, + 0.276, + 0.364, + 0.506, + 0.65, + 0.793, + 0.937, 1.0, 1.0, 1.0, @@ -7161,15 +7329,15 @@ 0.2, 0.2, 0.2, - 0.207, - 0.229, - 0.287, - 0.332, - 0.386, - 0.53, - 0.674, - 0.818, - 0.961, + 0.206, + 0.238, + 0.329, + 0.473, + 0.617, + 0.761, + 0.904, + 1.0, + 1.0, 1.0, 0.84, 0.68, @@ -7185,13 +7353,13 @@ 0.2, 0.2, 0.2, - 0.209, - 0.245, - 0.352, - 0.496, - 0.64, - 0.783, - 0.927, + 0.207, + 0.238, + 0.331, + 0.475, + 0.619, + 0.763, + 0.906, 1.0, 1.0, 1.0, @@ -7209,13 +7377,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.246, - 0.361, - 0.504, - 0.648, - 0.792, - 0.936, + 0.207, + 0.237, + 0.329, + 0.472, + 0.616, + 0.76, + 0.904, 1.0, 1.0, 1.0, @@ -7234,12 +7402,12 @@ 0.2, 0.2, 0.207, - 0.245, - 0.361, - 0.505, - 0.649, - 0.793, - 0.936, + 0.237, + 0.325, + 0.463, + 0.607, + 0.751, + 0.894, 1.0, 1.0, 1.0, @@ -7258,12 +7426,12 @@ 0.2, 0.2, 0.207, - 0.243, - 0.353, - 0.497, - 0.64, - 0.784, - 0.928, + 0.236, + 0.325, + 0.468, + 0.612, + 0.755, + 0.899, 1.0, 1.0, 1.0, @@ -7281,37 +7449,37 @@ 0.2, 0.2, 0.2, - 0.208, - 0.243, - 0.349, - 0.493, - 0.637, - 0.78, - 0.924, + 0.207, + 0.237, + 0.327, + 0.469, + 0.613, + 0.757, + 0.901, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.464, - 0.304, - 0.304, - 0.304, - 0.304, - 0.304, - 0.304, - 0.304, - 0.304, - 0.304, - 0.304, - 0.311, - 0.345, - 0.448, - 0.592, - 0.736, - 0.879, - 1.0, + 0.431, + 0.271, + 0.271, + 0.271, + 0.271, + 0.271, + 0.271, + 0.271, + 0.271, + 0.271, + 0.271, + 0.278, + 0.307, + 0.396, + 0.539, + 0.683, + 0.826, + 0.97, 1.0, 1.0, 1.0, @@ -7329,13 +7497,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.244, - 0.35, - 0.494, - 0.638, - 0.781, - 0.925, + 0.209, + 0.239, + 0.326, + 0.464, + 0.608, + 0.752, + 0.896, 1.0, 1.0, 1.0, @@ -7353,13 +7521,13 @@ 0.2, 0.2, 0.2, - 0.209, - 0.244, - 0.352, - 0.496, - 0.64, - 0.784, - 0.927, + 0.207, + 0.236, + 0.323, + 0.461, + 0.605, + 0.748, + 0.892, 1.0, 1.0, 1.0, @@ -7377,13 +7545,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.243, - 0.349, - 0.493, - 0.637, - 0.78, - 0.924, + 0.207, + 0.235, + 0.323, + 0.463, + 0.607, + 0.751, + 0.895, 1.0, 1.0, 1.0, @@ -7401,13 +7569,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.243, - 0.345, - 0.488, - 0.632, - 0.776, - 0.92, + 0.206, + 0.233, + 0.32, + 0.458, + 0.602, + 0.745, + 0.889, 1.0, 1.0, 1.0, @@ -7425,13 +7593,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.241, - 0.344, - 0.488, - 0.632, - 0.776, - 0.919, + 0.206, + 0.233, + 0.318, + 0.455, + 0.599, + 0.743, + 0.887, 1.0, 1.0, 1.0, @@ -7449,37 +7617,37 @@ 0.2, 0.2, 0.2, - 0.209, - 0.243, - 0.347, - 0.491, - 0.634, - 0.778, - 0.922, + 0.207, + 0.233, + 0.308, + 0.432, + 0.576, + 0.719, + 0.863, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.482, - 0.322, - 0.322, - 0.322, - 0.322, - 0.322, - 0.322, - 0.322, - 0.322, - 0.322, - 0.322, - 0.331, - 0.365, - 0.468, - 0.612, - 0.756, - 0.9, - 1.0, + 0.43, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.277, + 0.305, + 0.383, + 0.51, + 0.653, + 0.797, + 0.941, 1.0, 1.0, 1.0, @@ -7497,13 +7665,13 @@ 0.2, 0.2, 0.2, - 0.21, - 0.246, - 0.346, - 0.49, - 0.634, - 0.778, - 0.921, + 0.206, + 0.233, + 0.314, + 0.443, + 0.587, + 0.731, + 0.875, 1.0, 1.0, 1.0, @@ -7521,13 +7689,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.242, - 0.342, - 0.486, - 0.63, - 0.773, - 0.917, + 0.206, + 0.233, + 0.315, + 0.448, + 0.592, + 0.736, + 0.88, 1.0, 1.0, 1.0, @@ -7545,13 +7713,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.241, - 0.342, - 0.486, - 0.63, - 0.774, - 0.918, + 0.207, + 0.234, + 0.322, + 0.464, + 0.608, + 0.752, + 0.895, 1.0, 1.0, 1.0, @@ -7570,12 +7738,12 @@ 0.2, 0.2, 0.207, - 0.239, - 0.339, - 0.482, - 0.626, - 0.77, - 0.914, + 0.235, + 0.325, + 0.469, + 0.613, + 0.756, + 0.9, 1.0, 1.0, 1.0, @@ -7593,13 +7761,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.238, - 0.337, - 0.481, - 0.625, - 0.769, - 0.912, + 0.206, + 0.232, + 0.318, + 0.456, + 0.599, + 0.743, + 0.887, 1.0, 1.0, 1.0, @@ -7617,37 +7785,37 @@ 0.2, 0.2, 0.2, - 0.208, - 0.239, - 0.326, - 0.469, - 0.613, - 0.756, - 0.9, + 0.205, + 0.23, + 0.318, + 0.461, + 0.605, + 0.749, + 0.893, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.481, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.329, - 0.361, - 0.452, - 0.596, - 0.739, - 0.883, - 1.0, + 0.429, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.273, + 0.299, + 0.387, + 0.531, + 0.675, + 0.819, + 0.962, 1.0, 1.0, 1.0, @@ -7665,13 +7833,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.238, - 0.332, - 0.476, - 0.62, - 0.764, - 0.907, + 0.205, + 0.23, + 0.318, + 0.46, + 0.604, + 0.748, + 0.892, 1.0, 1.0, 1.0, @@ -7689,37 +7857,37 @@ 0.2, 0.2, 0.2, - 0.207, - 0.238, - 0.333, - 0.477, - 0.621, - 0.765, - 0.908, + 0.204, + 0.23, + 0.315, + 0.45, + 0.594, + 0.737, + 0.881, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.208, - 0.24, - 0.341, - 0.485, - 0.629, - 0.772, - 0.916, + 0.43, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.276, + 0.302, + 0.381, + 0.51, + 0.653, + 0.797, + 0.941, 1.0, 1.0, 1.0, @@ -7738,12 +7906,12 @@ 0.2, 0.2, 0.208, - 0.241, - 0.345, - 0.489, - 0.633, - 0.776, - 0.92, + 0.237, + 0.315, + 0.442, + 0.586, + 0.73, + 0.873, 1.0, 1.0, 1.0, @@ -7761,13 +7929,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.237, - 0.336, - 0.48, - 0.624, - 0.768, - 0.912, + 0.206, + 0.231, + 0.313, + 0.448, + 0.592, + 0.736, + 0.879, 1.0, 1.0, 1.0, @@ -7786,36 +7954,36 @@ 0.2, 0.2, 0.205, - 0.235, - 0.337, - 0.481, - 0.625, - 0.768, - 0.912, + 0.229, + 0.313, + 0.452, + 0.596, + 0.739, + 0.883, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.484, - 0.324, - 0.324, - 0.324, - 0.324, - 0.324, - 0.324, - 0.324, - 0.324, - 0.324, - 0.324, - 0.329, - 0.359, - 0.462, - 0.605, - 0.749, - 0.893, - 1.0, + 0.428, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.274, + 0.299, + 0.381, + 0.516, + 0.66, + 0.804, + 0.948, 1.0, 1.0, 1.0, @@ -7833,14 +8001,14 @@ 0.2, 0.2, 0.2, - 0.205, - 0.235, - 0.337, - 0.481, - 0.625, - 0.769, - 0.912, - 1.0, + 0.206, + 0.226, + 0.293, + 0.347, + 0.49, + 0.634, + 0.774, + 0.918, 1.0, 1.0, 0.84, @@ -7857,37 +8025,37 @@ 0.2, 0.2, 0.2, - 0.205, + 0.207, 0.234, - 0.333, - 0.477, - 0.621, - 0.764, - 0.908, + 0.317, + 0.456, + 0.6, + 0.744, + 0.888, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.481, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.321, - 0.328, - 0.358, - 0.45, - 0.593, - 0.737, - 0.881, - 1.0, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.204, + 0.229, + 0.314, + 0.454, + 0.598, + 0.742, + 0.886, 1.0, 1.0, 1.0, @@ -7905,13 +8073,13 @@ 0.2, 0.2, 0.2, - 0.209, - 0.243, - 0.333, - 0.477, - 0.621, - 0.764, - 0.908, + 0.204, + 0.227, + 0.312, + 0.451, + 0.595, + 0.738, + 0.882, 1.0, 1.0, 1.0, @@ -7929,15 +8097,15 @@ 0.2, 0.2, 0.2, - 0.207, - 0.236, - 0.331, - 0.475, - 0.619, - 0.762, - 0.906, - 1.0, - 1.0, + 0.201, + 0.22, + 0.286, + 0.387, + 0.515, + 0.604, + 0.719, + 0.835, + 0.968, 1.0, 0.84, 0.68, @@ -7953,37 +8121,37 @@ 0.2, 0.2, 0.2, - 0.205, - 0.234, - 0.331, - 0.474, - 0.618, - 0.762, - 0.906, + 0.202, + 0.224, + 0.302, + 0.431, + 0.575, + 0.718, + 0.862, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.483, - 0.323, - 0.323, - 0.323, - 0.323, - 0.323, - 0.323, - 0.323, - 0.323, - 0.323, - 0.323, - 0.329, - 0.358, - 0.454, - 0.597, - 0.741, - 0.885, - 1.0, + 0.429, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.273, + 0.296, + 0.376, + 0.509, + 0.653, + 0.797, + 0.94, 1.0, 1.0, 1.0, @@ -8001,14 +8169,14 @@ 0.2, 0.2, 0.2, - 0.206, - 0.231, - 0.308, - 0.37, - 0.514, - 0.657, - 0.801, - 0.945, + 0.204, + 0.227, + 0.31, + 0.449, + 0.592, + 0.736, + 0.88, + 1.0, 1.0, 1.0, 0.84, @@ -8025,13 +8193,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.239, - 0.336, - 0.48, - 0.623, - 0.767, - 0.911, + 0.204, + 0.227, + 0.311, + 0.451, + 0.595, + 0.739, + 0.882, 1.0, 1.0, 1.0, @@ -8049,13 +8217,13 @@ 0.2, 0.2, 0.2, - 0.205, - 0.234, - 0.332, - 0.476, - 0.62, - 0.764, - 0.907, + 0.203, + 0.226, + 0.31, + 0.448, + 0.592, + 0.736, + 0.879, 1.0, 1.0, 1.0, @@ -8073,13 +8241,13 @@ 0.2, 0.2, 0.2, - 0.205, - 0.232, - 0.33, - 0.474, - 0.617, - 0.761, - 0.905, + 0.204, + 0.226, + 0.31, + 0.449, + 0.593, + 0.737, + 0.881, 1.0, 1.0, 1.0, @@ -8097,14 +8265,14 @@ 0.2, 0.2, 0.2, - 0.202, - 0.223, - 0.299, - 0.416, - 0.56, - 0.662, - 0.796, - 0.93, + 0.204, + 0.227, + 0.309, + 0.447, + 0.59, + 0.734, + 0.878, + 1.0, 1.0, 1.0, 0.84, @@ -8121,39 +8289,39 @@ 0.2, 0.2, 0.2, - 0.202, - 0.228, - 0.318, - 0.462, - 0.606, - 0.75, - 0.893, - 1.0, - 1.0, + 0.204, + 0.227, + 0.306, + 0.437, + 0.58, + 0.724, + 0.868, 1.0, - 0.84, - 0.68, - 0.52, - 0.479, - 0.319, - 0.319, - 0.319, - 0.319, - 0.319, - 0.319, - 0.319, - 0.319, - 0.319, - 0.319, - 0.324, - 0.35, - 0.443, - 0.587, - 0.731, - 0.874, 1.0, 1.0, 1.0, + 0.899, + 0.739, + 0.617, + 0.457, + 0.457, + 0.457, + 0.457, + 0.457, + 0.457, + 0.457, + 0.457, + 0.457, + 0.457, + 0.457, + 0.458, + 0.473, + 0.49, + 0.506, + 0.65, + 0.794, + 0.938, + 0.952, 1.0, 0.84, 0.68, @@ -8170,12 +8338,12 @@ 0.2, 0.2, 0.204, - 0.231, - 0.328, - 0.472, - 0.616, - 0.759, - 0.903, + 0.227, + 0.304, + 0.433, + 0.577, + 0.721, + 0.865, 1.0, 1.0, 1.0, @@ -8193,13 +8361,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.231, - 0.329, - 0.473, - 0.616, - 0.76, - 0.904, + 0.203, + 0.225, + 0.306, + 0.44, + 0.584, + 0.728, + 0.872, 1.0, 1.0, 1.0, @@ -8217,13 +8385,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.231, - 0.327, - 0.471, - 0.615, - 0.758, - 0.902, + 0.203, + 0.225, + 0.306, + 0.441, + 0.585, + 0.728, + 0.872, 1.0, 1.0, 1.0, @@ -8241,13 +8409,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.23, - 0.328, - 0.472, - 0.615, - 0.759, - 0.903, + 0.203, + 0.226, + 0.305, + 0.437, + 0.581, + 0.725, + 0.868, 1.0, 1.0, 1.0, @@ -8265,13 +8433,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.231, - 0.327, - 0.471, - 0.614, - 0.758, - 0.902, + 0.203, + 0.226, + 0.306, + 0.44, + 0.584, + 0.728, + 0.871, 1.0, 1.0, 1.0, @@ -8289,61 +8457,37 @@ 0.2, 0.2, 0.2, - 0.205, - 0.231, - 0.323, - 0.466, - 0.61, - 0.754, - 0.898, - 1.0, + 0.203, + 0.225, + 0.306, + 0.441, + 0.584, + 0.728, + 0.872, 1.0, 1.0, - 0.989, - 0.829, - 0.669, - 0.599, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.439, - 0.44, - 0.458, - 0.478, - 0.496, - 0.64, - 0.784, - 0.928, - 0.945, 1.0, 0.84, 0.68, 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.231, - 0.321, - 0.465, - 0.608, - 0.752, - 0.896, + 0.397, + 0.237, + 0.237, + 0.237, + 0.237, + 0.237, + 0.237, + 0.237, + 0.237, + 0.237, + 0.237, + 0.24, + 0.263, + 0.344, + 0.478, + 0.621, + 0.765, + 0.909, 1.0, 1.0, 1.0, @@ -8361,13 +8505,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.229, - 0.322, - 0.466, - 0.61, - 0.754, - 0.898, + 0.203, + 0.226, + 0.305, + 0.438, + 0.581, + 0.725, + 0.869, 1.0, 1.0, 1.0, @@ -8385,14 +8529,14 @@ 0.2, 0.2, 0.2, - 0.204, - 0.229, - 0.323, - 0.467, - 0.61, - 0.754, - 0.898, - 1.0, + 0.2, + 0.213, + 0.215, + 0.324, + 0.468, + 0.611, + 0.755, + 0.899, 1.0, 1.0, 0.84, @@ -8409,13 +8553,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.23, - 0.321, - 0.465, - 0.609, - 0.753, - 0.897, + 0.203, + 0.226, + 0.306, + 0.438, + 0.582, + 0.726, + 0.869, 1.0, 1.0, 1.0, @@ -8433,13 +8577,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.23, - 0.323, - 0.467, - 0.611, - 0.755, - 0.898, + 0.202, + 0.225, + 0.307, + 0.442, + 0.586, + 0.73, + 0.873, 1.0, 1.0, 1.0, @@ -8457,37 +8601,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.229, - 0.323, - 0.467, - 0.61, - 0.754, - 0.898, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.456, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.296, - 0.3, - 0.326, - 0.419, - 0.563, - 0.707, - 0.851, - 0.994, + 0.202, + 0.226, + 0.307, + 0.441, + 0.585, + 0.728, + 0.872, 1.0, 1.0, 1.0, @@ -8505,10 +8625,34 @@ 0.2, 0.2, 0.2, - 0.203, - 0.23, + 0.202, + 0.228, + 0.309, + 0.444, + 0.588, + 0.731, + 0.875, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.367, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.21, + 0.234, 0.322, - 0.466, + 0.465, 0.609, 0.753, 0.897, @@ -8529,14 +8673,14 @@ 0.2, 0.2, 0.2, - 0.2, - 0.215, - 0.217, - 0.343, - 0.487, - 0.631, - 0.775, - 0.919, + 0.201, + 0.225, + 0.312, + 0.456, + 0.6, + 0.743, + 0.887, + 1.0, 1.0, 1.0, 0.84, @@ -8553,13 +8697,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.23, - 0.322, - 0.466, - 0.61, - 0.754, - 0.897, + 0.201, + 0.225, + 0.313, + 0.457, + 0.601, + 0.744, + 0.888, 1.0, 1.0, 1.0, @@ -8577,13 +8721,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.229, - 0.324, - 0.467, - 0.611, - 0.755, - 0.899, + 0.201, + 0.225, + 0.312, + 0.456, + 0.6, + 0.743, + 0.887, 1.0, 1.0, 1.0, @@ -8601,13 +8745,13 @@ 0.2, 0.2, 0.2, - 0.202, - 0.23, - 0.323, - 0.467, - 0.611, - 0.755, - 0.899, + 0.201, + 0.225, + 0.311, + 0.454, + 0.598, + 0.742, + 0.885, 1.0, 1.0, 1.0, @@ -8625,37 +8769,13 @@ 0.2, 0.2, 0.2, - 0.202, - 0.232, - 0.326, - 0.47, - 0.614, - 0.757, - 0.901, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.435, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.275, - 0.278, - 0.306, - 0.408, - 0.551, - 0.695, - 0.839, - 0.983, + 0.201, + 0.225, + 0.311, + 0.455, + 0.599, + 0.743, + 0.887, 1.0, 1.0, 1.0, @@ -8673,37 +8793,37 @@ 0.2, 0.2, 0.2, - 0.202, - 0.229, - 0.33, - 0.474, - 0.617, - 0.761, - 0.905, + 0.201, + 0.224, + 0.308, + 0.446, + 0.59, + 0.734, + 0.877, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.202, - 0.229, - 0.331, - 0.475, - 0.619, - 0.762, - 0.906, + 0.367, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.207, + 0.208, + 0.23, + 0.313, + 0.451, + 0.594, + 0.738, + 0.882, 1.0, 1.0, 1.0, @@ -8721,13 +8841,13 @@ 0.2, 0.2, 0.2, - 0.202, - 0.229, - 0.33, - 0.474, - 0.617, - 0.761, - 0.905, + 0.201, + 0.224, + 0.306, + 0.441, + 0.585, + 0.728, + 0.872, 1.0, 1.0, 1.0, @@ -8746,12 +8866,12 @@ 0.2, 0.2, 0.201, - 0.228, - 0.329, - 0.473, - 0.617, - 0.76, - 0.904, + 0.224, + 0.306, + 0.442, + 0.585, + 0.729, + 0.873, 1.0, 1.0, 1.0, @@ -8769,13 +8889,13 @@ 0.2, 0.2, 0.2, - 0.202, - 0.229, - 0.329, - 0.473, - 0.617, - 0.76, - 0.904, + 0.201, + 0.224, + 0.306, + 0.44, + 0.584, + 0.728, + 0.871, 1.0, 1.0, 1.0, @@ -8794,36 +8914,12 @@ 0.2, 0.2, 0.201, - 0.228, - 0.325, - 0.469, - 0.612, - 0.756, - 0.9, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.432, - 0.272, - 0.272, - 0.272, - 0.272, - 0.272, - 0.272, - 0.272, - 0.272, - 0.272, - 0.272, - 0.273, - 0.3, - 0.396, - 0.54, - 0.683, - 0.827, - 0.971, + 0.224, + 0.305, + 0.44, + 0.584, + 0.727, + 0.871, 1.0, 1.0, 1.0, @@ -8842,12 +8938,12 @@ 0.2, 0.2, 0.201, - 0.227, - 0.322, - 0.466, - 0.61, - 0.754, - 0.898, + 0.224, + 0.308, + 0.446, + 0.59, + 0.734, + 0.878, 1.0, 1.0, 1.0, @@ -8866,12 +8962,12 @@ 0.2, 0.2, 0.201, - 0.228, - 0.323, - 0.467, - 0.61, - 0.754, - 0.898, + 0.223, + 0.311, + 0.454, + 0.598, + 0.742, + 0.886, 1.0, 1.0, 1.0, @@ -8890,12 +8986,12 @@ 0.2, 0.2, 0.201, - 0.228, - 0.323, - 0.466, - 0.61, - 0.754, - 0.898, + 0.225, + 0.315, + 0.458, + 0.602, + 0.746, + 0.89, 1.0, 1.0, 1.0, @@ -8914,12 +9010,12 @@ 0.2, 0.2, 0.201, - 0.228, - 0.322, - 0.466, - 0.61, - 0.753, - 0.897, + 0.225, + 0.312, + 0.455, + 0.599, + 0.742, + 0.886, 1.0, 1.0, 1.0, @@ -8937,13 +9033,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.228, - 0.325, - 0.468, - 0.612, - 0.756, - 0.9, + 0.2, + 0.224, + 0.311, + 0.454, + 0.598, + 0.742, + 0.886, 1.0, 1.0, 1.0, @@ -8961,37 +9057,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.227, - 0.328, - 0.472, - 0.616, - 0.759, - 0.903, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.412, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.252, - 0.281, - 0.384, - 0.528, - 0.672, - 0.816, - 0.959, + 0.2, + 0.225, + 0.315, + 0.459, + 0.603, + 0.746, + 0.89, 1.0, 1.0, 1.0, @@ -9009,13 +9081,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.228, - 0.33, - 0.473, - 0.617, - 0.761, - 0.905, + 0.2, + 0.225, + 0.313, + 0.457, + 0.6, + 0.744, + 0.888, 1.0, 1.0, 1.0, @@ -9034,12 +9106,12 @@ 0.2, 0.2, 0.2, - 0.228, - 0.329, - 0.472, - 0.616, - 0.76, - 0.904, + 0.224, + 0.306, + 0.444, + 0.588, + 0.731, + 0.875, 1.0, 1.0, 1.0, @@ -9058,12 +9130,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.334, - 0.477, - 0.621, - 0.765, - 0.909, + 0.223, + 0.304, + 0.428, + 0.571, + 0.715, + 0.859, 1.0, 1.0, 1.0, @@ -9082,12 +9154,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.331, - 0.475, - 0.619, - 0.763, - 0.906, + 0.223, + 0.306, + 0.442, + 0.586, + 0.73, + 0.874, 1.0, 1.0, 1.0, @@ -9106,12 +9178,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.323, - 0.467, - 0.611, - 0.754, - 0.898, + 0.223, + 0.309, + 0.446, + 0.589, + 0.733, + 0.877, 1.0, 1.0, 1.0, @@ -9130,36 +9202,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.32, - 0.464, - 0.608, - 0.751, - 0.895, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.394, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.234, - 0.261, - 0.357, - 0.501, - 0.645, - 0.788, - 0.932, + 0.224, + 0.308, + 0.443, + 0.586, + 0.73, + 0.874, 1.0, 1.0, 1.0, @@ -9178,12 +9226,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.326, - 0.47, - 0.613, - 0.757, - 0.901, + 0.21, + 0.294, + 0.43, + 0.574, + 0.718, + 0.862, 1.0, 1.0, 1.0, @@ -9202,12 +9250,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.325, - 0.469, - 0.613, - 0.757, - 0.9, + 0.223, + 0.303, + 0.434, + 0.577, + 0.721, + 0.865, 1.0, 1.0, 1.0, @@ -9226,15 +9274,39 @@ 0.2, 0.2, 0.2, - 0.212, - 0.309, - 0.453, - 0.596, - 0.74, - 0.884, + 0.225, + 0.315, + 0.457, + 0.601, + 0.744, + 0.888, 1.0, 1.0, 1.0, + 0.891, + 0.731, + 0.571, + 0.411, + 0.251, + 0.251, + 0.251, + 0.251, + 0.251, + 0.251, + 0.251, + 0.251, + 0.251, + 0.251, + 0.251, + 0.276, + 0.367, + 0.508, + 0.652, + 0.796, + 0.939, + 0.991, + 0.996, + 1.0, 0.84, 0.68, 0.52, @@ -9250,12 +9322,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.32, - 0.463, - 0.607, - 0.751, - 0.895, + 0.225, + 0.312, + 0.454, + 0.598, + 0.742, + 0.885, 1.0, 1.0, 1.0, @@ -9274,42 +9346,18 @@ 0.2, 0.2, 0.2, - 0.229, - 0.333, - 0.477, - 0.62, - 0.764, - 0.908, + 0.225, + 0.313, + 0.454, + 0.598, + 0.742, + 0.885, 1.0, 1.0, 1.0, - 0.843, - 0.683, - 0.523, - 0.363, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.203, - 0.233, - 0.338, - 0.481, - 0.625, - 0.769, - 0.913, - 0.972, - 0.978, - 0.983, - 0.823, - 0.663, - 0.503, + 0.84, + 0.68, + 0.52, 0.36, 0.2, 0.2, @@ -9322,36 +9370,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.33, - 0.474, - 0.618, - 0.762, - 0.905, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.377, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.246, - 0.348, - 0.492, - 0.636, - 0.78, - 0.924, + 0.224, + 0.311, + 0.45, + 0.594, + 0.738, + 0.882, 1.0, 1.0, 1.0, @@ -9370,12 +9394,12 @@ 0.2, 0.2, 0.2, - 0.228, - 0.328, - 0.472, - 0.616, - 0.759, - 0.903, + 0.225, + 0.311, + 0.451, + 0.595, + 0.739, + 0.883, 1.0, 1.0, 1.0, @@ -9394,12 +9418,12 @@ 0.2, 0.2, 0.2, - 0.228, - 0.328, - 0.472, - 0.616, - 0.76, - 0.903, + 0.225, + 0.312, + 0.454, + 0.597, + 0.741, + 0.885, 1.0, 1.0, 1.0, @@ -9418,12 +9442,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.33, - 0.474, - 0.618, - 0.761, - 0.905, + 0.227, + 0.321, + 0.465, + 0.609, + 0.753, + 0.897, 1.0, 1.0, 1.0, @@ -9442,12 +9466,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.341, - 0.485, - 0.628, - 0.772, - 0.916, + 0.227, + 0.324, + 0.467, + 0.611, + 0.755, + 0.899, 1.0, 1.0, 1.0, @@ -9466,12 +9490,12 @@ 0.2, 0.2, 0.2, - 0.232, - 0.343, - 0.487, - 0.631, - 0.775, - 0.918, + 0.227, + 0.32, + 0.463, + 0.607, + 0.751, + 0.895, 1.0, 1.0, 1.0, @@ -9490,12 +9514,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.339, - 0.483, - 0.626, - 0.77, - 0.914, + 0.226, + 0.32, + 0.464, + 0.608, + 0.751, + 0.895, 1.0, 1.0, 1.0, @@ -9514,12 +9538,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.339, - 0.483, - 0.627, - 0.771, - 0.914, + 0.226, + 0.317, + 0.461, + 0.605, + 0.748, + 0.892, 1.0, 1.0, 1.0, @@ -9538,12 +9562,12 @@ 0.2, 0.2, 0.2, - 0.23, - 0.336, - 0.479, - 0.623, - 0.767, - 0.911, + 0.225, + 0.314, + 0.458, + 0.602, + 0.745, + 0.889, 1.0, 1.0, 1.0, @@ -9562,12 +9586,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.332, - 0.476, - 0.62, - 0.764, - 0.907, + 0.223, + 0.305, + 0.442, + 0.585, + 0.729, + 0.873, 1.0, 1.0, 1.0, @@ -9586,12 +9610,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.321, - 0.465, - 0.609, - 0.753, - 0.897, + 0.228, + 0.327, + 0.471, + 0.615, + 0.758, + 0.902, 1.0, 1.0, 1.0, @@ -9610,12 +9634,12 @@ 0.2, 0.2, 0.2, - 0.232, - 0.347, - 0.491, - 0.635, - 0.779, - 0.922, + 0.23, + 0.335, + 0.478, + 0.622, + 0.766, + 0.91, 1.0, 1.0, 1.0, @@ -9634,12 +9658,12 @@ 0.2, 0.2, 0.2, - 0.234, - 0.356, - 0.5, - 0.643, - 0.787, - 0.931, + 0.229, + 0.333, + 0.476, + 0.62, + 0.764, + 0.908, 1.0, 1.0, 1.0, @@ -9658,12 +9682,12 @@ 0.2, 0.2, 0.2, - 0.234, - 0.354, - 0.498, - 0.641, - 0.785, - 0.929, + 0.229, + 0.329, + 0.472, + 0.616, + 0.76, + 0.904, 1.0, 1.0, 1.0, @@ -9682,12 +9706,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.349, - 0.493, - 0.637, - 0.78, - 0.924, + 0.227, + 0.32, + 0.463, + 0.607, + 0.751, + 0.895, 1.0, 1.0, 1.0, @@ -9706,12 +9730,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.339, - 0.483, - 0.626, - 0.77, - 0.914, + 0.229, + 0.331, + 0.474, + 0.618, + 0.762, + 0.906, 1.0, 1.0, 1.0, @@ -9730,12 +9754,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.351, - 0.495, - 0.639, - 0.783, - 0.926, + 0.228, + 0.326, + 0.47, + 0.614, + 0.757, + 0.901, 1.0, 1.0, 1.0, @@ -9754,12 +9778,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.346, - 0.49, - 0.634, - 0.777, - 0.921, + 0.224, + 0.312, + 0.456, + 0.599, + 0.743, + 0.887, 1.0, 1.0, 1.0, @@ -9778,12 +9802,12 @@ 0.2, 0.2, 0.2, - 0.228, - 0.33, - 0.473, - 0.617, - 0.761, - 0.905, + 0.229, + 0.334, + 0.478, + 0.621, + 0.765, + 0.909, 1.0, 1.0, 1.0, @@ -9802,12 +9826,12 @@ 0.2, 0.2, 0.2, - 0.234, - 0.355, - 0.499, - 0.643, - 0.786, - 0.93, + 0.229, + 0.332, + 0.476, + 0.62, + 0.764, + 0.907, 1.0, 1.0, 1.0, @@ -9826,12 +9850,12 @@ 0.2, 0.2, 0.2, - 0.234, - 0.353, - 0.497, - 0.641, - 0.785, - 0.928, + 0.229, + 0.331, + 0.475, + 0.618, + 0.762, + 0.906, 1.0, 1.0, 1.0, @@ -9850,12 +9874,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.352, - 0.496, - 0.639, - 0.783, - 0.927, + 0.227, + 0.322, + 0.466, + 0.61, + 0.753, + 0.897, 1.0, 1.0, 1.0, @@ -9874,12 +9898,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.341, - 0.485, - 0.629, - 0.773, - 0.917, + 0.229, + 0.329, + 0.473, + 0.617, + 0.761, + 0.904, 1.0, 1.0, 1.0, @@ -9898,12 +9922,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.35, - 0.494, - 0.637, - 0.781, - 0.925, + 0.221, + 0.307, + 0.432, + 0.576, + 0.72, + 0.863, 1.0, 1.0, 1.0, @@ -9922,12 +9946,12 @@ 0.2, 0.2, 0.2, - 0.224, - 0.325, - 0.468, - 0.612, - 0.756, - 0.9, + 0.225, + 0.319, + 0.463, + 0.607, + 0.75, + 0.894, 1.0, 1.0, 1.0, @@ -9946,12 +9970,12 @@ 0.2, 0.2, 0.2, - 0.23, - 0.338, - 0.482, - 0.626, - 0.769, - 0.913, + 0.226, + 0.321, + 0.464, + 0.608, + 0.752, + 0.896, 1.0, 1.0, 1.0, @@ -9970,12 +9994,12 @@ 0.2, 0.2, 0.2, - 0.23, - 0.34, - 0.484, - 0.627, - 0.771, - 0.915, + 0.227, + 0.321, + 0.465, + 0.609, + 0.753, + 0.897, 1.0, 1.0, 1.0, @@ -9994,12 +10018,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.341, - 0.485, - 0.628, - 0.772, - 0.916, + 0.212, + 0.295, + 0.439, + 0.583, + 0.727, + 0.87, 1.0, 1.0, 1.0, @@ -10018,12 +10042,12 @@ 0.2, 0.2, 0.2, - 0.214, - 0.31, - 0.454, - 0.598, - 0.742, - 0.886, + 0.226, + 0.321, + 0.465, + 0.609, + 0.753, + 0.896, 1.0, 1.0, 1.0, @@ -10042,15 +10066,39 @@ 0.2, 0.2, 0.2, - 0.23, - 0.341, - 0.484, - 0.628, - 0.772, - 0.916, - 1.0, - 1.0, - 1.0, + 0.224, + 0.321, + 0.465, + 0.609, + 0.752, + 0.896, + 1.0, + 1.0, + 1.0, + 0.905, + 0.745, + 0.585, + 0.425, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.287, + 0.301, + 0.365, + 0.509, + 0.613, + 0.757, + 0.9, + 0.94, + 1.0, 0.84, 0.68, 0.52, @@ -10067,38 +10115,14 @@ 0.2, 0.2, 0.228, - 0.34, - 0.484, - 0.628, - 0.772, - 0.915, - 1.0, + 0.335, + 0.479, + 0.623, + 0.767, + 0.91, + 0.937, 1.0, 1.0, - 0.857, - 0.697, - 0.537, - 0.377, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.217, - 0.242, - 0.258, - 0.333, - 0.476, - 0.597, - 0.741, - 0.884, - 0.93, - 1.0, 0.84, 0.68, 0.52, @@ -10114,13 +10138,13 @@ 0.2, 0.2, 0.2, - 0.233, - 0.357, - 0.501, - 0.644, - 0.788, - 0.932, - 0.963, + 0.228, + 0.334, + 0.478, + 0.621, + 0.765, + 0.909, + 1.0, 1.0, 1.0, 0.84, @@ -10138,12 +10162,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.355, - 0.499, - 0.643, - 0.787, - 0.93, + 0.227, + 0.33, + 0.473, + 0.617, + 0.761, + 0.905, 1.0, 1.0, 1.0, @@ -10162,12 +10186,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.35, - 0.494, - 0.638, - 0.781, - 0.925, + 0.227, + 0.33, + 0.474, + 0.617, + 0.761, + 0.905, 1.0, 1.0, 1.0, @@ -10186,12 +10210,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.351, - 0.494, - 0.638, - 0.782, - 0.926, + 0.225, + 0.325, + 0.469, + 0.613, + 0.756, + 0.9, 1.0, 1.0, 1.0, @@ -10210,12 +10234,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.345, - 0.489, - 0.632, - 0.776, - 0.92, + 0.225, + 0.324, + 0.468, + 0.612, + 0.756, + 0.9, 1.0, 1.0, 1.0, @@ -10234,12 +10258,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.344, - 0.488, - 0.632, - 0.776, - 0.919, + 0.226, + 0.327, + 0.471, + 0.615, + 0.759, + 0.902, 1.0, 1.0, 1.0, @@ -10258,12 +10282,12 @@ 0.2, 0.2, 0.2, - 0.23, - 0.348, - 0.491, - 0.635, - 0.779, - 0.923, + 0.225, + 0.327, + 0.47, + 0.614, + 0.758, + 0.902, 1.0, 1.0, 1.0, @@ -10282,12 +10306,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.347, - 0.49, - 0.634, - 0.778, - 0.922, + 0.225, + 0.322, + 0.466, + 0.61, + 0.754, + 0.898, 1.0, 1.0, 1.0, @@ -10306,12 +10330,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.342, - 0.486, - 0.63, - 0.773, - 0.917, + 0.221, + 0.307, + 0.451, + 0.594, + 0.738, + 0.882, 1.0, 1.0, 1.0, @@ -10330,12 +10354,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.324, - 0.468, - 0.611, - 0.755, - 0.899, + 0.222, + 0.318, + 0.462, + 0.606, + 0.75, + 0.894, 1.0, 1.0, 1.0, @@ -10354,12 +10378,12 @@ 0.2, 0.2, 0.2, - 0.226, - 0.337, - 0.481, - 0.625, - 0.769, - 0.912, + 0.223, + 0.323, + 0.467, + 0.611, + 0.754, + 0.898, 1.0, 1.0, 1.0, @@ -10378,12 +10402,12 @@ 0.2, 0.2, 0.2, - 0.226, - 0.343, - 0.486, - 0.63, - 0.774, - 0.918, + 0.223, + 0.325, + 0.468, + 0.612, + 0.756, + 0.9, 1.0, 1.0, 1.0, @@ -10402,12 +10426,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.345, - 0.488, - 0.632, - 0.776, - 0.92, + 0.221, + 0.32, + 0.464, + 0.608, + 0.752, + 0.895, 1.0, 1.0, 1.0, @@ -10426,12 +10450,12 @@ 0.2, 0.2, 0.2, - 0.224, - 0.34, - 0.483, - 0.627, - 0.771, - 0.915, + 0.218, + 0.316, + 0.46, + 0.604, + 0.747, + 0.891, 1.0, 1.0, 1.0, @@ -10450,12 +10474,12 @@ 0.2, 0.2, 0.2, - 0.221, - 0.335, - 0.478, - 0.622, - 0.766, - 0.91, + 0.217, + 0.314, + 0.457, + 0.601, + 0.745, + 0.889, 1.0, 1.0, 1.0, @@ -10474,12 +10498,12 @@ 0.2, 0.2, 0.2, - 0.219, - 0.332, - 0.475, - 0.619, - 0.763, - 0.907, + 0.216, + 0.314, + 0.458, + 0.601, + 0.745, + 0.889, 1.0, 1.0, 1.0, @@ -10498,12 +10522,12 @@ 0.2, 0.2, 0.2, - 0.218, - 0.332, - 0.476, - 0.619, - 0.763, - 0.907, + 0.215, + 0.313, + 0.457, + 0.601, + 0.745, + 0.888, 1.0, 1.0, 1.0, @@ -10522,12 +10546,12 @@ 0.2, 0.2, 0.2, - 0.218, - 0.331, - 0.475, - 0.619, - 0.763, - 0.906, + 0.211, + 0.299, + 0.443, + 0.587, + 0.731, + 0.874, 1.0, 1.0, 1.0, @@ -10546,12 +10570,12 @@ 0.2, 0.2, 0.2, - 0.213, - 0.315, - 0.459, - 0.603, - 0.746, - 0.89, + 0.21, + 0.297, + 0.441, + 0.585, + 0.729, + 0.872, 1.0, 1.0, 1.0, @@ -10570,12 +10594,12 @@ 0.2, 0.2, 0.2, - 0.212, - 0.313, - 0.457, - 0.6, - 0.744, - 0.888, + 0.21, + 0.3, + 0.444, + 0.588, + 0.731, + 0.875, 1.0, 1.0, 1.0, @@ -10596,7 +10620,7 @@ 0.2, 0.212, 0.316, - 0.46, + 0.459, 0.603, 0.747, 0.891, @@ -10618,36 +10642,12 @@ 0.2, 0.2, 0.2, - 0.214, - 0.334, - 0.478, - 0.622, - 0.765, - 0.909, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.213, - 0.332, - 0.476, - 0.62, - 0.764, - 0.907, + 0.211, + 0.314, + 0.458, + 0.602, + 0.745, + 0.889, 1.0, 1.0, 1.0, @@ -10666,12 +10666,12 @@ 0.2, 0.2, 0.2, - 0.212, - 0.327, - 0.471, - 0.615, - 0.758, - 0.902, + 0.21, + 0.31, + 0.453, + 0.597, + 0.741, + 0.885, 1.0, 1.0, 1.0, @@ -10690,12 +10690,12 @@ 0.2, 0.2, 0.2, - 0.211, - 0.325, - 0.469, - 0.613, - 0.756, - 0.9, + 0.209, + 0.308, + 0.452, + 0.595, + 0.739, + 0.883, 1.0, 1.0, 1.0, @@ -10714,12 +10714,12 @@ 0.2, 0.2, 0.2, - 0.21, - 0.322, - 0.466, - 0.61, - 0.754, - 0.897, + 0.209, + 0.306, + 0.449, + 0.593, + 0.737, + 0.881, 1.0, 1.0, 1.0, @@ -10738,13 +10738,13 @@ 0.2, 0.2, 0.2, - 0.209, - 0.318, - 0.462, - 0.606, - 0.75, - 0.893, - 1.0, + 0.207, + 0.302, + 0.446, + 0.59, + 0.733, + 0.87, + 0.966, 1.0, 1.0, 0.84, @@ -10762,12 +10762,12 @@ 0.2, 0.2, 0.2, - 0.205, - 0.31, - 0.454, - 0.598, - 0.741, - 0.885, + 0.204, + 0.295, + 0.439, + 0.582, + 0.726, + 0.87, 1.0, 1.0, 1.0, @@ -10787,11 +10787,11 @@ 0.2, 0.2, 0.206, - 0.325, - 0.469, - 0.612, - 0.756, - 0.9, + 0.308, + 0.451, + 0.595, + 0.739, + 0.883, 1.0, 1.0, 1.0, @@ -10811,11 +10811,11 @@ 0.2, 0.2, 0.205, - 0.32, - 0.463, - 0.607, - 0.751, - 0.895, + 0.303, + 0.447, + 0.591, + 0.734, + 0.878, 1.0, 1.0, 1.0, @@ -10834,12 +10834,12 @@ 0.2, 0.2, 0.2, - 0.204, - 0.312, - 0.455, - 0.599, - 0.743, - 0.887, + 0.203, + 0.296, + 0.44, + 0.584, + 0.728, + 0.871, 1.0, 1.0, 1.0, @@ -10859,11 +10859,11 @@ 0.2, 0.2, 0.203, - 0.308, - 0.452, - 0.596, - 0.74, - 0.884, + 0.294, + 0.437, + 0.581, + 0.725, + 0.869, 1.0, 1.0, 1.0, @@ -10882,12 +10882,12 @@ 0.2, 0.2, 0.2, - 0.203, - 0.309, - 0.452, - 0.596, - 0.74, - 0.884, + 0.202, + 0.294, + 0.437, + 0.581, + 0.725, + 0.869, 1.0, 1.0, 1.0, @@ -10907,11 +10907,11 @@ 0.2, 0.2, 0.201, - 0.305, - 0.448, - 0.592, - 0.736, - 0.88, + 0.29, + 0.434, + 0.578, + 0.721, + 0.865, 1.0, 1.0, 1.0, @@ -10931,11 +10931,11 @@ 0.2, 0.2, 0.201, - 0.302, - 0.446, - 0.59, - 0.734, - 0.877, + 0.288, + 0.432, + 0.576, + 0.72, + 0.863, 1.0, 1.0, 1.0, @@ -10955,11 +10955,11 @@ 0.2, 0.2, 0.2, - 0.303, - 0.447, - 0.591, - 0.735, - 0.879, + 0.289, + 0.433, + 0.577, + 0.721, + 0.864, 1.0, 1.0, 1.0, @@ -10979,12 +10979,12 @@ 0.2, 0.2, 0.2, - 0.281, - 0.425, - 0.568, - 0.712, - 0.856, - 1.0, + 0.27, + 0.408, + 0.552, + 0.695, + 0.839, + 0.983, 1.0, 1.0, 0.84, @@ -11003,12 +11003,12 @@ 0.2, 0.2, 0.2, - 0.282, - 0.381, - 0.524, - 0.668, - 0.812, - 0.956, + 0.27, + 0.356, + 0.5, + 0.643, + 0.787, + 0.931, 1.0, 1.0, 0.84, @@ -11027,12 +11027,12 @@ 0.2, 0.2, 0.2, - 0.235, - 0.337, - 0.48, - 0.624, - 0.768, - 0.912, + 0.23, + 0.318, + 0.462, + 0.605, + 0.749, + 0.893, 1.0, 1.0, 0.84, @@ -11051,12 +11051,12 @@ 0.2, 0.2, 0.2, - 0.207, - 0.351, - 0.488, - 0.631, - 0.775, - 0.919, + 0.206, + 0.35, + 0.468, + 0.612, + 0.755, + 0.899, 1.0, 1.0, 0.84, @@ -11075,12 +11075,12 @@ 0.2, 0.2, 0.2, - 0.289, - 0.433, - 0.577, - 0.721, - 0.864, - 1.0, + 0.277, + 0.421, + 0.565, + 0.708, + 0.852, + 0.996, 1.0, 1.0, 0.84, @@ -11099,11 +11099,11 @@ 0.2, 0.2, 0.2, - 0.306, - 0.449, - 0.593, - 0.737, - 0.881, + 0.291, + 0.435, + 0.579, + 0.722, + 0.866, 1.0, 1.0, 1.0, @@ -11123,37 +11123,37 @@ 0.2, 0.2, 0.2, - 0.299, - 0.443, - 0.587, - 0.731, - 0.875, + 0.286, + 0.43, + 0.573, + 0.717, + 0.861, 1.0, 1.0, 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.235, - 0.347, - 0.491, - 0.635, - 0.778, - 0.904, - 0.994, + 0.866, + 0.706, + 0.546, + 0.386, + 0.226, + 0.226, + 0.226, + 0.226, + 0.226, + 0.226, + 0.226, + 0.226, + 0.226, + 0.226, + 0.226, + 0.226, + 0.256, + 0.353, + 0.496, + 0.64, + 0.784, + 0.893, + 0.97, 1.0, 0.84, 0.68, @@ -11171,13 +11171,13 @@ 0.2, 0.2, 0.2, - 0.287, - 0.367, - 0.511, - 0.654, - 0.798, - 0.857, - 1.0, + 0.275, + 0.344, + 0.488, + 0.632, + 0.775, + 0.826, + 0.97, 1.0, 0.84, 0.68, @@ -11195,12 +11195,12 @@ 0.2, 0.2, 0.2, - 0.291, - 0.435, - 0.579, - 0.722, - 0.866, - 1.0, + 0.279, + 0.422, + 0.566, + 0.71, + 0.854, + 0.997, 1.0, 1.0, 0.84, @@ -11219,12 +11219,12 @@ 0.2, 0.2, 0.2, - 0.288, - 0.431, - 0.575, - 0.719, - 0.863, - 1.0, + 0.276, + 0.419, + 0.563, + 0.707, + 0.851, + 0.994, 1.0, 1.0, 0.84, @@ -11243,12 +11243,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.338, - 0.481, - 0.625, - 0.769, - 0.913, + 0.225, + 0.319, + 0.445, + 0.589, + 0.732, + 0.876, 1.0, 1.0, 0.84, @@ -11267,12 +11267,12 @@ 0.2, 0.2, 0.2, - 0.29, - 0.433, - 0.577, - 0.721, - 0.865, - 1.0, + 0.277, + 0.421, + 0.565, + 0.709, + 0.852, + 0.996, 1.0, 1.0, 0.84, @@ -11291,12 +11291,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.373, - 0.516, - 0.66, - 0.804, - 0.948, + 0.225, + 0.369, + 0.512, + 0.656, + 0.8, + 0.944, 1.0, 1.0, 0.84, @@ -11315,12 +11315,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.373, - 0.516, - 0.66, - 0.804, - 0.948, + 0.225, + 0.369, + 0.512, + 0.656, + 0.8, + 0.944, 1.0, 1.0, 0.84, @@ -11339,12 +11339,12 @@ 0.2, 0.2, 0.2, - 0.232, - 0.376, - 0.519, - 0.663, - 0.807, - 0.951, + 0.227, + 0.371, + 0.515, + 0.659, + 0.803, + 0.946, 1.0, 1.0, 0.84, @@ -11363,12 +11363,12 @@ 0.2, 0.2, 0.2, - 0.223, - 0.318, - 0.462, - 0.605, - 0.749, - 0.893, + 0.22, + 0.302, + 0.43, + 0.574, + 0.718, + 0.862, 1.0, 1.0, 0.84, @@ -11387,12 +11387,12 @@ 0.2, 0.2, 0.2, - 0.224, - 0.324, - 0.468, - 0.611, - 0.755, - 0.899, + 0.22, + 0.307, + 0.451, + 0.594, + 0.738, + 0.882, 1.0, 1.0, 0.84, @@ -11411,37 +11411,37 @@ 0.2, 0.2, 0.2, - 0.272, - 0.416, - 0.56, - 0.704, - 0.847, - 0.991, + 0.262, + 0.405, + 0.549, + 0.693, + 0.837, + 0.981, 1.0, 1.0, 1.0, 1.0, 1.0, - 0.957, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.797, - 0.802, - 0.853, - 0.93, - 0.934, - 0.954, - 0.962, - 0.972, + 0.985, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.829, + 0.873, + 0.94, + 0.943, + 0.961, + 0.967, + 0.976, 1.0, 0.84, 0.68, @@ -11459,60 +11459,60 @@ 0.2, 0.2, 0.2, - 0.264, - 0.407, - 0.551, - 0.695, - 0.839, - 0.982, + 0.255, + 0.391, + 0.535, + 0.679, + 0.823, + 0.967, 1.0, 1.0, - 0.976, - 0.816, - 0.656, - 0.496, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.336, - 0.349, - 0.378, - 0.404, - 0.445, - 0.588, - 0.725, - 0.868, 1.0, - 0.946, - 0.786, - 0.626, + 0.887, + 0.727, + 0.567, + 0.407, + 0.407, + 0.407, + 0.407, + 0.407, + 0.407, + 0.407, + 0.407, + 0.407, + 0.407, + 0.407, + 0.407, + 0.419, + 0.444, 0.466, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.306, - 0.367, - 0.369, - 0.513, - 0.637, - 0.781, - 0.925, + 0.502, + 0.625, + 0.743, + 0.886, + 1.0, + 0.991, + 0.831, + 0.671, + 0.511, + 0.351, + 0.351, + 0.351, + 0.351, + 0.351, + 0.351, + 0.351, + 0.351, + 0.351, + 0.351, + 0.351, + 0.351, + 0.404, + 0.405, + 0.549, + 0.656, + 0.791, + 0.935, 0.999, 1.0, 0.84, @@ -11531,12 +11531,12 @@ 0.2, 0.2, 0.2, - 0.263, - 0.407, - 0.551, - 0.695, - 0.839, - 0.982, + 0.255, + 0.398, + 0.542, + 0.686, + 0.83, + 0.974, 1.0, 1.0, 0.84, @@ -11555,12 +11555,12 @@ 0.2, 0.2, 0.2, - 0.263, - 0.407, - 0.551, - 0.695, - 0.838, - 0.982, + 0.255, + 0.396, + 0.54, + 0.684, + 0.828, + 0.972, 1.0, 1.0, 0.84, @@ -11579,12 +11579,12 @@ 0.2, 0.2, 0.2, - 0.26, - 0.403, - 0.547, - 0.691, - 0.835, - 0.978, + 0.251, + 0.394, + 0.538, + 0.682, + 0.825, + 0.969, 1.0, 1.0, 0.84, @@ -11603,12 +11603,12 @@ 0.2, 0.2, 0.2, - 0.26, - 0.404, - 0.547, - 0.691, - 0.835, - 0.979, + 0.252, + 0.395, + 0.539, + 0.683, + 0.827, + 0.97, 1.0, 1.0, 0.84, @@ -11627,12 +11627,12 @@ 0.2, 0.2, 0.2, - 0.258, - 0.402, - 0.546, - 0.689, - 0.833, - 0.977, + 0.25, + 0.394, + 0.538, + 0.681, + 0.825, + 0.969, 1.0, 1.0, 0.84, @@ -11651,37 +11651,37 @@ 0.2, 0.2, 0.2, - 0.255, - 0.398, - 0.542, - 0.686, - 0.83, - 0.973, + 0.247, + 0.387, + 0.531, + 0.675, + 0.818, + 0.962, 1.0, 1.0, - 0.922, - 0.762, - 0.602, - 0.442, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.282, - 0.333, - 0.476, - 0.62, - 0.754, - 0.898, - 0.906, - 0.976, + 0.966, + 0.806, + 0.646, + 0.486, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.326, + 0.369, + 0.509, + 0.652, + 0.768, + 0.912, + 0.919, + 0.98, 1.0, 0.84, 0.68, @@ -11699,12 +11699,12 @@ 0.2, 0.2, 0.2, - 0.253, - 0.397, - 0.541, - 0.685, - 0.828, - 0.972, + 0.246, + 0.389, + 0.533, + 0.677, + 0.82, + 0.964, 1.0, 1.0, 0.84, @@ -11723,12 +11723,12 @@ 0.2, 0.2, 0.2, - 0.253, - 0.397, - 0.541, - 0.685, - 0.828, - 0.972, + 0.246, + 0.39, + 0.534, + 0.677, + 0.821, + 0.965, 1.0, 1.0, 0.84, @@ -11747,12 +11747,12 @@ 0.2, 0.2, 0.2, - 0.249, - 0.323, - 0.467, - 0.611, - 0.754, - 0.898, + 0.242, + 0.306, + 0.45, + 0.594, + 0.737, + 0.881, 1.0, 1.0, 0.84, @@ -11771,13 +11771,13 @@ 0.2, 0.2, 0.2, - 0.243, - 0.325, - 0.468, - 0.612, - 0.756, - 0.9, - 0.923, + 0.237, + 0.308, + 0.451, + 0.595, + 0.739, + 0.883, + 0.903, 1.0, 0.84, 0.68, @@ -11795,12 +11795,12 @@ 0.2, 0.2, 0.2, - 0.247, - 0.391, - 0.535, - 0.679, - 0.822, - 0.966, + 0.241, + 0.384, + 0.528, + 0.671, + 0.815, + 0.959, 1.0, 1.0, 0.84, @@ -11819,12 +11819,12 @@ 0.2, 0.2, 0.2, - 0.249, - 0.393, - 0.536, - 0.68, - 0.824, - 0.968, + 0.242, + 0.385, + 0.529, + 0.673, + 0.816, + 0.96, 1.0, 1.0, 0.84, @@ -11843,13 +11843,13 @@ 0.2, 0.2, 0.2, - 0.234, - 0.257, - 0.401, - 0.544, - 0.688, - 0.832, - 0.976, + 0.229, + 0.249, + 0.393, + 0.537, + 0.68, + 0.824, + 0.968, 1.0, 0.84, 0.68, @@ -11867,12 +11867,12 @@ 0.2, 0.2, 0.2, - 0.245, - 0.389, - 0.532, - 0.676, - 0.82, - 0.964, + 0.239, + 0.38, + 0.524, + 0.668, + 0.811, + 0.955, 1.0, 1.0, 0.84, @@ -11891,12 +11891,12 @@ 0.2, 0.2, 0.2, - 0.243, - 0.386, - 0.53, - 0.674, - 0.818, - 0.961, + 0.237, + 0.373, + 0.517, + 0.661, + 0.805, + 0.949, 1.0, 1.0, 0.84, @@ -11915,13 +11915,13 @@ 0.2, 0.2, 0.2, - 0.214, - 0.284, - 0.393, - 0.537, - 0.681, - 0.825, - 0.968, + 0.212, + 0.273, + 0.367, + 0.511, + 0.654, + 0.798, + 0.942, 1.0, 0.84, 0.68, @@ -11939,12 +11939,12 @@ 0.2, 0.2, 0.2, - 0.238, - 0.382, - 0.525, - 0.669, - 0.813, - 0.957, + 0.233, + 0.361, + 0.505, + 0.649, + 0.792, + 0.936, 1.0, 1.0, 0.84, @@ -11963,12 +11963,12 @@ 0.2, 0.2, 0.2, - 0.239, - 0.382, - 0.526, - 0.67, - 0.814, - 0.957, + 0.233, + 0.366, + 0.51, + 0.653, + 0.797, + 0.941, 1.0, 1.0, 0.84, @@ -11987,12 +11987,12 @@ 0.2, 0.2, 0.2, - 0.237, - 0.381, - 0.525, - 0.669, - 0.812, - 0.956, + 0.232, + 0.361, + 0.505, + 0.649, + 0.793, + 0.936, 1.0, 1.0, 0.84, @@ -12011,12 +12011,12 @@ 0.2, 0.2, 0.2, - 0.241, - 0.385, - 0.529, - 0.672, - 0.816, - 0.96, + 0.235, + 0.378, + 0.522, + 0.665, + 0.809, + 0.953, 1.0, 1.0, 0.84, @@ -12035,12 +12035,12 @@ 0.2, 0.2, 0.2, - 0.24, - 0.384, - 0.528, - 0.671, - 0.815, - 0.959, + 0.235, + 0.375, + 0.519, + 0.663, + 0.807, + 0.95, 1.0, 1.0, 0.84, @@ -12059,109 +12059,109 @@ 0.2, 0.2, 0.2, - 0.237, - 0.38, - 0.524, - 0.668, - 0.812, - 0.955, + 0.232, + 0.364, + 0.508, + 0.652, + 0.796, + 0.939, 1.0, 1.0, - 0.924, - 0.764, - 0.604, - 0.444, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.284, - 0.29, - 0.329, - 0.383, - 0.497, - 0.641, - 0.785, - 0.926, + 0.983, + 0.823, + 0.663, + 0.503, + 0.343, + 0.343, + 0.343, + 0.343, + 0.343, + 0.343, + 0.343, + 0.343, + 0.343, + 0.343, + 0.343, + 0.343, + 0.348, + 0.382, + 0.428, + 0.527, + 0.671, + 0.814, + 0.936, 1.0, 1.0, - 0.987, - 0.827, - 0.667, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.507, - 0.509, - 0.604, - 0.748, - 0.863, - 0.912, - 0.957, - 0.97, 1.0, + 0.888, + 0.728, + 0.568, + 0.568, + 0.568, + 0.568, + 0.568, + 0.568, + 0.568, + 0.568, + 0.568, + 0.568, + 0.568, + 0.568, + 0.57, + 0.652, + 0.782, + 0.882, + 0.924, + 0.963, + 0.974, 1.0, 1.0, 1.0, - 0.851, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.691, - 0.696, - 0.698, - 0.752, - 0.776, - 0.814, - 0.828, - 0.861, 1.0, + 0.894, + 0.734, + 0.734, + 0.734, + 0.734, + 0.734, + 0.734, + 0.734, + 0.734, + 0.734, + 0.734, + 0.734, + 0.734, + 0.738, + 0.74, + 0.786, + 0.807, + 0.839, + 0.852, + 0.88, 1.0, 1.0, 1.0, - 0.863, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.703, - 0.732, + 1.0, + 0.904, 0.744, - 0.821, - 0.836, - 0.883, - 0.931, - 0.972, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.769, + 0.779, + 0.845, + 0.859, + 0.899, + 0.941, + 0.976, 1.0, 0.84, 0.68, @@ -12179,12 +12179,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.369, - 0.513, - 0.657, - 0.8, - 0.944, + 0.225, + 0.346, + 0.49, + 0.633, + 0.777, + 0.921, 1.0, 1.0, 0.84, @@ -12213,280 +12213,11 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 29.636, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12501,64 +12232,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12573,16 +12256,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12597,11 +12280,6 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -12621,11 +12299,6 @@ 0.0, 0.0, 0.0, - 15.58, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -12636,6 +12309,11 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12645,11 +12323,6 @@ 0.0, 0.0, 0.0, - 23.941, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -12660,6 +12333,11 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12669,11 +12347,6 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -12684,20 +12357,11 @@ 0.0, 0.0, 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12717,18 +12381,11 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12742,16 +12399,17 @@ 0.0, 0.0, 0.0, - 6.126, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12767,13 +12425,15 @@ 0.0, 0.0, 0.0, - 26.115, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 16.395, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12789,15 +12449,15 @@ 0.0, 0.0, 0.0, - 13.14, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12813,15 +12473,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12837,15 +12497,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12861,15 +12521,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12885,15 +12545,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12909,15 +12569,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12933,15 +12593,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12957,15 +12617,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 2.25, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -12981,15 +12641,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 8.88, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13005,15 +12665,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13029,15 +12689,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13053,15 +12713,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13077,17 +12737,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 14.214, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13101,11 +12759,6 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13114,6 +12767,9 @@ 0.0, 0.0, 0.0, + 12.799, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13125,11 +12781,6 @@ 0.0, 0.0, 0.0, - 18.269, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13138,6 +12789,11 @@ 0.0, 0.0, 0.0, + 3.776, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13149,11 +12805,6 @@ 0.0, 0.0, 0.0, - 18.993, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13162,6 +12813,11 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13173,11 +12829,6 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13186,6 +12837,11 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13197,11 +12853,6 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13210,6 +12861,11 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13221,11 +12877,6 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13234,6 +12885,11 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13245,11 +12901,6 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13258,6 +12909,11 @@ 0.0, 0.0, 0.0, + 17.835, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13269,11 +12925,6 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13282,6 +12933,11 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13293,11 +12949,6 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13306,6 +12957,11 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13317,11 +12973,6 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13330,6 +12981,11 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -13341,11 +12997,215 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 16.107, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.978, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.28, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -13361,15 +13221,16 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.803, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13384,16 +13245,16 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13408,16 +13269,16 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13432,16 +13293,16 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, - 25.119, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13456,16 +13317,16 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13480,16 +13341,16 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13505,15 +13366,14 @@ 0.0, 0.0, 0.0, + 0.132, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13529,15 +13389,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13553,15 +13413,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13577,15 +13437,15 @@ 0.0, 0.0, 0.0, + 9.873, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13601,15 +13461,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 15.04, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13625,15 +13485,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13649,15 +13509,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13673,15 +13533,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13697,15 +13557,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13721,15 +13581,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13745,15 +13605,15 @@ 0.0, 0.0, 0.0, + 1.895, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13769,15 +13629,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13793,15 +13653,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13817,15 +13677,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13841,15 +13701,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13865,15 +13725,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13889,15 +13749,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13913,15 +13773,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13937,15 +13797,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13961,15 +13821,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -13985,15 +13845,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14009,15 +13869,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14033,15 +13893,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14057,15 +13917,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14081,15 +13941,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14105,15 +13965,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14129,15 +13989,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14153,15 +14013,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14177,15 +14037,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14201,15 +14061,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14225,15 +14085,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14249,15 +14109,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14273,15 +14133,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14297,15 +14157,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14321,15 +14181,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14345,15 +14205,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14369,15 +14229,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14393,15 +14253,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14417,15 +14277,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14441,15 +14301,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14465,15 +14325,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14489,15 +14349,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14513,15 +14373,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14537,15 +14397,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 28.45, - 31.876, 0.0, 0.0, 0.0, @@ -14561,15 +14421,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14585,15 +14445,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14609,15 +14469,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14633,15 +14493,17 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 18.869, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14655,17 +14517,17 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14679,17 +14541,17 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14703,17 +14565,17 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 28.45, - 31.876, 0.0, 0.0, 0.0, @@ -14727,17 +14589,17 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14751,17 +14613,17 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14777,15 +14639,13 @@ 0.0, 0.0, 0.0, + 6.777, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14801,15 +14661,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14825,15 +14685,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14849,15 +14709,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14873,15 +14733,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 25.024, - 31.876, 0.0, 0.0, 0.0, @@ -14897,15 +14757,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14921,15 +14781,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14945,15 +14805,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14969,15 +14829,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -14993,15 +14853,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -15017,15 +14877,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -15041,15 +14901,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 21.597, - 31.876, 0.0, 0.0, 0.0, @@ -15065,15 +14925,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -15089,15 +14949,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -15113,15 +14973,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -15137,15 +14997,15 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -15161,20 +15021,83 @@ 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15189,16 +15112,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15213,16 +15136,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 21.414, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15237,16 +15160,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15261,16 +15184,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15285,16 +15208,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15309,16 +15232,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15333,16 +15256,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15357,16 +15280,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15381,16 +15304,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 17.24, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15405,16 +15328,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15429,16 +15352,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15453,16 +15376,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.008, + 18.851, 0.0, 0.0, 0.0, @@ -15477,16 +15400,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15501,16 +15424,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15525,16 +15448,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15549,16 +15472,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 16.884, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15573,16 +15496,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15597,16 +15520,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15621,16 +15544,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 17.951, + 18.851, 0.0, 0.0, 0.0, @@ -15645,16 +15568,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15669,16 +15592,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15693,16 +15616,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15717,16 +15640,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 12.596, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15741,16 +15664,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 12.735, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15765,16 +15688,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15789,16 +15712,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 14.37, + 18.851, 0.0, 0.0, 0.0, @@ -15813,16 +15736,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 14.363, + 18.851, 0.0, 0.0, 0.0, @@ -15837,16 +15760,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15861,16 +15784,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15885,16 +15808,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 12.016, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15909,16 +15832,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15933,16 +15856,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -15957,16 +15880,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 14.173, + 18.851, 0.0, 0.0, 0.0, @@ -15981,16 +15904,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16005,16 +15928,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16029,16 +15952,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16053,16 +15976,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 11.176, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16077,16 +16000,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16101,16 +16024,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16125,16 +16048,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 14.118, + 18.851, 0.0, 0.0, 0.0, @@ -16149,16 +16072,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16173,16 +16096,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16197,16 +16120,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16221,16 +16144,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 7.485, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16245,16 +16168,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16269,16 +16192,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16293,16 +16216,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 10.534, + 18.851, 0.0, 0.0, 0.0, @@ -16317,16 +16240,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16341,16 +16264,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16365,16 +16288,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16389,16 +16312,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 7.681, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16413,16 +16336,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16437,16 +16360,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16461,16 +16384,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 10.569, + 18.851, 0.0, 0.0, 0.0, @@ -16485,16 +16408,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16509,16 +16432,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16533,16 +16456,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16557,16 +16480,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 7.215, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16581,16 +16504,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16605,16 +16528,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16629,16 +16552,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 7.721, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 10.78, + 18.851, 0.0, 0.0, 0.0, @@ -16653,16 +16576,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16677,16 +16600,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16701,16 +16624,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 10.572, + 18.851, 0.0, 0.0, 0.0, @@ -16725,16 +16648,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 7.414, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16749,16 +16672,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16773,16 +16696,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16797,16 +16720,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 10.79, + 18.851, 0.0, 0.0, 0.0, @@ -16821,16 +16744,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16845,16 +16768,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16869,16 +16792,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16893,16 +16816,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 8.193, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16917,16 +16840,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16941,16 +16864,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -16965,16 +16888,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 10.726, + 18.851, 0.0, 0.0, 0.0, @@ -16989,16 +16912,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17013,16 +16936,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17037,16 +16960,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17061,16 +16984,16 @@ 0.0, 0.0, 0.0, - 2.166, - 31.876, - 31.876, - 13.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17085,16 +17008,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17109,16 +17032,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17133,17 +17056,16 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 11.848, + 18.851, + 14.4, + 18.851, 0.0, 0.0, 0.0, @@ -17157,17 +17079,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17181,17 +17103,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17205,17 +17127,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17229,17 +17151,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 12.724, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17253,17 +17175,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17277,17 +17199,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17301,17 +17223,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 14.452, + 18.851, 0.0, 0.0, 0.0, @@ -17325,17 +17247,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17349,17 +17271,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17373,17 +17295,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17397,17 +17319,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 16.884, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17421,17 +17343,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17445,17 +17367,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17469,17 +17391,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 17.979, + 18.851, 0.0, 0.0, 0.0, @@ -17493,17 +17415,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17517,17 +17439,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17541,17 +17463,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17565,17 +17487,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 17.51, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17589,17 +17511,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17613,17 +17535,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17637,17 +17559,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.082, + 18.851, 0.0, 0.0, 0.0, @@ -17661,17 +17583,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17685,17 +17607,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17709,17 +17631,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17733,17 +17655,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 21.597, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17757,17 +17679,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17781,17 +17703,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17805,17 +17727,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17829,17 +17751,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17853,17 +17775,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17877,17 +17799,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17901,17 +17823,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 25.024, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17925,17 +17847,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17949,17 +17871,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17973,17 +17895,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -17997,17 +17919,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18021,17 +17943,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18045,17 +17967,17 @@ 0.0, 0.0, 0.0, - 31.203, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18069,17 +17991,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 28.45, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18093,17 +18015,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 28.45, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18117,17 +18039,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 12.846, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18141,17 +18063,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18165,17 +18087,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18189,17 +18111,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18213,17 +18135,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18237,17 +18159,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18261,17 +18183,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18285,17 +18207,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18309,17 +18231,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18333,17 +18255,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18357,17 +18279,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18381,17 +18303,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18405,17 +18327,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18429,17 +18351,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18453,17 +18375,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18477,17 +18399,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18501,17 +18423,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18525,17 +18447,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18549,17 +18471,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18573,17 +18495,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18597,17 +18519,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18621,17 +18543,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18645,17 +18567,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18669,17 +18591,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18693,17 +18615,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18717,17 +18639,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18741,17 +18663,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18765,17 +18687,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18789,17 +18711,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18813,17 +18735,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18837,17 +18759,17 @@ 0.0, 0.0, 0.0, - 28.476, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18861,17 +18783,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18885,17 +18807,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18909,17 +18831,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 11.154, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18933,17 +18855,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18957,17 +18879,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -18981,17 +18903,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19005,17 +18927,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19029,17 +18951,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19053,17 +18975,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19077,17 +18999,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19101,17 +19023,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19125,17 +19047,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19149,17 +19071,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19173,17 +19095,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19197,17 +19119,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19221,17 +19143,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19245,17 +19167,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19269,17 +19191,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19293,17 +19215,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19317,17 +19239,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19341,17 +19263,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19365,17 +19287,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19389,17 +19311,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19413,17 +19335,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19437,17 +19359,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19461,17 +19383,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19485,17 +19407,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19509,17 +19431,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19533,17 +19455,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19557,17 +19479,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19581,17 +19503,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19605,17 +19527,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19629,17 +19551,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19653,17 +19575,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19677,17 +19599,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19701,17 +19623,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19725,17 +19647,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19749,17 +19671,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19773,17 +19695,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19797,17 +19719,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19821,17 +19743,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19845,17 +19767,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19869,17 +19791,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19893,17 +19815,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19917,17 +19839,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19941,17 +19863,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19965,17 +19887,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 15.812, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -19989,17 +19911,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20013,17 +19935,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20037,17 +19959,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20061,17 +19983,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20085,17 +20007,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20109,17 +20031,17 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20133,17 +20055,20 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -20157,14 +20082,14 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20184,8 +20109,11 @@ 0.0, 0.0, 0.0, - 8.532, - 31.876, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20205,11 +20133,11 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20229,11 +20157,11 @@ 0.0, 0.0, 0.0, - 4.77, - 31.876, - 31.876, - 31.876, - 31.876, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20253,14 +20181,11 @@ 0.0, 0.0, 0.0, - 10.661, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, + 1.766, + 18.851, 0.0, 0.0, 0.0, @@ -20277,14 +20202,14 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20301,15 +20226,14 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 13.26, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20325,15 +20249,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 1.037, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20349,15 +20273,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20373,15 +20297,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20397,15 +20321,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20421,15 +20345,15 @@ 0.0, 0.0, 0.0, - 15.585, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20445,15 +20369,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20469,15 +20393,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20493,15 +20417,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 4.061, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20517,15 +20441,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20541,15 +20465,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20565,15 +20489,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20589,15 +20513,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20613,15 +20537,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20637,15 +20561,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20661,15 +20585,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20685,15 +20609,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20709,15 +20633,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20733,15 +20657,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20757,15 +20681,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20781,15 +20705,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20805,15 +20729,15 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20829,15 +20753,15 @@ 0.0, 0.0, 0.0, - 15.081, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20854,13 +20778,14 @@ 0.0, 0.0, 0.0, - 2.56, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20880,8 +20805,11 @@ 0.0, 0.0, 0.0, - 29.663, - 31.876, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20901,11 +20829,14 @@ 0.0, 0.0, 0.0, + 1.995, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, - 27.283, - 31.876, 0.0, 0.0, 0.0, @@ -20924,12 +20855,10 @@ 0.0, 0.0, 0.0, + 13.174, + 18.851, + 18.851, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -20949,11 +20878,82 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, + 0.0, + 0.0, + 12.547, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 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.332, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -20961,14 +20961,14 @@ ] }, "status": "optimal", - "solver_seconds": 3.578, + "solver_seconds": 3.431, "ElectricUtility": { - "lifecycle_emissions_tonnes_CO2_bau": 9358.12, - "annual_emissions_tonnes_CO2_bau": 434.86, - "lifecycle_emissions_tonnes_PM25": 0.48, - "annual_energy_supplied_kwh_bau": 882597.65, - "lifecycle_emissions_tonnes_PM25_bau": 0.53, - "lifecycle_emissions_tonnes_SO2": 0.56, + "lifecycle_emissions_tonnes_CO2_bau": 10619.11, + "annual_emissions_tonnes_CO2_bau": 493.46, + "lifecycle_emissions_tonnes_PM25": 0.54, + "annual_energy_supplied_kwh_bau": 1.00212343e6, + "lifecycle_emissions_tonnes_PM25_bau": 0.6, + "lifecycle_emissions_tonnes_SO2": 0.63, "annual_emissions_tonnes_SO2_bau": 0.03, "electric_to_load_series_kw": [ 31.876, @@ -20978,19 +20978,19 @@ 32.388, 32.759, 32.725, - 11.019, - 52.849, - 31.368, - 70.357, - 44.795, - 67.295, - 73.729, - 86.928, - 75.213, - 109.653, - 101.185, - 65.758, - 0.0, + 11.431, + 58.381, + 49.575, + 96.955, + 84.629, + 111.814, + 115.039, + 121.063, + 111.148, + 128.197, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -21002,19 +21002,19 @@ 33.107, 33.107, 71.869, - 77.683, - 121.878, - 166.786, - 153.052, - 146.281, - 146.278, - 137.08, - 134.425, - 122.724, - 166.807, - 184.831, - 136.613, - 136.616, + 78.091, + 127.954, + 185.413, + 180.147, + 177.878, + 178.385, + 173.108, + 168.968, + 159.063, + 180.368, + 197.856, + 149.638, + 149.641, 150.852, 60.908, 33.107, @@ -21026,19 +21026,19 @@ 33.107, 33.107, 71.547, - 77.663, - 127.402, - 166.654, - 151.713, - 144.056, - 143.936, - 150.302, - 132.251, - 120.748, - 157.014, - 184.831, - 136.641, - 136.845, + 78.069, + 129.763, + 185.537, + 179.557, + 176.883, + 177.351, + 180.558, + 169.505, + 158.208, + 176.053, + 197.856, + 149.667, + 149.871, 151.093, 60.908, 33.107, @@ -21050,16 +21050,16 @@ 33.107, 33.107, 71.658, - 77.414, - 121.923, - 166.277, - 152.226, - 145.565, - 145.619, - 130.193, - 133.42, - 153.47, - 189.057, + 77.708, + 128.3, + 185.221, + 179.818, + 177.608, + 178.137, + 169.589, + 168.56, + 177.441, + 194.98, 216.707, 168.489, 168.489, @@ -21074,19 +21074,19 @@ 33.107, 33.107, 71.407, - 75.508, - 92.209, - 137.582, - 123.796, - 116.991, - 117.049, - 137.007, - 156.346, - 123.272, - 162.99, - 185.484, - 137.388, - 137.517, + 76.969, + 111.368, + 168.495, + 163.126, + 160.757, + 161.274, + 170.555, + 179.342, + 159.696, + 178.961, + 198.509, + 150.414, + 150.542, 151.75, 60.908, 33.107, @@ -21098,19 +21098,19 @@ 32.841, 33.064, 71.197, - 61.031, - 88.866, - 121.697, - 177.614, - 178.434, - 166.498, - 138.505, - 135.499, - 122.673, - 156.767, - 184.831, - 118.899, - 83.472, + 61.396, + 93.52, + 138.889, + 192.022, + 192.894, + 187.647, + 174.62, + 169.503, + 159.093, + 175.959, + 197.856, + 131.925, + 96.497, 115.368, 80.213, 31.876, @@ -21122,19 +21122,19 @@ 32.031, 32.061, 32.114, - 10.583, - 54.329, - 34.079, - 73.499, - 66.346, - 101.174, - 85.469, - 87.404, - 74.922, - 108.31, - 101.185, - 65.758, - 0.0, + 10.847, + 57.696, + 50.71, + 98.53, + 96.028, + 131.644, + 124.46, + 121.344, + 111.088, + 127.646, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -21146,19 +21146,19 @@ 33.107, 33.107, 71.587, - 77.454, - 122.692, - 166.476, - 151.538, - 143.721, - 143.447, - 128.173, - 130.896, - 119.614, - 154.746, - 184.831, - 136.613, - 136.613, + 77.72, + 128.362, + 185.301, + 179.496, + 176.767, + 177.158, + 169.062, + 167.475, + 157.758, + 175.093, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21170,19 +21170,19 @@ 33.107, 33.107, 71.617, - 77.44, - 126.632, - 167.648, - 153.925, - 146.814, - 146.584, - 152.332, - 133.168, - 120.684, - 154.18, - 184.831, - 136.613, - 136.613, + 77.846, + 129.014, + 185.874, + 180.62, + 178.2, + 178.59, + 181.56, + 169.891, + 158.242, + 174.85, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21194,19 +21194,19 @@ 33.107, 33.107, 71.299, - 77.264, - 123.211, - 168.815, - 165.75, - 170.501, - 160.478, - 164.04, - 151.593, - 141.197, - 164.206, - 184.881, - 136.613, - 136.613, + 77.634, + 127.813, + 186.475, + 186.247, + 189.652, + 185.597, + 186.786, + 177.417, + 169.501, + 179.747, + 197.907, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21218,19 +21218,19 @@ 33.107, 33.107, 71.17, - 77.816, - 129.477, - 190.749, - 160.045, - 151.572, - 166.937, - 171.465, - 167.28, - 126.241, - 154.231, - 184.831, - 136.613, - 136.613, + 77.976, + 130.406, + 194.797, + 183.632, + 180.465, + 187.947, + 190.182, + 188.372, + 160.712, + 174.892, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21242,19 +21242,19 @@ 33.107, 33.107, 71.145, - 76.893, - 124.493, - 169.629, - 155.3, - 147.826, - 147.43, - 132.673, - 134.049, - 121.095, - 153.057, - 184.831, - 136.613, - 136.613, + 77.235, + 127.836, + 186.942, + 181.355, + 178.729, + 179.028, + 172.373, + 168.934, + 158.467, + 174.388, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21266,19 +21266,19 @@ 31.876, 31.876, 69.872, - 59.15, - 88.812, - 121.812, - 156.793, - 150.367, - 152.373, - 140.289, - 143.939, - 127.232, - 153.289, - 186.084, - 118.899, - 83.472, + 59.465, + 92.405, + 138.916, + 182.078, + 180.365, + 183.28, + 179.813, + 178.909, + 164.658, + 174.516, + 199.109, + 131.925, + 96.497, 115.348, 79.921, 31.876, @@ -21290,19 +21290,19 @@ 31.876, 31.876, 31.876, - 10.445, - 51.811, - 31.035, - 70.329, - 80.103, - 125.972, - 109.055, - 98.918, - 85.402, - 101.811, - 101.185, - 65.758, - 0.0, + 10.733, + 56.838, + 49.242, + 97.156, + 104.395, + 145.763, + 136.901, + 129.08, + 118.183, + 124.096, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -21314,19 +21314,19 @@ 31.876, 31.876, 31.876, - 10.624, - 55.526, - 35.321, - 92.578, - 82.22, - 136.971, - 94.706, - 122.95, - 112.905, - 113.927, - 101.185, - 65.78, - 0.0, + 11.037, + 57.821, + 51.361, + 107.814, + 103.496, + 145.357, + 132.397, + 137.355, + 127.817, + 128.223, + 114.211, + 78.805, + 13.026, 31.876, 31.876, 31.876, @@ -21338,19 +21338,19 @@ 33.107, 33.107, 72.055, - 77.563, - 125.812, - 171.018, - 156.293, - 148.328, - 147.385, - 132.39, - 132.92, - 120.449, - 148.264, - 184.831, - 136.613, - 136.613, + 77.881, + 128.185, + 187.647, + 181.871, + 178.989, + 179.041, + 172.86, + 168.485, + 158.248, + 170.406, + 197.856, + 149.638, + 149.638, 150.785, 60.908, 33.107, @@ -21362,19 +21362,19 @@ 33.107, 33.107, 72.113, - 77.844, - 126.8, - 173.076, - 159.333, - 151.147, - 166.715, - 134.013, - 134.752, - 121.565, - 148.62, - 185.772, - 137.705, - 137.733, + 78.142, + 129.1, + 189.172, + 183.828, + 180.578, + 188.164, + 173.812, + 169.643, + 159.081, + 170.973, + 198.797, + 150.73, + 150.759, 151.814, 60.908, 33.107, @@ -21386,19 +21386,19 @@ 33.158, 33.216, 72.404, - 77.755, - 126.268, - 188.213, - 171.301, - 164.848, - 166.142, - 181.854, - 157.994, - 162.873, - 162.047, - 184.831, - 136.613, - 136.613, + 78.149, + 128.69, + 193.827, + 189.137, + 186.744, + 187.699, + 193.439, + 185.128, + 186.435, + 176.403, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21410,19 +21410,19 @@ 33.107, 33.107, 71.35, - 76.897, - 128.487, - 190.291, - 186.861, - 186.753, - 148.866, - 153.779, - 185.8, - 142.724, - 162.068, - 184.831, - 136.613, - 136.613, + 77.333, + 129.866, + 194.678, + 193.815, + 193.942, + 179.773, + 182.297, + 193.856, + 174.605, + 176.412, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21434,19 +21434,19 @@ 32.265, 32.304, 70.631, - 59.635, - 90.147, - 121.243, - 155.252, - 147.186, - 186.007, - 193.736, - 192.74, - 163.337, - 162.902, - 184.831, - 118.899, - 83.472, + 60.017, + 92.74, + 138.716, + 181.448, + 178.526, + 193.814, + 195.629, + 195.413, + 176.927, + 176.752, + 197.856, + 131.925, + 96.497, 115.348, 79.969, 31.876, @@ -21458,19 +21458,19 @@ 32.412, 32.572, 32.831, - 11.109, - 56.504, - 47.089, - 86.352, - 82.513, - 115.482, - 130.402, - 112.11, - 79.702, - 97.425, - 101.185, - 65.758, - 0.0, + 11.62, + 59.144, + 56.383, + 104.946, + 103.805, + 138.42, + 144.749, + 136.019, + 113.411, + 121.119, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -21482,19 +21482,19 @@ 33.244, 33.107, 71.731, - 77.291, - 123.83, - 169.81, - 156.041, - 147.881, - 146.632, - 129.296, - 131.851, - 118.212, - 145.589, - 184.831, - 136.613, - 136.613, + 77.632, + 127.916, + 187.198, + 181.893, + 178.906, + 178.814, + 170.638, + 168.135, + 157.373, + 169.324, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21506,19 +21506,19 @@ 33.252, 33.274, 71.623, - 77.135, - 125.444, - 170.846, - 178.442, - 165.415, - 172.515, - 154.01, - 148.33, - 166.021, - 184.685, - 184.845, - 136.613, - 136.613, + 77.493, + 127.985, + 187.69, + 192.734, + 187.123, + 190.936, + 182.859, + 175.672, + 183.427, + 194.105, + 202.507, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21530,19 +21530,19 @@ 33.107, 33.107, 71.536, - 77.002, - 126.433, - 190.415, - 189.581, - 191.909, - 190.94, - 201.612, - 214.078, - 209.557, - 202.988, - 190.298, - 138.73, - 138.619, + 77.545, + 129.076, + 194.74, + 196.121, + 198.876, + 198.422, + 208.07, + 216.703, + 212.478, + 204.126, + 203.615, + 151.756, + 151.644, 152.783, 60.908, 33.107, @@ -21555,18 +21555,18 @@ 33.107, 67.007, 77.277, - 128.037, - 190.83, - 193.99, - 205.36, - 224.037, - 183.717, - 200.512, - 176.213, - 177.875, - 203.469, - 148.371, - 139.821, + 129.737, + 194.874, + 197.178, + 210.516, + 224.208, + 215.143, + 225.357, + 212.489, + 202.115, + 216.494, + 161.396, + 152.846, 152.829, 60.908, 33.107, @@ -21578,19 +21578,19 @@ 33.107, 33.107, 66.525, - 75.932, - 125.739, - 183.474, - 202.906, - 190.533, - 203.799, - 224.142, - 239.838, - 151.81, - 164.788, - 192.748, - 148.007, - 141.976, + 76.503, + 128.63, + 193.207, + 203.728, + 210.985, + 224.401, + 237.93, + 240.251, + 190.147, + 187.099, + 205.773, + 161.032, + 155.002, 153.127, 60.908, 33.107, @@ -21602,19 +21602,19 @@ 31.876, 31.876, 65.393, - 58.232, - 85.477, - 115.001, - 146.887, - 151.074, - 168.602, - 150.063, - 148.722, - 128.716, - 147.07, - 183.492, - 119.125, - 83.472, + 58.746, + 92.074, + 135.945, + 177.735, + 185.897, + 204.492, + 195.668, + 189.616, + 171.299, + 173.297, + 196.518, + 132.151, + 96.497, 115.348, 79.921, 31.876, @@ -21626,19 +21626,19 @@ 31.876, 31.876, 28.45, - 10.158, - 49.135, - 27.001, - 65.199, - 60.55, - 95.906, - 75.437, - 81.449, - 67.924, - 94.383, - 97.759, - 65.758, - 0.0, + 10.522, + 56.693, + 47.616, + 95.041, + 95.122, + 131.58, + 120.279, + 121.031, + 109.834, + 120.623, + 110.785, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -21650,19 +21650,19 @@ 33.107, 33.107, 67.545, - 76.549, - 120.61, - 165.708, - 152.011, - 145.225, - 144.796, - 142.363, - 139.203, - 135.879, - 156.391, - 181.404, - 136.613, - 136.613, + 76.929, + 127.499, + 185.389, + 180.217, + 177.888, + 178.187, + 175.284, + 171.494, + 165.259, + 174.035, + 194.43, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21674,19 +21674,19 @@ 33.107, 33.107, 68.015, - 77.101, - 123.264, - 167.675, - 166.564, - 160.597, - 160.912, - 150.222, - 144.813, - 128.096, - 152.933, - 181.404, - 136.613, - 136.613, + 77.764, + 128.045, + 186.372, + 187.092, + 184.952, + 185.496, + 180.458, + 174.057, + 162.896, + 172.567, + 194.43, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21699,18 +21699,18 @@ 33.107, 68.134, 78.18, - 129.806, - 188.574, - 182.362, - 141.663, - 140.419, - 145.419, - 153.568, - 113.086, - 144.715, - 181.404, - 136.613, - 136.613, + 130.614, + 194.158, + 193.003, + 176.253, + 176.235, + 178.826, + 184.513, + 155.352, + 169.091, + 194.43, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21722,19 +21722,19 @@ 33.107, 33.107, 67.59, - 76.538, - 124.829, - 170.327, - 156.213, - 148.679, - 146.609, - 129.872, - 129.249, - 115.495, - 143.058, - 181.404, - 136.613, - 136.613, + 77.272, + 128.263, + 187.881, + 182.329, + 179.565, + 179.076, + 172.053, + 167.214, + 156.432, + 168.401, + 194.43, + 149.638, + 149.638, 150.829, 60.908, 33.107, @@ -21746,19 +21746,19 @@ 33.107, 33.107, 67.73, - 76.625, - 120.464, - 164.307, - 162.484, - 158.01, - 161.511, - 120.88, - 127.182, - 113.154, - 139.195, - 181.404, - 136.728, - 136.928, + 77.147, + 127.957, + 185.007, + 185.236, + 183.832, + 185.838, + 165.635, + 166.339, + 155.437, + 166.777, + 194.43, + 149.753, + 149.953, 151.24, 60.908, 33.107, @@ -21770,19 +21770,19 @@ 31.876, 32.006, 67.647, - 59.473, - 84.616, - 116.341, - 150.469, - 143.055, - 142.346, - 120.448, - 127.269, - 113.136, - 138.855, - 177.978, - 118.899, - 83.472, + 59.913, + 92.287, + 136.77, + 179.636, + 176.989, + 177.177, + 165.29, + 166.385, + 155.448, + 166.652, + 191.004, + 131.925, + 96.497, 115.348, 79.921, 31.876, @@ -21794,19 +21794,19 @@ 31.876, 31.949, 28.668, - 10.195, - 51.262, - 29.583, - 68.138, - 60.74, - 95.23, - 74.003, - 80.206, - 65.934, - 91.405, - 94.333, - 65.758, - 0.0, + 10.669, + 57.406, + 49.102, + 96.589, + 93.928, + 129.437, + 118.627, + 118.675, + 107.682, + 118.773, + 107.358, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -21818,19 +21818,19 @@ 33.107, 33.107, 68.128, - 76.884, - 125.759, - 186.841, - 168.399, - 162.198, - 166.911, - 176.374, - 147.869, - 134.029, - 154.559, - 177.978, - 136.613, - 136.613, + 77.703, + 128.96, + 193.497, + 188.109, + 185.813, + 188.35, + 192.77, + 179.67, + 164.543, + 173.299, + 191.004, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21842,19 +21842,19 @@ 33.107, 33.107, 67.707, - 76.622, - 122.786, - 168.741, - 154.266, - 146.176, - 144.351, - 134.338, - 140.778, - 123.339, - 147.905, - 177.978, - 136.613, - 136.613, + 77.125, + 128.003, + 187.154, + 181.515, + 178.491, + 178.147, + 172.806, + 172.346, + 159.908, + 170.506, + 191.004, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21866,19 +21866,19 @@ 33.107, 33.107, 67.924, - 76.626, - 125.056, - 182.739, - 171.262, - 158.172, - 171.726, - 161.944, - 154.56, - 126.793, - 149.63, - 177.978, - 136.613, - 136.613, + 77.467, + 128.466, + 193.014, + 189.655, + 184.086, + 190.666, + 188.175, + 178.497, + 164.185, + 171.253, + 191.004, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21890,19 +21890,19 @@ 33.107, 33.107, 64.02, - 76.481, - 126.095, - 186.84, - 184.784, - 185.796, - 171.301, - 167.639, - 173.112, - 146.803, - 154.969, - 177.978, - 136.613, - 136.613, + 77.334, + 129.399, + 193.684, + 193.322, + 193.746, + 190.454, + 188.928, + 193.761, + 179.108, + 173.488, + 191.004, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -21914,19 +21914,19 @@ 33.107, 33.107, 64.812, - 76.873, - 125.113, - 183.504, - 179.309, - 165.857, - 189.956, - 190.157, - 195.842, - 172.299, - 167.91, - 179.554, - 136.756, - 136.613, + 77.523, + 128.625, + 193.054, + 192.787, + 187.624, + 194.793, + 195.514, + 199.001, + 189.584, + 180.936, + 192.58, + 149.781, + 149.638, 150.775, 60.908, 33.107, @@ -21938,19 +21938,19 @@ 31.876, 31.876, 62.819, - 58.812, - 90.071, - 144.629, - 197.435, - 191.808, - 195.014, - 189.233, - 198.018, - 143.989, - 174.69, - 186.818, - 121.135, - 84.248, + 59.529, + 93.433, + 147.28, + 202.924, + 210.033, + 211.276, + 208.826, + 211.356, + 179.115, + 191.138, + 199.843, + 134.16, + 97.273, 115.542, 79.921, 31.876, @@ -21963,18 +21963,18 @@ 31.876, 25.024, 11.318, - 51.185, - 29.378, - 67.881, - 60.219, - 95.288, - 88.749, - 84.331, - 72.396, - 96.893, - 96.512, - 65.808, - 0.0, + 56.558, + 49.273, + 96.913, + 94.592, + 131.154, + 129.582, + 124.762, + 115.462, + 124.963, + 109.537, + 78.833, + 13.026, 31.876, 31.876, 31.876, @@ -21986,19 +21986,19 @@ 33.107, 33.107, 63.44, - 75.304, - 122.77, - 192.407, - 173.432, - 176.689, - 185.684, - 173.192, - 171.578, - 152.327, - 192.232, - 193.031, - 140.132, - 138.965, + 76.197, + 127.448, + 199.79, + 201.983, + 210.516, + 220.716, + 222.23, + 211.62, + 195.081, + 206.233, + 206.056, + 153.157, + 151.991, 152.421, 60.908, 33.107, @@ -22010,19 +22010,19 @@ 33.107, 33.107, 63.389, - 75.448, - 120.185, - 164.987, - 199.087, - 173.072, - 169.024, - 149.374, - 148.864, - 146.524, - 157.896, - 183.779, - 139.715, - 138.601, + 76.09, + 127.265, + 185.977, + 207.068, + 208.118, + 205.499, + 196.155, + 190.129, + 183.715, + 186.611, + 196.804, + 152.741, + 151.626, 151.9, 60.908, 33.107, @@ -22034,19 +22034,19 @@ 33.107, 33.107, 63.537, - 75.534, - 118.589, - 162.815, - 147.358, - 139.913, - 139.295, - 115.02, - 124.214, - 110.542, - 136.741, - 175.238, - 136.758, - 136.613, + 76.147, + 127.144, + 184.614, + 178.585, + 175.935, + 176.449, + 163.819, + 166.024, + 155.285, + 166.596, + 188.263, + 149.784, + 149.638, 150.775, 60.908, 33.107, @@ -22058,19 +22058,19 @@ 33.107, 33.107, 63.558, - 75.918, - 118.166, - 163.566, - 149.868, - 142.427, - 141.399, - 128.039, - 126.441, - 112.151, - 136.836, - 174.552, - 136.613, - 136.613, + 77.018, + 127.263, + 184.99, + 179.755, + 177.029, + 177.057, + 169.305, + 166.304, + 155.326, + 166.05, + 187.577, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22082,19 +22082,19 @@ 33.107, 33.107, 64.161, - 76.171, - 120.078, - 164.942, - 150.659, - 143.003, - 141.64, - 116.897, - 126.019, - 111.849, - 137.536, - 174.942, - 137.07, - 137.197, + 76.698, + 127.628, + 185.661, + 180.097, + 177.313, + 177.265, + 164.53, + 166.202, + 155.305, + 166.556, + 187.968, + 150.096, + 150.222, 151.421, 60.908, 33.107, @@ -22106,19 +22106,19 @@ 31.876, 31.876, 64.059, - 59.124, - 84.873, - 116.161, - 149.857, - 142.324, - 141.461, - 117.358, - 126.507, - 121.361, - 158.513, - 174.552, - 118.899, - 83.472, + 59.73, + 92.587, + 137.201, + 179.78, + 177.012, + 177.12, + 164.667, + 166.378, + 159.306, + 174.981, + 187.577, + 131.925, + 96.497, 115.357, 80.121, 31.876, @@ -22130,19 +22130,19 @@ 31.876, 31.876, 25.024, - 9.647, - 53.965, - 49.51, - 95.568, - 99.878, - 139.32, - 128.115, - 112.18, - 108.712, - 127.883, - 90.906, - 65.758, - 0.0, + 10.87, + 58.172, + 56.847, + 109.079, + 109.532, + 146.032, + 144.457, + 144.622, + 131.532, + 140.384, + 103.932, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -22155,18 +22155,18 @@ 31.876, 21.597, 11.318, - 59.538, - 59.197, - 111.699, - 109.013, - 115.32, - 125.63, - 109.264, - 62.946, - 88.22, - 90.134, - 66.024, - 0.0, + 60.439, + 59.914, + 112.645, + 112.205, + 139.354, + 143.887, + 136.69, + 106.796, + 117.758, + 103.689, + 79.05, + 13.026, 31.876, 31.876, 31.876, @@ -22178,19 +22178,19 @@ 33.723, 33.906, 62.098, - 76.647, - 119.185, - 164.348, - 150.57, - 142.806, - 141.28, - 115.785, - 124.333, - 110.436, - 135.189, - 173.341, - 136.613, - 136.613, + 77.393, + 127.6, + 185.589, + 180.285, + 177.383, + 177.173, + 163.909, + 165.517, + 154.724, + 165.488, + 187.164, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22202,19 +22202,19 @@ 33.407, 33.466, 61.664, - 75.916, - 120.01, - 166.556, - 153.191, - 144.593, - 142.192, - 116.73, - 124.455, - 116.593, - 134.75, - 173.062, - 136.613, - 136.613, + 76.859, + 127.301, + 186.719, + 181.541, + 178.225, + 177.601, + 165.01, + 165.607, + 163.467, + 165.333, + 187.069, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22226,19 +22226,19 @@ 33.107, 33.107, 61.069, - 75.608, - 125.733, - 190.878, - 192.344, - 173.692, - 161.973, - 167.19, - 180.748, - 127.515, - 146.581, - 174.323, - 136.613, - 136.613, + 76.695, + 129.297, + 194.976, + 195.324, + 191.648, + 186.597, + 189.107, + 193.027, + 162.037, + 170.151, + 187.489, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22250,19 +22250,19 @@ 33.107, 33.107, 61.098, - 75.487, - 113.869, - 157.329, - 142.104, - 137.788, - 136.202, - 105.349, - 116.565, - 103.785, - 131.141, - 173.646, - 136.613, - 136.613, + 76.322, + 125.735, + 182.414, + 176.49, + 175.48, + 175.479, + 158.387, + 162.287, + 152.011, + 163.931, + 187.215, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22274,19 +22274,19 @@ 31.876, 31.876, 59.852, - 57.741, - 79.176, - 111.411, - 145.757, - 139.824, - 139.837, - 114.492, - 124.566, - 108.429, - 132.764, - 170.179, - 118.899, - 83.472, + 58.575, + 90.581, + 135.321, + 178.189, + 176.168, + 176.844, + 162.299, + 165.73, + 153.963, + 164.601, + 183.772, + 131.925, + 96.497, 115.348, 79.921, 31.876, @@ -22298,19 +22298,19 @@ 31.876, 31.876, 21.597, - 8.976, - 45.949, - 24.306, - 62.36, - 55.127, - 89.42, - 83.168, - 135.311, - 112.116, - 109.595, - 85.557, - 65.758, - 0.0, + 9.878, + 56.373, + 47.485, + 94.673, + 92.108, + 127.553, + 121.907, + 142.833, + 127.509, + 126.489, + 99.846, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -22322,19 +22322,19 @@ 33.107, 33.107, 61.03, - 75.335, - 116.695, - 162.188, - 147.653, - 139.49, - 137.954, - 111.773, - 121.903, - 107.651, - 133.3, - 168.431, - 136.613, - 136.613, + 76.374, + 126.978, + 184.857, + 179.121, + 176.056, + 175.862, + 161.677, + 164.651, + 153.697, + 164.871, + 183.241, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22346,19 +22346,19 @@ 33.179, 33.342, 58.029, - 77.78, - 114.167, - 157.797, - 159.999, - 157.264, - 136.383, - 123.362, - 117.721, - 159.2, - 158.14, - 170.851, - 136.613, - 136.613, + 77.934, + 126.014, + 182.833, + 184.89, + 184.182, + 175.486, + 167.782, + 162.904, + 175.26, + 174.835, + 184.045, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22370,19 +22370,19 @@ 33.107, 33.252, 58.042, - 75.458, - 112.71, - 156.509, - 141.763, - 137.352, - 134.776, - 105.04, - 116.774, - 120.455, - 163.464, - 169.237, - 136.613, - 136.613, + 76.558, + 125.448, + 182.275, + 176.519, + 175.431, + 175.449, + 157.808, + 162.527, + 169.026, + 176.978, + 183.484, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22394,19 +22394,19 @@ 33.107, 33.107, 58.026, - 76.876, - 122.79, - 187.885, - 184.656, - 173.796, - 193.082, - 174.654, - 185.155, - 154.419, - 149.923, - 171.125, - 136.613, - 136.613, + 77.8, + 128.115, + 194.185, + 193.455, + 191.829, + 195.488, + 192.462, + 193.789, + 173.326, + 171.555, + 184.151, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22418,19 +22418,19 @@ 33.107, 33.107, 56.95, - 75.266, - 123.031, - 185.25, - 179.797, - 165.786, - 174.982, - 175.114, - 161.085, - 140.475, - 153.897, - 171.125, - 136.613, - 136.613, + 77.035, + 128.261, + 193.396, + 192.679, + 188.182, + 192.424, + 192.686, + 187.16, + 167.579, + 173.14, + 184.151, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22441,20 +22441,20 @@ 31.876, 31.876, 31.876, - 55.995, - 57.074, - 87.327, - 132.754, - 160.701, - 158.553, - 164.252, - 156.937, - 160.604, - 145.865, - 160.981, - 173.614, - 119.409, - 83.472, + 56.034, + 58.994, + 92.648, + 144.54, + 185.306, + 185.088, + 189.58, + 196.53, + 194.063, + 178.8, + 182.399, + 186.94, + 132.435, + 96.497, 115.348, 79.921, 31.876, @@ -22465,20 +22465,20 @@ 31.876, 31.876, 31.876, - 17.936, - 8.274, - 44.946, - 43.974, - 81.101, - 84.446, - 128.693, - 113.634, - 119.83, - 82.11, - 97.566, - 84.578, - 65.758, - 0.0, + 18.12, + 9.682, + 56.033, + 55.941, + 104.052, + 110.73, + 157.63, + 148.404, + 148.187, + 126.972, + 128.843, + 99.88, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -22489,20 +22489,20 @@ 33.107, 33.107, 33.107, - 56.206, - 74.294, - 115.783, - 163.362, - 150.393, - 171.203, - 140.418, - 113.975, - 137.53, - 110.168, - 149.38, - 167.773, - 136.903, - 137.073, + 56.443, + 75.785, + 127.058, + 185.809, + 180.624, + 190.608, + 177.647, + 162.142, + 171.541, + 154.935, + 171.367, + 183.117, + 149.929, + 150.098, 151.312, 60.908, 33.107, @@ -22513,20 +22513,20 @@ 33.107, 33.107, 33.107, - 57.654, - 75.408, - 123.457, - 185.047, - 149.765, - 142.736, - 158.843, - 137.945, - 124.345, - 110.27, - 134.112, - 167.383, - 136.613, - 136.637, + 57.757, + 77.463, + 128.884, + 193.457, + 180.308, + 177.771, + 185.354, + 179.61, + 166.338, + 155.01, + 165.407, + 182.928, + 149.638, + 149.663, 150.902, 60.908, 33.107, @@ -22537,20 +22537,20 @@ 33.107, 33.107, 33.107, - 53.682, - 74.303, - 113.309, - 158.44, - 159.869, - 155.161, - 159.587, - 130.535, - 133.483, - 119.687, - 131.883, - 170.224, - 136.613, - 136.613, + 53.827, + 76.029, + 126.204, + 183.531, + 185.049, + 183.419, + 186.919, + 168.495, + 169.843, + 158.95, + 164.556, + 183.794, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22561,20 +22561,20 @@ 33.107, 33.107, 33.107, - 53.424, - 73.722, - 110.736, - 155.864, - 142.44, - 137.304, - 131.873, - 109.42, - 120.76, - 106.582, - 138.441, - 164.521, - 136.613, - 136.613, + 53.565, + 75.488, + 124.777, + 182.381, + 177.119, + 175.526, + 174.714, + 159.204, + 164.473, + 153.531, + 167.123, + 179.647, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22585,20 +22585,20 @@ 33.107, 33.107, 33.107, - 53.022, - 73.981, - 113.031, - 159.14, - 146.308, - 140.671, - 142.108, - 119.208, - 126.341, - 122.214, - 140.027, - 163.242, - 136.613, - 136.613, + 53.188, + 75.965, + 125.949, + 183.95, + 178.901, + 176.956, + 178.032, + 165.059, + 166.822, + 160.017, + 167.752, + 179.289, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -22609,20 +22609,20 @@ 31.876, 31.876, 31.876, - 52.151, - 56.081, - 85.813, - 111.168, - 146.063, - 139.163, - 138.055, - 111.63, - 123.231, - 108.695, - 132.848, - 162.715, - 118.899, - 83.472, + 52.314, + 57.994, + 92.226, + 135.884, + 178.811, + 176.302, + 176.527, + 163.945, + 165.561, + 154.457, + 165.017, + 179.124, + 131.925, + 96.497, 115.348, 79.921, 31.876, @@ -22633,20 +22633,20 @@ 31.876, 31.876, 31.876, - 14.357, - 56.458, - 50.278, - 72.693, - 74.731, - 111.172, - 104.061, - 94.921, - 91.791, - 79.492, - 57.422, - 45.162, - 0.0, - 0.0, + 14.593, + 58.836, + 56.768, + 99.088, + 100.848, + 137.201, + 134.387, + 130.555, + 124.528, + 114.138, + 84.541, + 60.475, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -22657,20 +22657,20 @@ 33.107, 33.107, 70.58, - 80.611, - 126.323, - 177.009, - 156.689, - 143.039, - 137.049, - 131.306, - 109.863, - 121.606, - 107.392, - 132.053, - 113.886, - 136.613, - 118.899, + 80.864, + 128.5, + 191.079, + 182.959, + 177.526, + 175.503, + 174.544, + 159.509, + 164.942, + 153.971, + 164.749, + 130.727, + 149.638, + 131.925, 60.908, 33.107, 33.107, @@ -22681,20 +22681,20 @@ 33.107, 33.107, 71.114, - 80.875, - 126.387, - 177.687, - 157.763, - 144.481, - 137.419, - 131.445, - 109.735, - 121.481, - 107.023, - 131.483, - 113.381, - 136.613, - 118.899, + 81.185, + 128.734, + 191.539, + 183.468, + 178.227, + 175.646, + 174.608, + 159.485, + 164.914, + 153.843, + 164.545, + 130.613, + 149.638, + 131.925, 60.908, 33.107, 33.107, @@ -22705,20 +22705,20 @@ 33.107, 33.107, 71.056, - 80.75, - 126.112, - 177.029, - 158.346, - 146.677, - 140.342, - 133.619, - 112.238, - 122.742, - 107.797, - 131.751, - 113.282, - 136.613, - 118.899, + 81.088, + 128.523, + 191.235, + 183.829, + 179.249, + 176.969, + 175.483, + 160.572, + 165.465, + 154.189, + 164.684, + 130.601, + 149.638, + 131.925, 60.908, 33.107, 33.107, @@ -22729,20 +22729,20 @@ 33.107, 33.107, 71.766, - 77.876, - 126.437, - 176.225, - 156.509, - 143.001, - 136.869, - 130.179, - 109.871, - 122.056, - 107.813, - 131.869, - 113.39, - 136.613, - 118.899, + 78.207, + 128.911, + 190.908, + 183.006, + 177.617, + 175.494, + 174.009, + 159.595, + 165.207, + 154.212, + 164.749, + 130.614, + 149.638, + 131.925, 60.908, 33.107, 33.107, @@ -22753,20 +22753,20 @@ 33.107, 33.107, 71.75, - 77.678, - 126.09, - 178.67, - 161.411, - 149.351, - 144.164, - 136.712, - 113.488, - 123.482, - 107.827, - 131.231, - 112.871, - 136.613, - 118.899, + 78.142, + 128.856, + 192.139, + 185.293, + 180.515, + 178.719, + 176.959, + 161.154, + 165.818, + 154.243, + 164.533, + 130.515, + 149.638, + 131.925, 60.908, 33.107, 33.107, @@ -22777,20 +22777,20 @@ 31.876, 31.876, 69.962, - 59.712, - 90.312, - 126.471, - 154.95, - 141.415, - 136.149, - 127.446, - 107.213, - 118.697, - 111.243, - 140.06, - 96.765, - 83.472, - 83.472, + 60.069, + 93.013, + 142.018, + 182.352, + 176.96, + 175.327, + 172.885, + 158.52, + 163.866, + 155.69, + 167.888, + 113.192, + 96.497, + 96.497, 79.921, 31.876, 31.876, @@ -22801,20 +22801,20 @@ 31.876, 31.876, 31.876, - 10.493, - 54.821, - 36.658, - 69.613, - 56.607, - 87.733, - 78.666, - 60.516, - 71.809, - 57.495, - 46.066, - 41.276, - 0.0, - 0.0, + 10.942, + 57.787, + 52.992, + 97.994, + 92.857, + 127.087, + 124.365, + 110.979, + 116.219, + 105.22, + 80.365, + 59.479, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -22825,20 +22825,20 @@ 33.107, 33.107, 71.432, - 77.372, - 125.393, - 173.392, - 153.875, - 140.938, - 136.078, - 126.813, - 110.021, - 122.1, - 107.261, - 130.586, - 112.273, - 136.613, - 118.899, + 77.791, + 128.421, + 189.709, + 181.956, + 176.844, + 175.351, + 172.518, + 159.772, + 165.32, + 154.074, + 164.346, + 130.363, + 149.638, + 131.925, 60.908, 33.107, 33.107, @@ -22849,20 +22849,20 @@ 33.107, 33.107, 71.716, - 77.59, - 126.612, - 187.066, - 162.783, - 154.314, - 156.745, - 156.775, - 140.539, - 145.04, - 108.458, - 131.589, - 109.189, - 136.613, - 118.899, + 78.228, + 129.652, + 193.788, + 186.036, + 182.849, + 184.426, + 184.74, + 177.93, + 175.014, + 154.589, + 164.763, + 126.999, + 149.638, + 131.925, 60.908, 33.107, 33.107, @@ -22873,20 +22873,20 @@ 33.107, 33.107, 71.388, - 77.293, - 125.704, - 177.454, - 159.109, - 147.16, - 140.399, - 132.046, - 111.752, - 123.045, - 109.098, - 133.124, - 110.203, - 137.367, - 119.8, + 77.793, + 128.843, + 191.923, + 184.603, + 180.019, + 177.575, + 175.116, + 160.574, + 165.781, + 155.128, + 165.727, + 127.608, + 150.392, + 132.825, 60.908, 33.107, 33.107, @@ -22897,20 +22897,20 @@ 34.179, 34.375, 69.002, - 78.205, - 125.929, - 178.565, - 160.644, - 150.669, - 145.011, - 136.113, - 113.542, - 123.323, - 108.392, - 131.981, - 109.227, - 136.613, - 118.899, + 78.923, + 129.46, + 192.64, + 185.167, + 181.314, + 179.269, + 176.77, + 161.348, + 165.911, + 154.637, + 164.968, + 127.011, + 149.638, + 131.925, 60.908, 33.107, 33.107, @@ -22921,20 +22921,20 @@ 33.107, 33.107, 68.216, - 77.267, - 125.138, - 185.606, - 175.871, - 151.128, - 155.121, - 152.31, - 131.147, - 135.226, - 110.491, - 141.825, - 111.372, - 136.613, - 118.932, + 77.922, + 128.656, + 193.237, + 192.231, + 181.507, + 183.77, + 184.563, + 170.947, + 170.922, + 155.497, + 168.63, + 127.501, + 149.638, + 131.958, 60.908, 33.107, 33.107, @@ -22945,20 +22945,20 @@ 31.876, 31.876, 66.844, - 59.435, - 89.737, - 137.358, - 168.003, - 146.612, - 140.922, - 138.985, - 115.303, - 145.774, - 116.997, - 140.659, - 91.945, - 83.472, - 83.472, + 60.139, + 93.352, + 145.084, + 188.639, + 179.53, + 177.52, + 177.977, + 165.113, + 175.391, + 158.145, + 168.206, + 109.365, + 96.497, + 96.497, 79.955, 31.876, 31.876, @@ -22969,20 +22969,20 @@ 31.876, 31.876, 28.45, - 10.1, - 54.562, - 41.302, - 76.366, - 62.133, - 90.443, - 82.546, - 73.845, - 75.335, - 60.389, - 48.74, - 38.39, - 0.0, - 0.0, + 10.823, + 58.285, + 55.557, + 101.313, + 95.545, + 128.334, + 126.278, + 116.933, + 118.05, + 106.762, + 81.534, + 56.141, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -22993,20 +22993,20 @@ 33.107, 33.107, 67.626, - 76.585, - 124.217, - 173.799, - 154.647, - 145.215, - 142.415, - 196.781, - 160.708, - 149.833, - 136.934, - 154.62, - 110.165, - 136.756, - 118.899, + 77.291, + 128.031, + 190.257, + 182.69, + 181.376, + 182.365, + 202.386, + 191.038, + 181.606, + 170.636, + 175.38, + 128.175, + 149.782, + 131.925, 60.908, 33.107, 33.107, @@ -23017,20 +23017,20 @@ 33.107, 33.107, 67.543, - 76.492, - 124.196, - 173.891, - 155.291, - 143.727, - 137.848, - 126.758, - 109.716, - 121.077, - 107.106, - 150.6, - 108.555, - 136.613, - 118.899, + 77.287, + 128.209, + 190.389, + 182.866, + 178.345, + 176.273, + 172.614, + 159.879, + 165.127, + 154.254, + 171.914, + 126.846, + 149.638, + 131.925, 60.908, 33.107, 33.107, @@ -23041,20 +23041,20 @@ 33.107, 33.107, 67.544, - 76.418, - 123.899, - 176.341, - 159.275, - 150.379, - 167.353, - 161.0, - 143.173, - 147.101, - 119.654, - 136.763, - 109.996, - 136.708, - 118.899, + 77.286, + 128.132, + 191.617, + 184.724, + 182.452, + 196.922, + 196.86, + 183.346, + 184.913, + 164.364, + 168.788, + 128.052, + 149.733, + 131.925, 60.908, 33.107, 33.107, @@ -23065,20 +23065,20 @@ 33.107, 33.107, 67.492, - 76.385, - 125.263, - 185.364, - 160.11, - 153.062, - 157.651, - 179.025, - 149.627, - 142.21, - 130.342, - 156.51, - 115.815, - 138.139, - 119.739, + 77.168, + 128.947, + 193.27, + 185.096, + 186.236, + 193.085, + 204.111, + 191.635, + 184.504, + 173.796, + 182.282, + 131.655, + 151.164, + 132.765, 60.908, 33.107, 33.107, @@ -23089,20 +23089,20 @@ 33.107, 33.107, 63.478, - 75.997, - 122.948, - 170.024, - 151.562, - 150.399, - 162.23, - 156.767, - 140.392, - 145.444, - 125.024, - 144.259, - 112.232, - 137.719, - 119.263, + 76.653, + 127.447, + 188.709, + 181.63, + 188.19, + 202.892, + 205.884, + 192.665, + 191.311, + 173.885, + 179.332, + 131.544, + 150.744, + 132.289, 60.908, 33.107, 33.107, @@ -23113,20 +23113,20 @@ 31.876, 31.876, 62.392, - 58.242, - 87.799, - 125.069, - 166.408, - 169.423, - 168.758, - 156.019, - 142.009, - 157.62, - 140.782, - 188.86, - 104.233, - 84.168, - 83.472, + 58.955, + 92.182, + 142.041, + 194.391, + 205.234, + 208.8, + 203.771, + 193.744, + 203.171, + 189.235, + 202.169, + 117.392, + 97.194, + 96.497, 79.921, 31.876, 31.876, @@ -23137,20 +23137,20 @@ 31.876, 31.876, 25.024, - 9.731, - 52.326, - 32.297, - 66.155, - 53.062, - 85.421, - 71.437, - 56.099, - 68.799, - 55.206, - 45.051, - 36.423, - 0.0, - 0.0, + 10.516, + 57.084, + 51.616, + 96.964, + 91.77, + 126.662, + 121.454, + 109.542, + 115.398, + 104.715, + 80.385, + 55.793, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -23161,20 +23161,20 @@ 33.107, 33.107, 64.441, - 76.591, - 123.259, - 171.058, - 152.743, - 141.05, - 135.712, - 123.813, - 125.299, - 121.59, - 106.819, - 130.177, - 107.378, - 133.186, - 118.899, + 77.293, + 128.018, + 189.346, + 181.928, + 177.344, + 175.506, + 171.265, + 166.635, + 165.484, + 154.269, + 164.575, + 126.7, + 146.212, + 131.925, 60.908, 33.107, 33.107, @@ -23185,20 +23185,20 @@ 33.107, 33.107, 64.438, - 76.32, - 123.362, - 183.574, - 171.872, - 150.551, - 143.819, - 130.739, - 113.781, - 123.686, - 108.662, - 131.362, - 107.737, - 133.186, - 118.899, + 77.252, + 128.096, + 192.732, + 190.623, + 181.57, + 179.042, + 176.919, + 161.762, + 166.38, + 155.05, + 165.043, + 126.714, + 146.212, + 131.925, 60.908, 33.107, 33.107, @@ -23209,20 +23209,20 @@ 33.107, 33.107, 64.356, - 76.01, - 122.787, - 185.011, - 167.422, - 144.175, - 137.206, - 130.386, - 109.303, - 120.663, - 105.974, - 130.055, - 107.279, - 133.186, - 118.899, + 77.149, + 127.93, + 193.273, + 188.662, + 178.803, + 176.217, + 176.155, + 161.064, + 165.18, + 154.011, + 164.592, + 126.595, + 146.212, + 131.925, 60.908, 33.107, 33.107, @@ -23233,20 +23233,20 @@ 33.107, 33.107, 64.303, - 75.89, - 122.444, - 169.698, - 150.604, - 138.616, - 133.978, - 119.85, - 105.36, - 117.734, - 128.652, - 130.015, - 107.193, - 133.186, - 118.899, + 77.058, + 127.842, + 188.887, + 181.082, + 176.415, + 175.018, + 169.772, + 158.293, + 164.006, + 163.048, + 164.522, + 126.497, + 146.212, + 131.925, 60.908, 33.107, 33.107, @@ -23257,20 +23257,20 @@ 33.107, 33.107, 60.61, - 75.578, - 121.911, - 169.261, - 150.455, - 137.412, - 133.805, - 119.338, - 106.667, - 118.86, - 105.241, - 129.9, - 106.964, - 133.186, - 118.899, + 76.843, + 127.593, + 188.723, + 181.082, + 175.873, + 174.987, + 169.487, + 158.884, + 164.48, + 153.755, + 164.515, + 126.476, + 146.212, + 131.925, 60.908, 33.107, 33.107, @@ -23281,20 +23281,20 @@ 31.876, 31.876, 59.181, - 57.815, - 86.451, - 121.736, - 152.164, - 141.13, - 136.296, - 123.207, - 111.384, - 122.366, - 106.95, - 130.324, - 89.39, - 80.117, - 83.472, + 58.972, + 92.055, + 140.856, + 181.849, + 177.567, + 175.917, + 171.022, + 160.84, + 165.984, + 154.649, + 164.939, + 109.042, + 93.143, + 96.497, 79.921, 31.876, 31.876, @@ -23305,20 +23305,20 @@ 31.876, 31.876, 21.597, - 9.308, - 51.189, - 36.473, - 74.753, - 75.218, - 112.474, - 99.611, - 83.907, - 96.111, - 80.451, - 56.272, - 37.742, - 0.0, - 0.0, + 10.617, + 56.683, + 53.812, + 102.293, + 109.883, + 151.207, + 145.845, + 133.651, + 139.507, + 127.107, + 90.313, + 57.169, + 9.599, + 13.026, 31.876, 31.876, 31.876, @@ -23329,20 +23329,20 @@ 33.107, 33.107, 60.012, - 75.128, - 121.833, - 172.828, - 156.363, - 148.866, - 142.172, - 124.373, - 114.438, - 126.06, - 112.118, - 138.471, - 109.489, - 133.857, - 118.899, + 76.367, + 127.415, + 190.456, + 184.315, + 183.843, + 181.324, + 176.104, + 165.056, + 170.326, + 159.363, + 170.603, + 128.575, + 146.882, + 131.925, 60.908, 33.107, 33.107, @@ -23353,20 +23353,20 @@ 33.107, 33.107, 60.309, - 75.433, - 121.622, - 170.644, - 153.295, - 142.212, - 140.142, - 122.794, - 111.14, - 123.129, - 108.639, - 132.257, - 108.538, - 134.064, - 119.02, + 76.479, + 127.377, + 189.457, + 182.454, + 178.868, + 180.935, + 172.903, + 162.884, + 168.457, + 157.263, + 167.544, + 128.595, + 147.09, + 132.045, 60.908, 33.107, 33.107, @@ -23377,20 +23377,20 @@ 33.107, 33.107, 60.172, - 77.47, - 121.609, - 185.351, - 152.016, - 190.434, - 179.99, - 135.276, - 150.76, - 161.235, - 173.137, - 215.237, - 163.55, - 166.142, - 140.056, + 77.482, + 127.376, + 193.493, + 181.897, + 194.903, + 192.555, + 177.325, + 198.415, + 202.059, + 209.876, + 232.109, + 176.713, + 179.167, + 153.082, 60.908, 33.107, 33.107, @@ -23401,20 +23401,20 @@ 33.107, 33.107, 59.633, - 74.438, - 121.138, - 188.507, - 170.987, - 169.673, - 170.924, - 185.325, - 148.474, - 190.548, - 210.733, - 206.97, - 145.594, - 142.989, - 120.344, + 76.012, + 127.251, + 196.683, + 200.82, + 206.812, + 211.942, + 223.87, + 200.836, + 215.869, + 223.217, + 218.299, + 159.996, + 156.014, + 133.37, 60.908, 33.107, 33.107, @@ -23425,20 +23425,20 @@ 33.107, 33.107, 59.969, - 77.277, - 121.197, - 170.586, - 204.165, - 224.609, - 234.955, - 237.311, - 228.451, - 222.737, - 165.883, - 176.896, - 128.56, - 135.401, - 119.698, + 77.289, + 127.306, + 189.773, + 209.056, + 225.238, + 236.974, + 238.27, + 232.133, + 226.393, + 193.518, + 194.94, + 141.586, + 148.426, + 132.723, 60.908, 33.107, 33.107, @@ -23449,20 +23449,20 @@ 31.876, 31.876, 55.532, - 57.178, - 85.229, - 118.724, - 148.81, - 137.738, - 133.988, - 119.356, - 107.688, - 119.995, - 105.499, - 129.656, - 89.07, - 80.097, - 83.472, + 59.004, + 91.623, + 139.721, + 180.568, + 176.394, + 175.659, + 170.055, + 159.959, + 165.639, + 154.548, + 165.168, + 109.473, + 93.122, + 96.497, 79.921, 31.876, 31.876, @@ -23472,21 +23472,21 @@ 31.876, 31.876, 31.876, - 18.095, - 8.689, - 50.478, - 34.284, - 71.717, - 62.796, - 94.382, - 78.396, - 65.133, - 75.234, - 59.367, - 46.991, - 35.552, - 0.0, - 0.0, + 18.155, + 10.157, + 56.688, + 53.052, + 99.865, + 96.421, + 130.573, + 124.39, + 113.785, + 118.503, + 106.839, + 81.465, + 55.7, + 9.599, + 13.026, 31.876, 31.876, 31.876, @@ -23496,21 +23496,21 @@ 33.107, 33.107, 33.107, - 56.658, - 74.795, - 121.049, - 171.996, - 156.071, - 147.656, - 149.865, - 135.246, - 126.427, - 137.829, - 121.902, - 144.058, - 115.202, - 131.255, - 119.688, + 56.733, + 76.2, + 127.232, + 190.26, + 183.821, + 181.673, + 186.831, + 184.149, + 173.837, + 179.932, + 168.353, + 178.19, + 135.314, + 144.28, + 132.714, 60.908, 33.107, 33.107, @@ -23520,21 +23520,21 @@ 33.107, 33.107, 33.107, - 56.614, - 74.926, - 121.089, - 172.958, - 158.243, - 149.15, - 144.157, - 128.388, - 114.083, - 124.383, - 108.649, - 130.889, - 106.475, - 129.76, - 118.899, + 56.701, + 76.219, + 127.273, + 190.746, + 184.794, + 181.258, + 179.477, + 173.422, + 162.195, + 166.997, + 155.382, + 165.206, + 126.734, + 142.786, + 131.925, 60.908, 33.107, 33.107, @@ -23544,21 +23544,21 @@ 33.107, 33.107, 33.107, - 56.661, - 74.833, - 121.089, - 172.434, - 168.36, - 159.341, - 140.95, - 128.292, - 114.191, - 124.893, - 109.1, - 138.507, - 106.533, - 129.762, - 118.899, + 56.822, + 76.647, + 127.381, + 190.496, + 189.377, + 185.764, + 178.144, + 173.528, + 162.288, + 167.253, + 155.618, + 167.771, + 126.719, + 142.788, + 131.925, 60.908, 33.107, 33.107, @@ -23568,21 +23568,21 @@ 33.107, 33.107, 33.107, - 56.695, - 74.859, - 120.823, - 171.717, - 156.495, - 147.403, - 145.139, - 134.476, - 123.644, - 133.539, - 116.13, - 137.026, - 108.366, - 130.484, - 118.899, + 56.839, + 76.273, + 127.23, + 190.197, + 184.055, + 180.622, + 180.918, + 178.033, + 168.226, + 172.761, + 160.348, + 169.42, + 128.073, + 143.51, + 131.925, 60.908, 33.107, 33.107, @@ -23592,21 +23592,21 @@ 33.107, 33.107, 33.107, - 56.491, - 74.597, - 121.179, - 174.085, - 158.181, - 146.341, - 142.364, - 131.66, - 119.684, - 131.029, - 112.697, - 132.68, - 106.714, - 129.76, - 118.899, + 56.605, + 76.234, + 127.496, + 191.31, + 184.797, + 180.087, + 178.774, + 174.966, + 164.536, + 169.666, + 156.962, + 165.885, + 126.823, + 142.786, + 131.925, 60.908, 33.107, 33.107, @@ -23616,21 +23616,21 @@ 31.876, 31.876, 31.876, - 55.601, - 57.142, - 85.602, - 125.008, - 158.476, - 149.273, - 145.455, - 131.666, - 118.578, - 128.101, - 111.191, - 132.005, - 88.729, - 76.619, - 83.516, + 55.721, + 58.643, + 92.082, + 142.758, + 184.975, + 181.382, + 180.106, + 174.859, + 164.121, + 168.571, + 156.446, + 165.687, + 109.039, + 89.645, + 96.541, 80.169, 31.876, 31.876, @@ -23640,21 +23640,21 @@ 31.876, 31.876, 31.876, - 14.59, - 8.479, - 51.149, - 38.185, - 75.456, - 64.315, - 94.032, - 79.808, - 66.666, - 77.182, - 61.863, - 47.686, - 35.305, - 0.0, - 0.0, + 14.707, + 10.032, + 57.614, + 55.291, + 101.765, + 97.496, + 130.723, + 125.329, + 114.551, + 119.313, + 107.828, + 81.837, + 55.794, + 6.173, + 13.026, 31.876, 31.876, 31.876, @@ -23664,21 +23664,21 @@ 33.107, 33.107, 33.107, - 54.66, - 75.36, - 121.183, - 172.049, - 156.417, - 145.521, - 139.816, - 116.459, - 111.567, - 122.803, - 107.333, - 129.658, - 105.642, - 130.117, - 119.363, + 54.816, + 77.234, + 128.071, + 190.974, + 184.554, + 180.22, + 178.132, + 171.744, + 161.315, + 166.514, + 155.011, + 164.907, + 126.627, + 143.143, + 132.389, 60.908, 33.107, 33.107, @@ -23688,21 +23688,21 @@ 33.107, 33.107, 33.107, - 54.605, - 75.678, - 121.052, - 174.004, - 155.582, - 157.29, - 181.839, - 169.72, - 142.42, - 177.13, - 146.834, - 153.195, - 113.19, - 129.76, - 118.899, + 54.83, + 77.816, + 128.022, + 191.611, + 183.778, + 185.034, + 192.976, + 192.461, + 175.923, + 188.487, + 170.314, + 172.891, + 127.932, + 142.786, + 131.925, 60.908, 33.107, 33.107, @@ -23713,20 +23713,20 @@ 33.107, 33.107, 53.96, - 74.776, - 122.4, - 184.794, - 182.489, - 188.99, - 174.886, - 159.177, - 159.969, - 160.389, - 123.77, - 140.146, - 105.842, - 129.76, - 118.899, + 77.012, + 128.358, + 193.413, + 192.961, + 194.584, + 192.2, + 186.45, + 189.888, + 185.669, + 161.343, + 168.32, + 126.653, + 142.786, + 131.925, 60.908, 33.107, 33.107, @@ -23736,21 +23736,21 @@ 33.107, 33.107, 33.107, - 53.279, - 74.432, - 120.269, - 170.481, - 153.804, - 142.609, - 136.818, - 121.201, - 154.158, - 142.255, - 141.967, - 151.465, - 113.894, - 129.76, - 118.899, + 53.489, + 76.255, + 127.375, + 189.916, + 183.08, + 178.665, + 176.595, + 170.519, + 179.071, + 174.422, + 168.407, + 172.234, + 128.215, + 142.786, + 131.925, 60.908, 33.107, 33.107, @@ -23760,21 +23760,21 @@ 33.107, 33.107, 33.107, - 53.274, - 74.084, - 119.715, - 169.222, - 153.303, - 142.578, - 137.896, - 122.562, - 113.806, - 125.366, - 109.248, - 131.434, - 105.639, - 129.76, - 118.899, + 53.525, + 76.134, + 127.152, + 189.354, + 182.881, + 178.657, + 177.052, + 170.949, + 162.284, + 167.559, + 155.763, + 165.536, + 126.442, + 142.786, + 131.925, 60.908, 33.107, 33.107, @@ -23784,21 +23784,21 @@ 31.876, 31.876, 31.876, - 51.805, - 56.142, - 84.492, - 122.275, - 154.28, - 143.071, - 139.384, - 125.743, - 117.002, - 128.466, - 111.458, - 131.798, - 88.254, - 77.034, - 83.895, + 52.093, + 58.398, + 91.843, + 141.751, + 183.302, + 178.885, + 177.697, + 172.349, + 163.587, + 168.778, + 156.583, + 165.68, + 109.125, + 90.06, + 96.92, 80.478, 31.876, 31.876, @@ -23808,21 +23808,21 @@ 31.876, 31.876, 31.876, - 14.3, - 7.542, - 49.969, - 35.108, - 72.604, - 62.951, - 95.32, - 81.392, - 70.815, - 80.669, - 63.472, - 49.171, - 35.137, - 0.0, - 0.0, + 14.63, + 9.871, + 57.38, + 54.151, + 100.644, + 96.763, + 131.268, + 125.772, + 116.207, + 120.776, + 108.534, + 82.35, + 55.55, + 2.747, + 13.026, 31.876, 31.876, 31.876, @@ -23832,21 +23832,21 @@ 33.107, 33.107, 33.107, - 53.181, - 74.145, - 120.542, - 174.35, - 159.169, - 148.227, - 142.467, - 115.27, - 114.943, - 126.096, - 110.663, - 130.556, - 105.372, - 126.46, - 119.102, + 53.515, + 76.452, + 127.782, + 191.898, + 185.556, + 181.25, + 179.115, + 172.903, + 162.834, + 167.97, + 156.43, + 165.324, + 126.573, + 139.486, + 132.128, 60.908, 33.107, 33.107, @@ -23856,21 +23856,21 @@ 33.107, 33.107, 33.107, - 50.143, - 74.201, - 119.779, - 170.415, - 155.231, - 145.428, - 142.201, - 131.691, - 125.732, - 138.724, - 123.146, - 144.016, - 111.281, - 126.725, - 118.899, + 50.449, + 76.358, + 127.296, + 189.989, + 183.781, + 179.938, + 178.923, + 176.347, + 170.613, + 179.57, + 169.09, + 178.066, + 132.282, + 139.75, + 131.925, 60.908, 33.107, 33.107, @@ -23880,21 +23880,21 @@ 33.107, 33.107, 33.107, - 49.624, - 73.787, - 119.7, - 171.999, - 157.547, - 148.191, - 144.999, - 131.567, - 121.197, - 132.629, - 115.381, - 136.475, - 106.223, - 126.368, - 118.899, + 49.97, + 76.051, + 127.135, + 190.681, + 184.813, + 181.142, + 180.121, + 174.858, + 166.337, + 173.305, + 160.95, + 170.117, + 127.035, + 139.393, + 131.925, 60.908, 33.107, 33.107, @@ -23904,21 +23904,21 @@ 33.107, 33.107, 33.107, - 49.459, - 73.766, - 119.846, - 173.064, - 158.626, - 148.925, - 145.435, - 131.873, - 120.961, - 130.291, - 113.132, - 133.382, - 105.797, - 126.334, - 118.899, + 49.799, + 76.018, + 127.155, + 191.155, + 185.287, + 181.464, + 180.325, + 175.115, + 165.317, + 169.654, + 157.393, + 166.321, + 126.481, + 139.359, + 131.925, 60.908, 33.107, 33.107, @@ -23928,21 +23928,21 @@ 33.107, 33.107, 33.107, - 49.282, - 73.619, - 120.102, - 175.838, - 162.099, - 151.323, - 145.885, - 130.962, - 118.183, - 128.05, - 111.636, - 132.538, - 105.501, - 126.202, - 118.899, + 49.676, + 75.999, + 127.308, + 192.014, + 186.829, + 182.507, + 180.532, + 175.218, + 164.234, + 168.817, + 156.863, + 166.057, + 126.419, + 139.345, + 131.925, 60.908, 33.107, 33.107, @@ -23952,21 +23952,21 @@ 31.876, 31.876, 31.876, - 48.103, - 55.726, - 84.019, - 126.091, - 165.477, - 153.519, - 152.845, - 124.103, - 113.844, - 138.416, - 115.541, - 135.075, - 88.197, - 72.932, - 83.472, + 48.525, + 58.239, + 91.678, + 143.555, + 188.404, + 183.562, + 183.602, + 171.839, + 162.493, + 172.972, + 158.331, + 166.829, + 108.612, + 86.176, + 96.497, 79.942, 31.876, 31.876, @@ -23976,21 +23976,21 @@ 31.876, 31.876, 31.876, - 10.524, - 6.777, - 50.059, - 39.509, - 72.228, - 62.184, - 91.673, - 134.884, - 109.908, - 74.442, - 59.029, - 56.196, - 33.298, - 0.0, - 0.0, + 11.117, + 9.846, + 57.196, + 55.363, + 100.567, + 96.601, + 129.853, + 145.508, + 136.345, + 118.486, + 106.966, + 84.486, + 54.967, + 2.688, + 13.026, 31.876, 31.876, 31.876, @@ -24000,21 +24000,21 @@ 33.107, 33.107, 33.107, - 49.458, - 73.018, - 119.009, - 185.995, - 152.967, - 141.91, - 136.286, - 129.041, - 156.212, - 187.488, - 116.5, - 139.356, - 104.315, - 125.842, - 118.899, + 50.182, + 76.252, + 127.259, + 193.815, + 182.951, + 178.607, + 176.586, + 181.412, + 180.87, + 192.662, + 158.682, + 168.067, + 126.329, + 139.26, + 131.925, 60.908, 33.107, 33.107, @@ -24024,21 +24024,21 @@ 33.107, 33.107, 33.107, - 49.504, - 72.989, - 118.511, - 168.642, - 174.679, - 142.919, - 138.713, - 121.587, - 138.478, - 138.756, - 110.444, - 131.96, - 105.09, - 126.08, - 118.899, + 49.998, + 75.807, + 126.858, + 189.365, + 192.035, + 179.034, + 177.616, + 171.143, + 172.657, + 173.122, + 156.424, + 165.811, + 126.209, + 139.261, + 131.925, 60.908, 33.107, 33.107, @@ -24048,21 +24048,21 @@ 33.107, 33.107, 33.107, - 49.305, - 73.053, - 119.401, - 173.703, - 158.876, - 148.5, - 142.781, - 126.709, - 116.441, - 129.826, - 113.821, - 135.136, - 107.223, - 126.084, - 118.899, + 49.874, + 75.946, + 127.164, + 191.598, + 185.512, + 181.381, + 179.299, + 172.976, + 164.005, + 171.26, + 159.412, + 168.554, + 128.332, + 139.285, + 131.925, 60.908, 33.107, 33.107, @@ -24072,21 +24072,21 @@ 33.107, 33.107, 33.107, - 49.035, - 72.604, - 118.935, - 172.233, - 156.634, - 145.367, - 143.697, - 132.463, - 125.199, - 136.275, - 121.027, - 142.486, - 110.759, - 126.672, - 118.915, + 49.81, + 75.943, + 127.147, + 191.045, + 184.582, + 180.114, + 182.108, + 181.177, + 173.986, + 179.291, + 167.901, + 177.025, + 132.355, + 140.075, + 131.941, 60.908, 33.107, 33.107, @@ -24096,21 +24096,21 @@ 33.107, 33.107, 33.107, - 48.933, - 72.611, - 118.846, - 171.725, - 156.233, - 147.194, - 152.078, - 139.528, - 130.511, - 142.955, - 126.802, - 147.877, - 118.4, - 128.752, - 119.511, + 49.601, + 75.728, + 126.967, + 190.785, + 184.404, + 181.861, + 190.227, + 187.988, + 179.415, + 186.106, + 174.159, + 183.0, + 140.368, + 142.307, + 132.536, 60.908, 33.107, 33.107, @@ -24120,21 +24120,21 @@ 31.876, 31.876, 28.45, - 47.632, - 54.916, - 83.135, - 122.061, - 155.036, - 143.314, - 137.981, - 132.681, - 133.916, - 146.879, - 131.083, - 152.777, - 100.976, - 71.147, - 83.708, + 48.201, + 57.952, + 91.44, + 141.937, + 183.94, + 179.258, + 177.388, + 182.292, + 183.638, + 190.601, + 178.886, + 188.114, + 123.075, + 84.86, + 96.734, 79.921, 31.876, 31.876, @@ -24144,21 +24144,21 @@ 31.876, 31.876, 28.45, - 10.534, - 6.3, - 46.736, - 29.0, - 66.854, - 57.282, - 88.113, - 69.063, - 63.816, - 74.707, - 58.855, - 45.714, - 32.821, - 0.0, + 11.061, + 9.45, + 55.797, + 51.46, + 98.361, + 94.627, + 128.476, + 120.521, + 113.679, + 118.844, + 107.179, + 81.577, + 55.293, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -24168,21 +24168,21 @@ 33.107, 33.107, 29.681, - 48.827, - 72.413, - 118.033, - 168.63, - 153.429, - 143.125, - 134.586, - 107.828, - 117.576, - 128.865, - 113.519, - 135.89, - 110.577, - 122.739, - 118.899, + 49.506, + 75.65, + 126.756, + 189.473, + 183.283, + 179.219, + 177.392, + 170.326, + 167.493, + 172.979, + 161.631, + 171.544, + 132.982, + 136.494, + 131.925, 60.908, 33.107, 33.107, @@ -24192,21 +24192,21 @@ 33.107, 33.107, 29.681, - 48.518, - 72.113, - 118.092, - 168.849, - 152.731, - 141.915, - 136.713, - 128.782, - 180.72, - 145.042, - 110.936, - 131.887, - 104.227, - 122.016, - 118.899, + 49.379, + 75.64, + 126.803, + 189.61, + 183.014, + 178.741, + 176.908, + 173.825, + 191.325, + 177.92, + 158.9, + 167.074, + 126.283, + 135.721, + 131.925, 60.908, 33.107, 33.107, @@ -24216,21 +24216,21 @@ 33.107, 33.107, 29.681, - 48.472, - 72.097, - 118.358, - 170.521, - 155.21, - 144.984, - 139.586, - 121.899, - 114.727, - 126.615, - 121.617, - 136.269, - 105.212, - 122.129, - 118.899, + 49.281, + 75.502, + 126.874, + 190.35, + 184.043, + 180.037, + 178.108, + 171.006, + 164.227, + 170.157, + 162.404, + 168.289, + 126.247, + 135.647, + 131.925, 60.908, 33.107, 33.107, @@ -24240,21 +24240,21 @@ 33.107, 33.107, 29.681, - 48.632, - 72.296, - 118.347, - 169.78, - 153.487, - 142.23, - 136.643, - 118.859, - 110.861, - 123.309, - 108.444, - 130.839, - 103.381, - 121.72, - 118.899, + 49.365, + 75.624, + 126.857, + 190.016, + 183.344, + 178.879, + 176.889, + 169.709, + 161.474, + 168.086, + 157.129, + 166.968, + 126.122, + 135.732, + 131.925, 60.908, 33.107, 33.107, @@ -24264,21 +24264,21 @@ 33.107, 33.107, 29.681, - 48.987, - 72.446, - 118.112, - 169.797, - 155.703, - 147.403, - 143.785, - 127.072, - 117.233, - 127.258, - 110.189, - 130.844, - 103.996, - 121.564, - 118.899, + 49.537, + 75.638, + 126.802, + 190.059, + 184.306, + 181.07, + 179.848, + 173.043, + 163.968, + 168.605, + 156.399, + 165.57, + 126.351, + 135.737, + 131.925, 60.908, 33.107, 33.107, @@ -24288,21 +24288,21 @@ 31.876, 31.876, 28.45, - 48.08, - 54.907, - 82.827, - 121.489, - 155.278, - 145.845, - 142.061, - 125.976, - 117.964, - 129.174, - 111.395, - 130.96, - 86.196, - 68.443, - 83.479, + 48.62, + 58.125, + 91.586, + 141.818, + 184.203, + 180.452, + 179.152, + 172.62, + 164.275, + 169.335, + 156.831, + 165.62, + 108.581, + 82.59, + 96.505, 80.138, 31.876, 31.876, @@ -24312,21 +24312,21 @@ 31.876, 31.876, 28.45, - 10.482, - 6.405, - 48.273, - 35.145, - 73.569, - 64.962, - 97.317, - 83.041, - 74.17, - 82.179, - 63.104, - 47.803, - 33.182, - 0.0, + 11.035, + 9.582, + 56.78, + 54.374, + 101.332, + 97.956, + 132.386, + 126.663, + 117.813, + 121.623, + 108.658, + 82.193, + 55.379, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -24336,21 +24336,21 @@ 33.107, 33.107, 29.681, - 49.633, - 72.899, - 118.989, - 174.126, - 159.436, - 149.046, - 143.467, - 111.339, - 116.265, - 126.568, - 109.92, - 130.842, - 104.025, - 121.509, - 118.899, + 50.178, + 76.041, + 127.215, + 191.801, + 185.928, + 181.796, + 179.834, + 172.85, + 163.7, + 168.471, + 156.44, + 165.666, + 126.332, + 135.729, + 131.925, 60.908, 33.107, 33.107, @@ -24360,21 +24360,21 @@ 33.107, 33.107, 29.681, - 49.474, - 72.656, - 118.553, - 173.264, - 159.825, - 150.96, - 149.953, - 140.025, - 132.096, - 141.642, - 123.492, - 143.296, - 114.693, - 123.713, - 118.935, + 49.972, + 75.841, + 127.008, + 191.599, + 186.101, + 182.657, + 184.154, + 183.549, + 176.867, + 181.567, + 168.911, + 177.48, + 136.886, + 137.907, + 131.96, 60.908, 33.107, 33.107, @@ -24384,21 +24384,21 @@ 33.107, 33.107, 29.681, - 48.807, - 72.434, - 118.84, - 174.407, - 160.241, - 151.208, - 154.272, - 142.894, - 130.924, - 141.032, - 123.878, - 144.143, - 115.25, - 122.885, - 119.055, + 49.408, + 75.618, + 127.031, + 191.794, + 186.299, + 183.619, + 189.957, + 188.326, + 177.942, + 182.696, + 170.4, + 179.237, + 137.909, + 137.382, + 132.081, 60.908, 33.107, 33.107, @@ -24408,21 +24408,21 @@ 33.107, 33.107, 29.681, - 48.898, - 72.272, - 120.628, - 171.368, - 156.048, - 162.754, - 140.62, - 130.889, - 114.598, - 127.718, - 114.576, - 135.559, - 106.496, - 121.302, - 118.899, + 49.414, + 75.539, + 127.764, + 190.814, + 184.527, + 187.721, + 178.634, + 175.468, + 163.055, + 170.72, + 161.857, + 171.077, + 129.286, + 135.802, + 131.925, 60.908, 33.107, 33.107, @@ -24432,21 +24432,21 @@ 33.107, 33.107, 29.681, - 48.749, - 72.045, - 117.798, - 169.676, - 154.25, - 143.718, - 138.557, - 121.243, - 112.016, - 122.818, - 106.908, - 128.687, - 102.899, - 120.862, - 118.899, + 49.424, + 75.519, + 126.737, + 190.073, + 183.783, + 179.622, + 177.801, + 170.814, + 162.04, + 167.039, + 155.315, + 164.973, + 126.139, + 135.625, + 131.925, 60.908, 33.107, 33.107, @@ -24456,21 +24456,21 @@ 31.876, 31.876, 28.45, - 47.625, - 54.32, - 82.553, - 121.625, - 154.239, - 143.282, - 138.423, - 120.467, - 112.458, - 123.374, - 107.262, - 129.071, - 85.053, - 64.344, - 83.472, + 48.468, + 58.025, + 91.544, + 141.973, + 183.762, + 179.447, + 177.754, + 170.432, + 162.226, + 167.258, + 155.461, + 165.081, + 108.184, + 78.984, + 96.497, 79.921, 31.876, 31.876, @@ -24480,21 +24480,21 @@ 31.876, 31.876, 28.45, - 10.144, - 5.925, - 47.748, - 35.689, - 74.752, - 64.65, - 96.278, - 97.062, - 84.759, - 86.495, - 68.898, - 47.684, - 32.355, - 0.0, + 10.961, + 9.559, + 56.458, + 54.575, + 101.922, + 97.904, + 132.303, + 142.941, + 131.622, + 128.13, + 115.653, + 83.068, + 55.295, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -24504,21 +24504,21 @@ 31.876, 31.876, 25.024, - 10.336, - 6.107, - 47.459, - 36.415, - 93.28, - 86.754, - 108.744, - 84.846, - 91.77, - 101.484, - 83.423, - 64.733, - 42.348, - 0.0, + 10.99, + 9.568, + 56.055, + 54.897, + 120.0, + 119.278, + 149.317, + 139.944, + 137.242, + 141.914, + 129.085, + 99.239, + 64.959, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -24528,21 +24528,21 @@ 33.107, 33.107, 26.254, - 48.313, - 71.841, - 118.57, - 174.904, - 173.616, - 186.66, - 194.549, - 176.124, - 198.207, - 184.762, - 160.222, - 177.812, - 138.903, - 144.784, - 136.855, + 49.029, + 75.358, + 126.997, + 192.43, + 199.941, + 219.061, + 235.012, + 232.801, + 234.911, + 225.96, + 206.151, + 210.249, + 161.126, + 159.508, + 149.881, 60.908, 33.107, 33.107, @@ -24552,21 +24552,21 @@ 33.107, 33.107, 26.254, - 48.039, - 72.388, - 118.904, - 202.643, - 197.368, - 193.492, - 191.082, - 177.456, - 166.609, - 175.301, - 156.446, - 171.989, - 136.925, - 142.653, - 134.945, + 48.965, + 75.79, + 127.491, + 220.747, + 223.841, + 225.946, + 226.883, + 222.724, + 213.337, + 216.823, + 202.697, + 207.027, + 159.785, + 157.556, + 147.97, 60.908, 33.107, 33.107, @@ -24576,21 +24576,21 @@ 33.107, 33.107, 26.254, - 48.061, - 72.491, - 120.847, - 185.896, - 171.215, - 171.329, - 188.929, - 208.383, - 219.001, - 176.73, - 170.077, - 156.351, - 123.544, - 126.769, - 119.986, + 48.976, + 75.887, + 127.898, + 193.809, + 192.798, + 198.674, + 210.658, + 219.663, + 223.149, + 211.941, + 196.301, + 191.38, + 145.949, + 141.381, + 133.011, 60.908, 33.107, 33.107, @@ -24600,21 +24600,21 @@ 33.107, 33.107, 26.254, - 48.41, - 72.134, - 118.772, - 173.558, - 160.167, - 151.009, - 144.968, - 137.241, - 139.574, - 137.287, - 115.371, - 137.388, - 105.045, - 117.573, - 118.899, + 49.214, + 75.533, + 127.065, + 191.695, + 186.322, + 182.744, + 180.501, + 177.831, + 173.244, + 172.743, + 158.509, + 167.54, + 125.716, + 131.941, + 131.925, 60.908, 33.107, 33.107, @@ -24624,21 +24624,21 @@ 31.876, 31.876, 25.024, - 47.885, - 55.307, - 85.466, - 139.124, - 174.486, - 164.938, - 155.869, - 156.764, - 135.326, - 162.698, - 134.79, - 143.585, - 90.151, - 64.128, - 83.472, + 48.588, + 58.542, + 92.403, + 145.932, + 191.974, + 188.733, + 185.101, + 185.769, + 176.824, + 182.759, + 165.718, + 169.523, + 108.513, + 78.811, + 96.497, 79.921, 31.876, 31.876, @@ -24648,21 +24648,21 @@ 31.876, 31.876, 25.024, - 10.23, - 6.126, - 48.043, - 38.336, - 77.186, - 68.355, - 101.297, - 89.13, - 77.092, - 85.114, - 65.869, - 49.363, - 32.47, - 0.0, + 10.986, + 9.693, + 56.436, + 55.022, + 102.965, + 99.504, + 134.161, + 130.157, + 119.135, + 122.919, + 109.802, + 82.725, + 55.073, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -24672,21 +24672,21 @@ 33.107, 33.107, 26.254, - 48.693, - 72.281, - 118.746, - 175.308, - 161.276, - 151.32, - 141.761, - 113.594, - 118.103, - 127.886, - 110.671, - 130.314, - 102.652, - 116.411, - 118.899, + 49.39, + 75.678, + 127.084, + 191.837, + 186.834, + 182.882, + 180.986, + 170.911, + 164.555, + 169.085, + 156.795, + 165.511, + 125.874, + 131.948, + 131.925, 60.908, 33.107, 33.107, @@ -24696,21 +24696,21 @@ 33.107, 33.107, 26.254, - 48.906, - 74.489, - 123.266, - 190.621, - 189.396, - 163.125, - 171.743, - 144.238, - 148.058, - 149.296, - 109.118, - 129.909, - 102.053, - 117.082, - 118.899, + 49.561, + 76.64, + 128.592, + 194.935, + 194.672, + 187.991, + 191.769, + 180.592, + 182.651, + 182.559, + 156.187, + 165.214, + 125.295, + 131.856, + 131.925, 60.908, 33.107, 33.107, @@ -24720,21 +24720,21 @@ 33.107, 33.107, 26.254, - 48.842, - 72.133, - 118.122, - 171.654, - 156.252, - 145.7, - 140.185, - 124.33, - 113.45, - 124.771, - 108.383, - 129.51, - 102.054, - 116.141, - 118.899, + 49.628, + 75.722, + 126.95, + 191.021, + 184.726, + 180.542, + 178.561, + 172.358, + 162.837, + 168.42, + 156.495, + 165.803, + 125.791, + 131.839, + 131.925, 60.908, 33.107, 33.107, @@ -24744,21 +24744,21 @@ 33.107, 33.107, 26.254, - 48.645, - 71.597, - 117.091, - 168.123, - 151.782, - 140.919, - 136.376, - 122.888, - 117.772, - 130.19, - 114.237, - 135.395, - 109.35, - 116.727, - 118.941, + 49.327, + 75.392, + 126.583, + 189.548, + 182.836, + 178.537, + 177.492, + 174.43, + 169.165, + 175.704, + 163.934, + 173.235, + 133.998, + 132.959, + 131.967, 60.908, 33.107, 33.107, @@ -24768,21 +24768,21 @@ 33.107, 33.107, 26.254, - 48.817, - 71.608, - 116.994, - 167.01, - 151.052, - 140.612, - 136.737, - 123.864, - 111.307, - 122.18, - 106.001, - 127.359, - 101.396, - 115.707, - 118.899, + 49.427, + 75.429, + 126.669, + 189.075, + 182.525, + 178.414, + 177.141, + 171.924, + 161.826, + 166.84, + 155.01, + 164.52, + 125.729, + 131.937, + 131.925, 60.908, 33.107, 33.107, @@ -24792,21 +24792,21 @@ 31.876, 31.876, 25.024, - 47.534, - 54.049, - 82.181, - 122.407, - 156.613, - 147.711, - 143.707, - 129.044, - 120.608, - 132.269, - 114.032, - 132.445, - 84.489, - 62.707, - 83.472, + 48.126, + 57.719, + 91.293, + 142.398, + 184.883, + 181.387, + 180.006, + 174.196, + 166.459, + 172.33, + 159.585, + 167.862, + 108.123, + 78.71, + 96.497, 79.921, 31.876, 31.876, @@ -24816,21 +24816,21 @@ 31.876, 31.876, 25.024, - 10.311, - 5.928, - 47.395, - 35.77, - 74.798, - 66.099, - 97.976, - 83.829, - 71.457, - 80.109, - 61.914, - 45.752, - 31.109, - 0.0, + 10.961, + 9.512, + 56.243, + 54.685, + 102.012, + 98.582, + 132.799, + 127.282, + 116.907, + 120.988, + 108.332, + 81.497, + 54.867, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -24840,21 +24840,21 @@ 33.107, 33.107, 26.254, - 48.688, - 72.078, - 118.397, - 173.835, - 158.969, - 148.426, - 137.769, - 110.485, - 116.364, - 127.748, - 110.741, - 130.878, - 101.823, - 115.732, - 118.899, + 49.304, + 75.543, + 126.964, + 191.696, + 185.889, + 181.693, + 179.69, + 169.255, + 164.781, + 170.814, + 158.584, + 167.498, + 125.963, + 131.88, + 131.925, 60.908, 33.107, 33.107, @@ -24864,21 +24864,21 @@ 33.107, 33.107, 26.254, - 48.613, - 71.601, - 117.928, - 170.672, - 157.797, - 147.529, - 139.427, - 124.06, - 114.288, - 127.819, - 112.129, - 132.693, - 103.578, - 115.64, - 118.899, + 49.227, + 75.338, + 126.814, + 190.655, + 185.38, + 181.312, + 178.259, + 172.29, + 163.951, + 171.935, + 160.671, + 169.716, + 127.869, + 131.86, + 131.925, 60.908, 33.107, 33.107, @@ -24888,21 +24888,21 @@ 33.107, 33.107, 26.254, - 48.392, - 71.715, - 117.694, - 171.265, - 156.219, - 145.791, - 140.647, - 127.817, - 118.45, - 131.097, - 116.642, - 136.547, - 106.812, - 112.872, - 118.976, + 49.133, + 75.356, + 126.753, + 190.917, + 184.739, + 180.603, + 178.839, + 175.627, + 167.493, + 174.488, + 164.588, + 173.208, + 130.902, + 129.037, + 132.002, 60.908, 33.107, 33.107, @@ -24912,21 +24912,21 @@ 33.107, 33.107, 26.254, - 48.535, - 71.792, - 117.902, - 172.657, - 159.404, - 151.482, - 149.075, - 134.794, - 120.859, - 128.49, - 110.159, - 129.299, - 101.761, - 112.362, - 118.899, + 49.207, + 75.413, + 126.811, + 191.51, + 186.077, + 182.961, + 182.197, + 176.594, + 165.588, + 169.276, + 156.569, + 165.111, + 125.546, + 128.332, + 131.925, 60.908, 33.107, 33.107, @@ -24936,21 +24936,21 @@ 33.107, 33.107, 26.254, - 48.481, - 71.891, - 118.407, - 175.093, - 160.643, - 150.497, - 145.951, - 134.873, - 124.366, - 136.564, - 120.226, - 139.156, - 111.278, - 118.851, - 119.158, + 49.19, + 75.421, + 126.973, + 191.81, + 186.607, + 182.569, + 181.346, + 179.936, + 171.133, + 178.154, + 166.398, + 174.709, + 134.548, + 133.777, + 132.184, 60.908, 33.107, 33.107, @@ -24960,21 +24960,21 @@ 31.876, 31.876, 25.024, - 47.116, - 54.159, - 82.783, - 124.79, - 158.008, - 153.606, - 156.992, - 150.54, - 139.157, - 149.053, - 132.003, - 150.942, - 98.703, - 62.121, - 83.755, + 47.78, + 57.635, + 91.466, + 143.384, + 185.532, + 187.38, + 194.168, + 196.672, + 187.547, + 192.027, + 179.737, + 187.592, + 122.893, + 78.333, + 96.781, 79.921, 31.876, 31.876, @@ -24984,21 +24984,21 @@ 31.876, 31.876, 25.024, - 10.194, - 5.995, - 47.299, - 36.49, - 75.535, - 66.801, - 100.513, - 89.993, - 80.081, - 91.812, - 73.346, - 47.232, - 30.736, - 0.0, + 10.956, + 9.576, + 56.038, + 54.848, + 102.345, + 98.899, + 134.912, + 133.183, + 125.619, + 132.829, + 119.91, + 83.228, + 54.705, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -25008,21 +25008,21 @@ 33.107, 33.107, 26.254, - 48.432, - 71.866, - 118.165, - 173.361, - 159.773, - 151.827, - 140.524, - 120.603, - 124.309, - 132.526, - 114.15, - 132.943, - 102.041, - 112.576, - 118.899, + 49.167, + 75.405, + 126.896, + 191.641, + 186.249, + 183.131, + 183.818, + 171.378, + 169.408, + 173.283, + 160.439, + 168.715, + 126.0, + 128.685, + 131.925, 60.908, 33.107, 33.107, @@ -25032,21 +25032,21 @@ 33.107, 33.107, 26.254, - 48.363, - 71.842, - 118.501, - 175.173, - 162.165, - 156.273, - 152.061, - 144.579, - 135.026, - 145.194, - 126.5, - 144.874, - 115.783, - 117.705, - 119.487, + 49.257, + 75.496, + 127.01, + 191.812, + 187.645, + 187.539, + 186.7, + 189.208, + 181.191, + 185.92, + 172.755, + 180.595, + 139.713, + 133.842, + 132.513, 60.908, 33.107, 33.107, @@ -25056,21 +25056,21 @@ 33.107, 33.107, 26.254, - 48.474, - 71.984, - 118.55, - 174.995, - 161.329, - 152.615, - 154.537, - 145.799, - 132.931, - 141.957, - 123.434, - 142.093, - 113.532, - 116.024, - 119.204, + 49.209, + 75.494, + 127.004, + 191.773, + 186.91, + 183.762, + 188.434, + 189.121, + 178.657, + 182.782, + 169.667, + 177.65, + 137.395, + 132.139, + 132.23, 60.908, 33.107, 33.107, @@ -25080,21 +25080,21 @@ 33.107, 33.107, 26.254, - 48.534, - 72.0, - 118.376, - 174.233, - 159.826, - 153.237, - 156.837, - 143.812, - 133.025, - 144.432, - 126.353, - 144.891, - 114.323, - 114.68, - 119.307, + 49.222, + 75.453, + 126.949, + 191.703, + 186.262, + 185.676, + 192.633, + 188.716, + 180.081, + 186.301, + 173.381, + 181.061, + 138.425, + 130.994, + 132.333, 60.908, 33.107, 33.107, @@ -25104,21 +25104,21 @@ 33.107, 33.107, 26.254, - 48.346, - 72.076, - 118.558, - 175.003, - 161.034, - 154.93, - 158.955, - 153.539, - 142.91, - 154.251, - 135.321, - 153.495, - 121.566, - 122.393, - 120.09, + 48.96, + 75.402, + 126.991, + 191.779, + 186.776, + 186.638, + 193.997, + 197.722, + 189.59, + 195.868, + 182.167, + 189.672, + 145.76, + 138.776, + 133.115, 60.908, 33.107, 33.107, @@ -25128,21 +25128,21 @@ 31.876, 31.876, 25.024, - 47.15, - 54.394, - 83.238, - 127.289, - 162.651, - 177.753, - 179.488, - 163.508, - 149.475, - 160.473, - 145.456, - 162.867, - 102.509, - 62.936, - 83.894, + 47.737, + 57.696, + 91.593, + 143.605, + 187.985, + 207.899, + 213.515, + 207.168, + 195.751, + 201.889, + 191.198, + 198.088, + 126.483, + 78.795, + 96.92, 79.921, 31.876, 31.876, @@ -25152,21 +25152,21 @@ 31.876, 31.876, 25.024, - 10.345, - 6.692, - 49.15, - 43.673, - 78.328, - 68.693, - 99.974, - 90.29, - 83.888, - 92.122, - 74.872, - 56.454, - 31.678, - 0.0, + 11.027, + 9.886, + 56.638, + 55.478, + 103.514, + 99.688, + 133.648, + 133.403, + 124.143, + 129.116, + 117.106, + 87.108, + 54.88, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -25176,21 +25176,21 @@ 33.107, 33.107, 26.254, - 48.416, - 72.453, - 119.686, - 179.306, - 165.176, - 150.617, - 149.096, - 131.783, - 139.122, - 150.058, - 131.965, - 149.844, - 115.183, - 114.965, - 119.452, + 49.105, + 75.711, + 127.368, + 192.142, + 188.521, + 182.767, + 189.083, + 186.041, + 185.571, + 192.552, + 179.502, + 186.6, + 139.631, + 131.368, + 132.477, 60.908, 33.107, 33.107, @@ -25200,21 +25200,21 @@ 33.107, 33.107, 26.254, - 48.47, - 72.309, - 119.292, - 178.62, - 164.953, - 155.689, - 160.859, - 155.72, - 139.641, - 171.668, - 155.937, - 147.423, - 113.955, - 113.483, - 119.131, + 49.135, + 75.512, + 127.212, + 192.109, + 188.415, + 184.937, + 193.389, + 197.695, + 183.507, + 196.645, + 184.189, + 181.848, + 137.488, + 129.502, + 132.156, 60.908, 33.107, 33.107, @@ -25224,21 +25224,21 @@ 33.107, 33.107, 26.254, - 48.51, - 72.306, - 119.147, - 176.904, - 163.053, - 154.314, - 154.882, - 149.341, - 136.708, - 145.871, - 127.484, - 145.254, - 112.744, - 113.935, - 119.38, + 49.155, + 75.53, + 127.151, + 191.921, + 187.62, + 184.913, + 188.822, + 192.576, + 182.432, + 186.678, + 173.597, + 180.912, + 136.761, + 130.159, + 132.405, 60.908, 33.107, 33.107, @@ -25248,21 +25248,21 @@ 33.107, 33.107, 26.254, - 48.595, - 72.091, - 118.404, - 184.705, - 185.235, - 183.756, - 184.795, - 177.957, - 166.029, - 174.105, - 153.327, - 169.071, - 134.294, - 137.465, - 136.733, + 49.277, + 75.454, + 126.942, + 202.896, + 212.704, + 217.847, + 222.466, + 224.287, + 214.787, + 217.488, + 201.501, + 206.133, + 158.947, + 154.025, + 149.758, 60.908, 33.107, 33.107, @@ -25272,21 +25272,21 @@ 33.107, 33.107, 26.254, - 48.215, - 71.912, - 118.131, - 184.483, - 180.194, - 178.132, - 179.114, - 170.152, - 163.074, - 175.758, - 155.871, - 169.699, - 135.608, - 135.294, - 133.793, + 48.949, + 75.344, + 126.875, + 203.249, + 207.037, + 210.037, + 213.932, + 214.141, + 210.004, + 218.183, + 203.65, + 206.693, + 160.193, + 151.802, + 146.818, 60.908, 33.107, 33.107, @@ -25296,21 +25296,21 @@ 31.876, 31.876, 25.024, - 47.273, - 54.515, - 83.247, - 138.138, - 188.752, - 190.87, - 191.301, - 182.516, - 168.359, - 178.724, - 160.394, - 174.0, - 114.264, - 76.361, - 88.43, + 47.841, + 57.703, + 91.578, + 154.676, + 213.937, + 222.017, + 226.115, + 226.625, + 215.398, + 220.954, + 207.86, + 211.016, + 138.975, + 92.983, + 101.456, 80.07, 31.876, 31.876, @@ -25320,21 +25320,21 @@ 31.876, 31.876, 28.45, - 10.624, - 6.444, - 47.384, - 36.369, - 75.499, - 66.983, - 97.326, - 84.285, - 68.956, - 77.756, - 59.757, - 43.66, - 29.744, - 0.0, + 11.062, + 9.589, + 55.986, + 54.801, + 102.28, + 98.938, + 132.522, + 127.826, + 115.913, + 120.062, + 107.479, + 80.683, + 54.53, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -25344,21 +25344,21 @@ 33.107, 33.107, 29.681, - 48.776, - 72.233, - 118.179, - 172.591, - 157.939, - 148.215, - 134.697, - 112.274, - 119.195, - 133.689, - 118.477, - 137.927, - 111.257, - 122.018, - 122.487, + 49.213, + 75.383, + 126.813, + 191.42, + 185.408, + 181.565, + 179.616, + 167.634, + 167.477, + 176.973, + 166.938, + 175.429, + 136.227, + 138.732, + 135.513, 60.908, 33.107, 33.107, @@ -25368,21 +25368,21 @@ 33.107, 33.107, 29.681, - 48.725, - 72.227, - 118.297, - 173.618, - 167.28, - 171.75, - 171.112, - 162.758, - 150.882, - 162.978, - 143.929, - 160.899, - 127.942, - 129.811, - 128.314, + 49.155, + 75.375, + 126.854, + 191.636, + 193.114, + 202.53, + 204.751, + 204.799, + 196.295, + 203.913, + 190.716, + 197.294, + 152.424, + 146.338, + 141.339, 60.908, 33.107, 33.107, @@ -25392,21 +25392,21 @@ 31.876, 31.876, 28.45, - 10.655, - 6.596, - 47.94, - 39.566, - 81.071, - 71.914, - 116.243, - 89.622, - 75.683, - 84.05, - 65.325, - 46.498, - 30.647, - 0.0, + 11.081, + 9.66, + 56.142, + 55.108, + 104.632, + 100.991, + 140.432, + 131.157, + 118.606, + 122.513, + 109.562, + 81.563, + 54.348, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -25416,21 +25416,21 @@ 33.107, 33.107, 29.681, - 48.389, - 72.585, - 119.669, - 178.84, - 165.319, - 155.83, - 147.817, - 126.942, - 141.9, - 144.477, - 125.872, - 143.967, - 114.541, - 121.104, - 119.984, + 49.018, + 75.612, + 127.278, + 192.092, + 188.515, + 184.735, + 185.327, + 180.271, + 180.971, + 184.177, + 171.231, + 178.914, + 138.084, + 136.889, + 133.01, 60.908, 33.107, 33.107, @@ -25440,21 +25440,21 @@ 33.107, 33.107, 29.681, - 48.127, - 72.285, - 119.851, - 179.316, - 165.588, - 155.801, - 150.226, - 149.172, - 135.825, - 138.045, - 120.076, - 138.246, - 109.135, - 119.692, - 120.326, + 48.994, + 75.701, + 127.34, + 192.135, + 188.618, + 184.713, + 182.661, + 185.629, + 174.655, + 177.635, + 165.257, + 173.137, + 132.619, + 135.312, + 133.352, 60.908, 33.107, 33.107, @@ -25464,21 +25464,21 @@ 31.876, 31.876, 28.45, - 47.195, - 54.907, - 83.9, - 128.111, - 161.686, - 151.185, - 152.779, - 159.387, - 154.468, - 165.573, - 146.841, - 164.361, - 106.177, - 69.065, - 84.516, + 47.799, + 57.877, + 91.727, + 143.647, + 186.976, + 182.796, + 187.884, + 203.187, + 201.532, + 207.673, + 194.097, + 200.901, + 130.502, + 85.327, + 97.541, 79.977, 31.876, 31.876, @@ -25488,21 +25488,21 @@ 31.876, 31.876, 28.45, - 10.642, - 6.909, - 48.217, - 38.032, - 76.082, - 65.624, - 98.52, - 91.078, - 84.892, - 104.896, - 88.764, - 70.292, - 45.265, - 0.0, + 11.1, + 9.766, + 56.197, + 54.952, + 102.485, + 98.333, + 134.8, + 135.539, + 132.756, + 147.597, + 136.65, + 107.521, + 70.011, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -25512,21 +25512,21 @@ 33.107, 33.107, 29.681, - 48.51, - 72.662, - 121.611, - 208.231, - 199.366, - 194.731, - 188.861, - 168.095, - 176.263, - 187.761, - 166.82, - 179.687, - 141.483, - 141.581, - 139.334, + 49.046, + 75.564, + 129.441, + 223.669, + 224.292, + 225.575, + 229.618, + 223.137, + 222.588, + 229.109, + 213.029, + 215.316, + 165.313, + 157.232, + 152.36, 60.908, 33.107, 33.107, @@ -25536,21 +25536,21 @@ 33.107, 33.107, 29.681, - 48.423, - 73.964, - 126.018, - 218.144, - 214.398, - 222.016, - 231.213, - 229.405, - 215.351, - 233.617, - 192.088, - 199.539, - 159.832, - 154.998, - 147.931, + 49.089, + 76.38, + 132.793, + 224.084, + 234.384, + 244.128, + 249.666, + 251.456, + 247.45, + 252.457, + 230.464, + 230.87, + 179.569, + 169.409, + 160.956, 60.908, 33.107, 33.107, @@ -25560,21 +25560,21 @@ 33.107, 33.107, 29.681, - 48.333, - 72.466, - 123.292, - 210.457, - 206.269, - 203.487, - 200.071, - 189.361, - 174.552, - 183.585, - 161.881, - 175.371, - 141.078, - 142.582, - 139.407, + 49.023, + 75.59, + 131.204, + 227.306, + 232.957, + 237.177, + 237.386, + 235.141, + 223.303, + 227.339, + 210.592, + 213.001, + 166.014, + 158.999, + 152.432, 60.908, 33.107, 33.107, @@ -25584,21 +25584,21 @@ 33.107, 33.107, 29.681, - 48.647, - 72.744, - 119.015, - 189.575, - 196.221, - 199.95, - 200.393, - 192.44, - 178.035, - 184.504, - 161.484, - 174.002, - 139.011, - 139.227, - 135.963, + 49.078, + 75.528, + 127.022, + 206.808, + 222.485, + 232.283, + 236.204, + 236.37, + 225.64, + 227.29, + 209.492, + 211.075, + 163.601, + 155.505, + 148.989, 60.908, 33.107, 33.107, @@ -25608,21 +25608,21 @@ 33.107, 33.107, 29.681, - 48.706, - 72.868, - 119.154, - 175.374, - 166.694, - 171.522, - 176.877, - 168.937, - 153.829, - 163.632, - 144.585, - 161.643, - 128.75, - 130.627, - 125.623, + 49.093, + 75.525, + 127.046, + 192.032, + 192.251, + 202.828, + 211.707, + 211.736, + 200.333, + 205.314, + 191.594, + 197.973, + 152.903, + 146.67, + 138.648, 60.908, 33.107, 33.107, @@ -25632,21 +25632,21 @@ 31.876, 31.876, 28.45, - 47.81, - 56.568, - 85.953, - 134.883, - 179.277, - 196.363, - 206.386, - 213.064, - 192.711, - 167.641, - 147.796, - 163.237, - 108.302, - 73.141, - 86.049, + 47.994, + 58.746, + 92.489, + 144.773, + 193.137, + 205.707, + 218.558, + 225.535, + 226.197, + 209.79, + 192.022, + 198.51, + 131.886, + 88.729, + 99.075, 79.99, 31.876, 31.876, @@ -25656,21 +25656,21 @@ 31.876, 31.876, 28.45, - 10.998, - 7.935, - 49.291, - 42.217, - 81.297, - 70.965, - 106.158, - 110.878, - 97.028, - 108.605, - 90.923, - 65.764, - 38.847, - 0.0, + 11.249, + 10.505, + 56.496, + 55.326, + 104.612, + 100.51, + 139.128, + 152.038, + 141.637, + 148.688, + 136.426, + 100.725, + 62.331, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -25680,21 +25680,21 @@ 33.107, 33.107, 29.681, - 48.668, - 73.182, - 119.919, - 177.426, - 162.773, - 159.199, - 160.614, - 140.504, - 149.271, - 162.062, - 142.404, - 159.418, - 127.646, - 130.735, - 128.087, + 49.099, + 75.671, + 127.248, + 191.98, + 187.343, + 190.009, + 198.987, + 196.431, + 195.513, + 203.468, + 189.24, + 195.677, + 151.705, + 146.607, + 141.113, 60.908, 33.107, 33.107, @@ -25704,21 +25704,21 @@ 33.107, 33.107, 29.681, - 48.743, - 73.108, - 119.473, - 175.509, - 168.688, - 170.917, - 171.203, - 165.092, - 151.708, - 164.067, - 147.185, - 165.41, - 131.703, - 134.335, - 133.9, + 49.113, + 75.608, + 127.114, + 191.814, + 194.289, + 202.592, + 206.419, + 208.254, + 198.487, + 205.948, + 194.396, + 201.875, + 155.852, + 150.177, + 146.925, 60.908, 33.107, 33.107, @@ -25728,21 +25728,21 @@ 33.107, 33.107, 29.681, - 48.766, - 73.123, - 119.413, - 174.934, - 159.873, - 149.44, - 149.313, - 145.617, - 130.19, - 140.918, - 124.899, - 144.218, - 117.584, - 130.083, - 124.555, + 49.12, + 75.595, + 127.084, + 191.765, + 186.079, + 181.933, + 185.488, + 189.581, + 177.901, + 183.488, + 172.493, + 180.955, + 141.845, + 146.016, + 137.581, 60.908, 33.107, 33.107, @@ -25752,21 +25752,21 @@ 33.107, 33.107, 29.681, - 48.795, - 73.214, - 119.607, - 175.531, - 160.478, - 153.575, - 157.553, - 157.387, - 148.169, - 160.923, - 143.286, - 161.591, - 132.331, - 140.082, - 135.553, + 49.129, + 75.616, + 127.137, + 191.828, + 186.321, + 186.03, + 193.796, + 201.568, + 196.236, + 204.03, + 191.524, + 198.937, + 156.935, + 156.132, + 148.579, 60.908, 33.107, 33.107, @@ -25776,21 +25776,21 @@ 33.107, 33.107, 33.107, - 48.804, - 73.238, - 119.546, - 178.268, - 189.417, - 196.768, - 197.403, - 190.582, - 174.947, - 186.483, - 164.335, - 177.621, - 141.0, - 144.048, - 138.813, + 49.134, + 75.589, + 127.103, + 194.696, + 215.353, + 229.228, + 233.524, + 234.584, + 222.903, + 229.231, + 212.117, + 214.651, + 165.39, + 159.976, + 151.839, 60.908, 33.107, 33.107, @@ -25800,21 +25800,21 @@ 31.876, 31.876, 31.876, - 47.545, - 55.553, - 84.428, - 127.88, - 171.725, - 182.45, - 187.058, - 178.705, - 159.622, - 172.314, - 155.207, - 170.048, - 111.683, - 80.689, - 90.342, + 47.9, + 57.927, + 91.763, + 143.673, + 197.115, + 214.157, + 222.288, + 221.69, + 206.533, + 214.12, + 202.128, + 206.161, + 135.487, + 96.211, + 103.368, 80.188, 31.876, 31.876, @@ -25824,21 +25824,21 @@ 31.876, 31.876, 31.876, - 10.775, - 7.681, - 49.473, - 41.78, - 81.008, - 75.87, - 120.043, - 115.655, - 97.548, - 107.946, - 120.905, - 70.269, - 44.378, - 0.0, + 11.172, + 9.986, + 56.495, + 55.307, + 104.662, + 105.648, + 153.37, + 157.154, + 142.414, + 147.946, + 155.182, + 112.113, + 67.21, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -25849,20 +25849,20 @@ 33.107, 33.107, 49.275, - 76.992, - 127.92, - 195.497, - 212.135, - 201.713, - 210.24, - 209.174, - 253.902, - 254.961, - 206.727, - 211.769, - 142.591, - 146.383, - 139.737, + 77.058, + 129.722, + 197.498, + 213.984, + 225.472, + 234.762, + 240.629, + 255.632, + 260.431, + 229.548, + 226.044, + 164.168, + 160.994, + 152.763, 60.908, 33.107, 33.107, @@ -25872,21 +25872,21 @@ 33.107, 33.107, 33.107, - 48.754, - 73.55, - 120.61, - 198.975, - 205.769, - 206.987, - 205.213, - 197.825, - 180.984, - 196.203, - 169.921, - 177.526, - 138.45, - 144.72, - 139.616, + 49.139, + 75.801, + 127.406, + 211.819, + 229.015, + 236.644, + 238.524, + 239.669, + 226.229, + 236.739, + 215.916, + 213.021, + 161.849, + 159.936, + 152.642, 60.908, 33.107, 33.107, @@ -25896,21 +25896,21 @@ 33.107, 33.107, 33.107, - 48.844, - 73.632, - 120.305, - 177.276, - 167.679, - 171.538, - 174.34, - 172.175, - 158.426, - 169.357, - 151.944, - 171.424, - 139.545, - 144.907, - 140.283, + 49.156, + 75.73, + 127.289, + 191.994, + 192.28, + 202.514, + 208.984, + 214.704, + 205.077, + 210.971, + 198.763, + 207.111, + 162.999, + 160.066, + 153.309, 60.908, 33.107, 33.107, @@ -25920,21 +25920,21 @@ 33.107, 33.107, 33.107, - 48.85, - 73.676, - 120.323, - 179.021, - 181.438, - 191.301, - 191.38, - 186.043, - 169.687, - 177.69, - 159.363, - 175.186, - 139.214, - 145.29, - 139.262, + 49.16, + 75.755, + 127.287, + 193.812, + 206.028, + 221.925, + 225.597, + 228.354, + 215.95, + 219.131, + 206.206, + 211.081, + 162.775, + 160.428, + 152.288, 60.908, 33.107, 33.107, @@ -25944,21 +25944,21 @@ 33.107, 33.107, 33.107, - 48.831, - 73.726, - 120.579, - 178.29, - 167.648, - 175.849, - 181.225, - 176.164, - 158.719, - 168.511, - 150.043, - 167.219, - 132.38, - 138.628, - 134.887, + 49.159, + 75.798, + 127.371, + 192.085, + 191.542, + 206.107, + 215.063, + 218.03, + 204.545, + 209.386, + 196.163, + 202.557, + 155.56, + 153.52, + 147.912, 60.908, 33.107, 33.107, @@ -25968,21 +25968,21 @@ 31.876, 31.876, 31.876, - 47.597, - 55.971, - 85.08, - 129.6, - 166.631, - 163.596, - 162.37, - 156.726, - 141.766, - 153.777, - 137.674, - 157.068, - 107.417, - 81.58, - 98.237, + 47.93, + 58.073, + 91.925, + 143.835, + 190.858, + 193.979, + 196.225, + 198.69, + 187.574, + 194.724, + 183.912, + 192.427, + 130.572, + 96.418, + 111.263, 85.304, 31.876, 31.876, @@ -25992,21 +25992,21 @@ 31.876, 31.876, 31.876, - 10.925, - 8.019, - 49.688, - 43.762, - 107.248, - 109.197, - 142.614, - 133.502, - 116.537, - 125.993, - 108.741, - 83.845, - 56.83, - 0.0, + 11.217, + 10.044, + 56.482, + 58.275, + 131.55, + 139.464, + 176.427, + 175.175, + 161.722, + 166.444, + 154.696, + 119.269, + 79.997, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -26016,21 +26016,21 @@ 33.107, 33.107, 33.107, - 48.887, - 73.785, - 120.605, - 178.296, - 180.516, - 189.086, - 193.483, - 168.242, - 172.763, - 184.354, - 163.449, - 176.606, - 139.292, - 145.007, - 138.965, + 49.176, + 75.799, + 127.365, + 192.524, + 204.568, + 219.307, + 227.275, + 226.502, + 218.65, + 225.251, + 209.599, + 211.952, + 162.341, + 159.608, + 151.991, 60.908, 33.107, 33.107, @@ -26040,21 +26040,21 @@ 33.107, 33.107, 33.107, - 48.916, - 73.82, - 120.801, - 180.39, - 175.754, - 181.075, - 187.278, - 185.821, - 172.638, - 184.921, - 165.493, - 178.918, - 141.169, - 145.192, - 138.066, + 49.185, + 75.815, + 127.422, + 194.091, + 199.318, + 210.786, + 220.446, + 226.95, + 217.3, + 224.5, + 210.262, + 213.48, + 163.829, + 159.47, + 151.091, 60.908, 33.107, 33.107, @@ -26065,20 +26065,20 @@ 33.107, 33.107, 49.275, - 75.144, - 129.911, - 205.448, - 199.741, - 208.016, - 206.321, - 205.469, - 189.6, - 180.897, - 160.552, - 172.677, - 135.009, - 141.897, - 134.862, + 76.656, + 130.165, + 215.537, + 223.761, + 233.454, + 234.298, + 234.589, + 229.974, + 221.339, + 206.089, + 207.685, + 157.832, + 156.189, + 147.887, 60.908, 33.107, 33.107, @@ -26088,21 +26088,21 @@ 33.107, 33.107, 33.107, - 48.92, - 73.867, - 120.905, - 188.843, - 197.724, - 197.28, - 194.391, - 188.545, - 169.1, - 175.153, - 154.828, - 170.651, - 136.587, - 142.481, - 135.285, + 49.189, + 75.86, + 127.432, + 202.461, + 221.329, + 227.213, + 228.196, + 230.643, + 214.771, + 216.142, + 200.96, + 206.195, + 159.608, + 156.864, + 148.31, 60.908, 33.107, 33.107, @@ -26112,21 +26112,21 @@ 33.107, 33.107, 33.107, - 52.419, - 74.008, - 120.727, - 181.753, - 181.26, - 181.188, - 182.726, - 177.82, - 162.9, - 173.769, - 152.376, - 163.701, - 126.175, - 134.946, - 121.79, + 52.632, + 75.808, + 127.345, + 196.345, + 205.331, + 211.376, + 216.185, + 219.234, + 208.416, + 214.47, + 198.34, + 198.853, + 148.904, + 149.152, + 134.816, 60.908, 33.107, 33.107, @@ -26136,21 +26136,21 @@ 31.876, 31.876, 31.876, - 51.182, - 56.197, - 85.481, - 129.829, - 172.619, - 175.579, - 178.597, - 173.871, - 174.111, - 166.675, - 149.278, - 166.062, - 107.173, - 77.172, - 84.432, + 51.401, + 58.138, + 91.98, + 143.934, + 196.609, + 205.641, + 212.274, + 215.413, + 209.485, + 206.834, + 194.494, + 200.647, + 129.596, + 91.11, + 97.457, 79.921, 31.876, 31.876, @@ -26160,21 +26160,21 @@ 31.876, 31.876, 31.876, - 14.451, - 7.851, - 50.002, - 40.948, - 78.628, - 67.601, - 96.83, - 85.77, - 68.498, - 77.833, - 60.811, - 44.796, - 31.684, - 0.0, + 14.678, + 10.144, + 56.593, + 55.307, + 103.202, + 98.823, + 131.956, + 129.377, + 115.381, + 119.735, + 107.522, + 80.71, + 54.654, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -26184,21 +26184,21 @@ 33.107, 33.107, 33.107, - 52.663, - 74.009, - 120.289, - 173.446, - 157.275, - 145.648, - 140.984, - 120.333, - 123.34, - 134.256, - 118.035, - 138.392, - 112.178, - 123.109, - 119.111, + 52.874, + 75.859, + 127.177, + 191.323, + 184.677, + 180.047, + 179.181, + 181.797, + 172.862, + 178.233, + 166.42, + 175.153, + 135.491, + 137.32, + 132.137, 60.908, 33.107, 33.107, @@ -26208,21 +26208,21 @@ 33.107, 33.107, 33.107, - 52.512, - 74.127, - 120.484, - 191.372, - 193.055, - 194.564, - 197.499, - 196.773, - 184.508, - 189.2, - 167.23, - 183.11, - 149.254, - 159.079, - 149.168, + 52.655, + 75.778, + 127.206, + 208.699, + 219.617, + 227.591, + 234.381, + 241.174, + 232.853, + 232.183, + 214.904, + 219.456, + 172.322, + 173.16, + 162.193, 60.908, 33.107, 33.107, @@ -26232,21 +26232,21 @@ 33.107, 33.107, 33.107, - 52.514, - 74.147, - 133.017, - 222.487, - 227.272, - 226.915, - 225.687, - 219.976, - 202.341, - 212.63, - 192.396, - 207.672, - 161.679, - 160.446, - 146.698, + 52.656, + 75.78, + 139.751, + 239.739, + 253.495, + 259.231, + 261.912, + 264.087, + 250.53, + 255.63, + 240.203, + 244.246, + 184.85, + 174.58, + 159.724, 60.908, 33.107, 33.107, @@ -26256,21 +26256,21 @@ 33.107, 33.107, 33.107, - 52.535, - 74.242, - 138.894, - 226.242, - 217.213, - 214.559, - 217.662, - 210.777, - 192.697, - 199.913, - 177.713, - 188.334, - 147.531, - 151.7, - 138.043, + 52.662, + 75.805, + 145.515, + 243.31, + 243.449, + 247.315, + 254.322, + 255.172, + 241.095, + 243.104, + 225.534, + 224.834, + 170.629, + 165.764, + 151.068, 60.908, 33.107, 33.107, @@ -26280,21 +26280,21 @@ 33.107, 33.107, 33.107, - 52.557, - 74.308, - 120.759, - 175.331, - 164.218, - 165.208, - 165.158, - 158.029, - 144.283, - 156.566, - 138.332, - 156.633, - 123.674, - 132.852, - 121.645, + 52.667, + 75.815, + 127.272, + 191.925, + 190.099, + 197.621, + 201.455, + 202.097, + 192.382, + 199.482, + 186.006, + 192.922, + 146.542, + 146.711, + 134.67, 60.908, 33.107, 33.107, @@ -26304,21 +26304,21 @@ 31.876, 31.876, 31.876, - 51.302, - 56.623, - 85.475, - 131.126, - 190.219, - 195.489, - 197.841, - 188.183, - 172.759, - 185.072, - 168.99, - 182.156, - 120.851, - 91.691, - 98.754, + 51.432, + 58.123, + 91.866, + 148.044, + 216.694, + 228.626, + 234.778, + 232.375, + 221.184, + 228.033, + 216.53, + 218.265, + 143.541, + 105.493, + 111.78, 83.16, 31.876, 31.876, @@ -26328,21 +26328,21 @@ 31.876, 31.876, 31.876, - 14.598, - 8.695, - 51.787, - 58.045, - 113.673, - 108.753, - 144.435, - 140.086, - 124.461, - 135.383, - 119.027, - 89.197, - 60.574, - 0.0, + 14.711, + 10.148, + 57.919, + 73.045, + 138.341, + 139.695, + 178.821, + 181.98, + 170.377, + 175.917, + 164.536, + 123.966, + 82.573, 0.0, + 13.026, 31.876, 31.876, 31.876, @@ -26352,21 +26352,21 @@ 33.107, 33.107, 33.107, - 52.556, - 74.523, - 126.299, - 212.166, - 211.678, - 210.549, - 211.356, - 190.894, - 189.541, - 198.735, - 180.933, - 193.165, - 152.492, - 160.13, - 145.016, + 52.669, + 75.927, + 132.305, + 226.755, + 235.733, + 240.848, + 245.302, + 247.655, + 235.362, + 239.472, + 226.7, + 227.829, + 174.332, + 173.646, + 158.042, 60.908, 33.107, 33.107, @@ -26376,21 +26376,21 @@ 33.107, 33.107, 33.107, - 52.576, - 74.592, - 124.014, - 211.689, - 212.378, - 226.662, - 214.999, - 209.667, - 206.152, - 217.294, - 179.466, - 184.627, - 140.415, - 148.24, - 133.575, + 52.674, + 75.955, + 129.917, + 225.527, + 234.756, + 248.662, + 248.736, + 251.029, + 244.316, + 247.16, + 220.632, + 216.925, + 160.735, + 161.484, + 146.6, 60.908, 33.107, 33.107, @@ -26400,21 +26400,21 @@ 33.107, 33.107, 33.107, - 52.595, - 74.396, - 123.135, - 209.094, - 206.731, - 205.918, - 210.635, - 206.935, - 187.347, - 197.326, - 180.329, - 194.955, - 155.428, - 164.728, - 148.614, + 52.678, + 76.016, + 128.969, + 222.905, + 230.37, + 235.569, + 243.829, + 247.899, + 232.161, + 237.184, + 224.924, + 227.857, + 176.134, + 177.8, + 161.64, 60.908, 33.107, 33.107, @@ -26424,21 +26424,21 @@ 33.107, 33.107, 33.107, - 52.61, - 74.486, - 125.513, - 210.354, - 215.043, - 219.43, - 220.379, - 213.284, - 194.388, - 203.244, - 184.793, - 198.396, - 160.761, - 170.658, - 153.458, + 52.682, + 76.007, + 131.296, + 223.731, + 238.2, + 248.26, + 252.683, + 253.443, + 238.219, + 242.032, + 228.333, + 230.692, + 181.15, + 183.683, + 166.483, 60.908, 33.107, 33.107, @@ -26448,21 +26448,21 @@ 33.107, 33.107, 33.107, - 55.986, - 74.572, - 125.059, - 210.713, - 211.332, - 212.529, - 212.473, - 205.792, - 188.424, - 200.994, - 177.073, - 191.123, - 152.859, - 160.837, - 144.721, + 56.097, + 76.027, + 130.738, + 224.07, + 234.629, + 242.328, + 245.854, + 247.109, + 233.62, + 241.108, + 221.889, + 224.606, + 173.788, + 173.862, + 157.747, 60.908, 33.107, 33.107, @@ -26472,21 +26472,21 @@ 31.876, 31.876, 31.876, - 54.755, - 57.01, - 86.307, - 129.173, - 162.671, - 159.615, - 162.519, - 157.552, - 142.258, - 154.723, - 138.075, - 156.324, - 102.121, - 76.206, - 84.144, + 54.867, + 58.28, + 92.076, + 143.906, + 187.129, + 190.65, + 197.282, + 199.961, + 188.607, + 195.73, + 183.951, + 190.787, + 123.4, + 89.231, + 97.17, 79.921, 31.876, 31.876, @@ -26496,21 +26496,21 @@ 31.876, 31.876, 31.876, - 18.006, - 8.808, - 50.66, - 38.796, - 82.866, - 65.156, - 105.907, - 99.665, - 90.185, - 102.138, - 84.986, - 60.032, - 35.275, - 0.0, - 0.0, + 18.135, + 10.398, + 56.548, + 55.18, + 104.874, + 97.5, + 137.689, + 142.89, + 137.569, + 143.957, + 131.337, + 94.794, + 56.611, + 2.747, + 13.026, 31.876, 31.876, 31.876, @@ -26520,21 +26520,21 @@ 33.107, 33.107, 33.107, - 56.004, - 74.777, - 121.369, - 175.034, - 159.797, - 152.547, - 164.312, - 152.226, - 149.76, - 159.173, - 141.756, - 158.201, - 121.251, - 132.337, - 120.159, + 56.101, + 75.925, + 127.335, + 191.686, + 185.491, + 184.448, + 199.931, + 207.185, + 196.718, + 200.734, + 187.839, + 192.627, + 142.305, + 145.362, + 133.185, 60.908, 33.107, 33.107, @@ -26544,21 +26544,21 @@ 33.107, 33.107, 33.107, - 56.029, - 74.862, - 121.671, - 176.061, - 163.127, - 161.025, - 161.485, - 158.715, - 152.532, - 170.019, - 151.027, - 166.95, - 130.71, - 142.127, - 126.299, + 56.106, + 75.965, + 127.423, + 192.034, + 188.222, + 192.222, + 196.013, + 200.615, + 198.368, + 210.431, + 196.196, + 200.512, + 151.198, + 155.153, + 139.324, 60.908, 33.107, 33.107, @@ -26568,21 +26568,21 @@ 33.107, 33.107, 33.107, - 56.049, - 74.938, - 121.781, - 176.068, - 162.289, - 163.378, - 168.426, - 166.058, - 156.313, - 173.334, - 154.776, - 170.691, - 136.305, - 152.252, - 133.207, + 56.111, + 75.994, + 127.442, + 192.036, + 187.469, + 194.948, + 203.463, + 208.085, + 202.531, + 213.922, + 199.812, + 204.272, + 156.779, + 165.278, + 146.233, 60.908, 33.107, 33.107, @@ -26592,21 +26592,21 @@ 33.107, 33.107, 33.107, - 56.046, - 74.834, - 121.554, - 175.949, - 173.882, - 176.486, - 182.302, - 178.869, - 163.176, - 172.46, - 154.244, - 171.798, - 137.6, - 152.649, - 136.406, + 56.11, + 75.98, + 127.362, + 192.901, + 200.406, + 209.514, + 219.103, + 223.31, + 210.935, + 214.54, + 200.698, + 206.354, + 158.415, + 165.675, + 149.432, 60.908, 33.107, 33.107, @@ -26616,21 +26616,21 @@ 33.107, 33.107, 33.107, - 56.068, - 74.955, - 121.885, - 196.838, - 195.65, - 199.164, - 201.467, - 195.55, - 183.472, - 190.566, - 164.652, - 176.65, - 142.167, - 156.683, - 139.302, + 56.115, + 75.993, + 127.455, + 212.667, + 220.714, + 230.672, + 236.557, + 238.146, + 229.993, + 231.491, + 210.064, + 210.396, + 162.534, + 169.708, + 152.327, 60.908, 33.107, 33.107, @@ -26640,21 +26640,21 @@ 31.876, 31.876, 31.876, - 54.862, - 57.287, - 86.947, - 139.092, - 196.778, - 202.838, - 201.93, - 194.594, - 187.539, - 195.594, - 177.111, - 183.187, - 121.023, - 95.958, - 96.519, + 54.89, + 58.375, + 92.213, + 152.963, + 220.732, + 233.282, + 236.037, + 236.243, + 226.655, + 229.811, + 216.539, + 215.247, + 140.588, + 108.984, + 109.544, 82.915, 31.876, 31.876, @@ -26665,20 +26665,20 @@ 31.876, 31.876, 18.171, - 9.032, - 51.571, - 46.127, - 98.369, - 92.422, - 139.414, - 137.573, - 115.216, - 162.615, - 137.027, - 79.365, - 52.775, - 0.0, - 0.0, + 10.387, + 56.873, + 55.83, + 118.162, + 121.921, + 166.381, + 170.902, + 153.464, + 172.983, + 156.4, + 108.811, + 71.869, + 6.173, + 13.026, 31.876, 31.876, 31.876, @@ -26689,20 +26689,20 @@ 33.107, 33.107, 56.128, - 75.079, - 122.598, - 202.546, - 204.092, - 203.922, - 205.138, - 193.842, - 181.825, - 189.81, - 168.311, - 181.918, - 145.321, - 156.445, - 137.537, + 76.137, + 127.702, + 215.883, + 227.402, + 233.826, + 238.693, + 242.552, + 226.807, + 229.484, + 212.34, + 214.453, + 164.818, + 169.471, + 150.562, 60.908, 33.107, 33.107, @@ -26713,20 +26713,20 @@ 33.107, 33.107, 56.128, - 75.25, - 122.487, - 181.992, - 183.136, - 185.838, - 186.785, - 181.033, - 164.555, - 174.053, - 154.984, - 173.16, - 140.175, - 152.601, - 133.617, + 76.105, + 127.598, + 195.444, + 205.964, + 214.962, + 219.562, + 221.734, + 208.909, + 213.063, + 198.807, + 205.449, + 159.512, + 165.627, + 146.643, 60.908, 33.107, 33.107, @@ -26737,20 +26737,20 @@ 33.107, 33.107, 56.128, - 75.281, - 122.613, - 179.857, - 171.107, - 174.267, - 176.017, - 170.393, - 158.368, - 191.708, - 175.533, - 175.672, - 138.375, - 149.515, - 132.021, + 76.111, + 127.632, + 192.407, + 193.121, + 201.972, + 206.677, + 209.063, + 200.677, + 217.86, + 205.52, + 205.249, + 157.178, + 162.54, + 145.047, 60.908, 33.107, 33.107, @@ -26761,20 +26761,20 @@ 33.107, 33.107, 56.128, - 75.529, - 122.738, - 179.52, - 174.207, - 183.393, - 191.286, - 190.583, - 210.761, - 241.816, - 161.572, - 200.283, - 151.397, - 158.875, - 137.379, + 76.736, + 127.685, + 192.582, + 197.143, + 212.99, + 224.555, + 229.853, + 231.783, + 243.917, + 204.589, + 217.158, + 164.423, + 171.9, + 150.405, 60.908, 33.107, 33.107, @@ -26785,20 +26785,20 @@ 33.107, 33.107, 56.128, - 75.151, - 122.958, - 189.199, - 191.004, - 191.207, - 192.535, - 188.639, - 170.533, - 187.069, - 166.638, - 174.958, - 140.212, - 150.945, - 124.138, + 76.198, + 127.813, + 200.326, + 212.355, + 219.126, + 223.639, + 227.714, + 213.166, + 219.794, + 204.772, + 207.234, + 159.149, + 163.971, + 137.163, 60.908, 33.107, 33.107, @@ -26809,20 +26809,20 @@ 31.876, 31.876, 58.323, - 57.577, - 87.031, - 129.105, - 162.049, - 160.795, - 170.593, - 168.77, - 164.053, - 177.523, - 160.511, - 176.053, - 113.293, - 88.357, - 85.857, + 58.378, + 92.112, + 144.009, + 186.243, + 191.298, + 204.777, + 210.993, + 209.633, + 217.49, + 210.051, + 208.218, + 132.086, + 101.383, + 98.882, 80.535, 31.876, 31.876, @@ -26833,20 +26833,20 @@ 31.876, 31.876, 21.597, - 9.561, - 51.617, - 40.88, - 80.702, - 71.386, - 120.569, - 173.625, - 182.38, - 182.326, - 99.495, - 77.149, - 51.563, - 0.0, - 0.0, + 10.342, + 56.666, + 55.475, + 103.607, + 100.654, + 153.344, + 179.269, + 183.011, + 182.821, + 143.057, + 108.832, + 70.088, + 9.599, + 13.026, 31.876, 31.876, 31.876, @@ -26857,20 +26857,20 @@ 31.876, 31.876, 21.597, - 9.618, - 51.886, - 40.922, - 78.716, - 68.401, - 103.38, - 98.664, - 133.877, - 138.925, - 124.262, - 72.371, - 39.673, - 0.0, - 0.0, + 10.392, + 56.767, + 55.47, + 102.688, + 98.611, + 136.941, + 139.619, + 149.878, + 152.06, + 140.37, + 97.53, + 57.874, + 9.599, + 13.026, 31.876, 31.876, 31.876, @@ -26881,20 +26881,20 @@ 33.107, 33.107, 59.554, - 75.239, - 122.83, - 178.03, - 162.888, - 154.246, - 157.59, - 156.892, - 151.638, - 161.491, - 144.05, - 163.866, - 131.421, - 145.875, - 121.871, + 76.181, + 127.616, + 192.292, + 186.532, + 184.018, + 190.477, + 201.089, + 195.138, + 199.286, + 186.293, + 194.163, + 149.086, + 158.901, + 134.897, 60.908, 33.107, 33.107, @@ -26905,20 +26905,20 @@ 33.107, 33.107, 59.554, - 75.398, - 123.001, - 178.617, - 167.946, - 174.761, - 177.921, - 176.781, - 166.433, - 178.687, - 191.026, - 178.496, - 145.822, - 156.27, - 135.95, + 76.196, + 127.7, + 192.341, + 190.953, + 203.763, + 209.916, + 216.054, + 208.962, + 215.758, + 214.637, + 208.546, + 160.081, + 169.296, + 148.976, 60.908, 33.107, 33.107, @@ -26929,20 +26929,20 @@ 33.107, 33.107, 59.554, - 75.417, - 123.093, - 182.499, - 183.586, - 193.209, - 197.192, - 190.164, - 179.501, - 188.651, - 168.708, - 184.832, - 150.023, - 165.394, - 145.753, + 76.207, + 127.716, + 196.532, + 206.909, + 222.969, + 230.395, + 230.897, + 223.804, + 227.221, + 211.304, + 215.332, + 167.454, + 178.42, + 158.778, 60.908, 33.107, 33.107, @@ -26953,20 +26953,20 @@ 33.107, 33.107, 59.554, - 75.384, - 124.173, - 205.919, - 207.827, - 206.449, - 205.337, - 199.904, - 187.393, - 198.294, - 177.937, - 194.25, - 159.357, - 175.051, - 150.307, + 76.212, + 128.832, + 220.153, + 231.487, + 236.575, + 238.937, + 241.157, + 232.143, + 236.841, + 220.049, + 224.169, + 176.405, + 188.076, + 163.333, 60.908, 33.107, 33.107, @@ -26977,20 +26977,20 @@ 31.876, 31.876, 58.323, - 57.699, - 87.209, - 149.102, - 206.48, - 207.723, - 207.88, - 198.412, - 185.087, - 193.253, - 173.568, - 191.866, - 133.017, - 113.066, - 108.47, + 58.439, + 92.132, + 165.899, + 232.953, + 240.782, + 244.336, + 243.078, + 232.365, + 234.289, + 218.271, + 223.278, + 150.562, + 126.092, + 121.495, 98.048, 31.876, 31.876, @@ -27001,20 +27001,20 @@ 31.876, 31.876, 21.597, - 9.588, - 51.856, - 46.636, - 105.641, - 110.771, - 150.535, - 140.276, - 130.619, - 139.55, - 117.339, - 93.099, - 64.693, - 0.0, - 0.0, + 10.393, + 56.853, + 63.895, + 132.73, + 144.488, + 187.815, + 185.787, + 178.0, + 180.643, + 161.98, + 124.644, + 82.171, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -27025,20 +27025,20 @@ 33.107, 33.107, 59.554, - 75.415, - 122.853, - 186.841, - 197.864, - 202.882, - 199.551, - 187.165, - 174.126, - 185.504, - 168.019, - 184.089, - 145.836, - 163.522, - 141.445, + 76.186, + 127.632, + 202.575, + 223.005, + 234.86, + 235.197, + 230.946, + 220.421, + 225.842, + 212.24, + 215.346, + 163.166, + 176.548, + 154.471, 60.908, 33.107, 33.107, @@ -27049,20 +27049,20 @@ 33.107, 33.107, 59.554, - 75.583, - 122.985, - 176.275, - 172.937, - 179.124, - 187.464, - 183.331, - 171.757, - 182.37, - 164.514, - 181.938, - 145.957, - 162.978, - 138.69, + 76.205, + 127.573, + 191.976, + 197.774, + 210.128, + 221.274, + 224.427, + 214.627, + 219.211, + 206.108, + 211.792, + 162.827, + 176.004, + 151.716, 60.908, 33.107, 33.107, @@ -27073,20 +27073,20 @@ 33.107, 33.107, 59.554, - 75.557, - 123.197, - 177.355, - 173.705, - 176.976, - 179.553, - 177.178, - 169.895, - 181.907, - 161.717, - 177.76, - 142.33, - 158.26, - 134.039, + 76.252, + 127.657, + 192.311, + 197.505, + 206.735, + 212.063, + 216.681, + 211.477, + 217.944, + 202.543, + 206.875, + 158.748, + 171.286, + 147.064, 60.908, 33.107, 33.107, @@ -27097,20 +27097,20 @@ 33.107, 33.107, 59.554, - 75.439, - 123.381, - 177.653, - 162.453, - 170.276, - 187.401, - 181.287, - 166.176, - 176.85, - 158.89, - 176.304, - 136.915, - 153.023, - 131.687, + 76.301, + 127.733, + 192.271, + 186.189, + 200.176, + 220.711, + 222.171, + 210.085, + 214.383, + 199.904, + 203.604, + 152.216, + 166.049, + 144.712, 60.908, 33.107, 33.107, @@ -27121,20 +27121,20 @@ 33.107, 33.107, 59.554, - 75.104, - 123.115, - 179.544, - 167.761, - 164.473, - 161.239, - 153.139, - 140.13, - 158.3, - 145.548, - 164.959, - 138.965, - 153.612, - 131.483, + 76.347, + 127.916, + 192.458, + 191.088, + 195.308, + 195.429, + 194.254, + 184.76, + 195.975, + 185.814, + 193.744, + 154.715, + 166.638, + 144.508, 60.908, 33.107, 33.107, @@ -27145,20 +27145,20 @@ 31.876, 31.876, 61.75, - 57.659, - 87.308, - 123.174, - 153.679, - 146.081, - 144.349, - 133.319, - 124.847, - 139.302, - 126.498, - 150.768, - 111.015, - 89.67, - 84.588, + 58.509, + 92.052, + 141.146, + 182.226, + 182.104, + 183.995, + 181.676, + 174.326, + 181.696, + 171.629, + 181.931, + 127.478, + 102.695, + 97.613, 80.045, 31.876, 31.876, @@ -27169,20 +27169,20 @@ 31.876, 31.876, 25.024, - 9.828, - 51.808, - 33.062, - 68.425, - 64.047, - 110.97, - 104.664, - 99.947, - 111.972, - 96.729, - 73.452, - 51.88, - 0.0, - 0.0, + 10.417, + 56.496, + 51.815, + 97.903, + 100.503, + 150.687, + 154.211, + 149.267, + 154.383, + 142.131, + 104.656, + 68.119, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -27193,20 +27193,20 @@ 33.107, 33.107, 62.98, - 75.609, - 122.842, - 170.864, - 154.663, - 149.479, - 148.245, - 135.665, - 127.914, - 140.762, - 126.321, - 149.633, - 128.123, - 144.534, - 120.286, + 76.198, + 127.413, + 189.044, + 182.991, + 184.601, + 186.643, + 183.036, + 175.484, + 181.619, + 170.374, + 180.212, + 144.01, + 157.56, + 133.312, 60.908, 33.107, 33.107, @@ -27217,20 +27217,20 @@ 33.107, 33.107, 62.98, - 75.677, - 123.172, - 173.594, - 157.99, - 148.175, - 146.055, - 142.604, - 136.841, - 148.315, - 132.675, - 154.836, - 131.999, - 148.157, - 122.122, + 76.237, + 127.525, + 190.281, + 184.068, + 180.257, + 181.0, + 186.095, + 181.097, + 186.704, + 175.13, + 184.304, + 147.278, + 161.182, + 135.148, 60.908, 33.107, 33.107, @@ -27241,20 +27241,20 @@ 33.107, 33.107, 62.98, - 75.557, - 123.416, - 175.04, - 157.931, - 146.247, - 140.763, - 128.188, - 115.426, - 128.43, - 118.904, - 145.388, - 123.673, - 137.943, - 119.302, + 76.31, + 127.713, + 190.959, + 184.004, + 179.387, + 177.451, + 172.903, + 162.237, + 168.835, + 162.124, + 174.789, + 138.579, + 150.969, + 132.328, 60.908, 33.107, 33.107, @@ -27265,20 +27265,20 @@ 33.107, 33.107, 63.026, - 75.689, - 123.243, - 172.234, - 156.123, - 147.869, - 151.558, - 145.434, - 139.387, - 150.981, - 135.695, - 158.061, - 132.959, - 144.893, - 120.76, + 76.262, + 127.514, + 189.594, + 183.179, + 181.08, + 187.58, + 190.014, + 184.305, + 189.528, + 177.804, + 187.206, + 147.794, + 157.919, + 133.785, 60.908, 33.107, 33.107, @@ -27289,20 +27289,20 @@ 33.107, 33.107, 63.025, - 75.788, - 123.578, - 174.719, - 158.302, - 154.961, - 163.484, - 154.848, - 146.114, - 159.507, - 145.509, - 167.753, - 143.257, - 152.293, - 128.941, + 76.297, + 127.636, + 190.717, + 184.123, + 187.272, + 199.221, + 199.157, + 191.386, + 198.146, + 187.171, + 195.893, + 157.711, + 165.318, + 141.967, 60.908, 33.107, 33.107, @@ -27313,20 +27313,20 @@ 31.876, 31.876, 61.75, - 57.656, - 88.132, - 131.941, - 178.801, - 177.709, - 183.626, - 181.767, - 170.742, - 183.742, - 169.958, - 191.461, - 137.863, - 106.267, - 102.088, + 58.673, + 92.446, + 146.51, + 203.59, + 210.755, + 220.525, + 225.667, + 217.598, + 223.978, + 213.274, + 220.667, + 152.455, + 119.293, + 115.113, 88.935, 31.876, 31.876, @@ -27337,20 +27337,20 @@ 31.876, 31.876, 25.024, - 10.027, - 52.535, - 41.248, - 100.259, - 107.772, - 148.75, - 136.735, - 136.462, - 149.599, - 131.361, - 117.37, - 87.653, - 0.0, - 0.0, + 10.531, + 56.636, + 59.244, + 128.696, + 142.98, + 187.299, + 184.498, + 184.106, + 190.215, + 174.645, + 146.297, + 102.065, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -27361,20 +27361,20 @@ 33.107, 33.107, 62.98, - 75.808, - 137.205, - 217.442, - 225.017, - 241.1, - 239.625, - 221.136, - 210.057, - 219.731, - 196.815, - 208.021, - 172.211, - 176.192, - 153.765, + 76.307, + 141.196, + 234.796, + 252.438, + 274.874, + 276.419, + 266.662, + 255.63, + 258.44, + 238.736, + 236.246, + 186.435, + 189.218, + 166.79, 60.908, 33.107, 33.107, @@ -27385,20 +27385,20 @@ 33.107, 33.107, 62.98, - 75.816, - 133.367, - 213.296, - 209.708, - 210.942, - 221.141, - 214.852, - 202.92, - 216.211, - 197.175, - 208.517, - 172.869, - 177.306, - 154.167, + 76.336, + 137.252, + 230.171, + 236.406, + 244.063, + 257.197, + 259.447, + 247.67, + 254.402, + 238.715, + 236.406, + 186.839, + 190.332, + 167.192, 60.908, 33.107, 33.107, @@ -27409,20 +27409,20 @@ 33.107, 33.107, 62.98, - 75.834, - 124.06, - 176.21, - 162.364, - 167.661, - 168.681, - 161.87, - 152.545, - 164.17, - 149.774, - 170.938, - 142.912, - 149.574, - 123.57, + 76.397, + 127.771, + 191.25, + 186.962, + 198.928, + 203.337, + 204.655, + 197.449, + 202.601, + 191.389, + 198.578, + 156.709, + 162.599, + 136.595, 60.908, 33.107, 33.107, @@ -27433,20 +27433,20 @@ 33.107, 33.107, 62.98, - 75.875, - 123.991, - 174.522, - 161.5, - 168.286, - 169.986, - 158.517, - 149.07, - 160.321, - 144.174, - 165.801, - 140.503, - 146.217, - 122.127, + 76.365, + 127.671, + 190.443, + 186.957, + 199.886, + 204.584, + 201.747, + 193.237, + 198.15, + 185.35, + 193.17, + 154.201, + 159.243, + 135.152, 60.908, 33.107, 33.107, @@ -27457,20 +27457,20 @@ 33.107, 33.107, 62.98, - 75.89, - 124.551, - 184.928, - 158.599, - 165.435, - 183.73, - 176.625, - 174.921, - 199.755, - 141.614, - 163.955, - 141.85, - 147.502, - 122.418, + 76.537, + 128.02, + 192.951, + 184.132, + 191.656, + 208.37, + 211.937, + 203.072, + 213.117, + 182.911, + 191.215, + 155.344, + 160.527, + 135.443, 60.908, 33.107, 33.107, @@ -27481,20 +27481,20 @@ 31.876, 31.876, 61.75, - 58.123, - 88.823, - 129.082, - 162.06, - 157.908, - 154.727, - 153.56, - 150.431, - 167.824, - 151.063, - 171.696, - 118.673, - 84.221, - 83.482, + 58.738, + 92.429, + 143.518, + 185.652, + 184.362, + 183.853, + 189.477, + 186.623, + 194.958, + 182.654, + 190.74, + 131.699, + 97.247, + 96.507, 79.921, 31.876, 31.876, @@ -27505,20 +27505,20 @@ 31.876, 31.876, 28.45, - 10.122, - 53.466, - 39.484, - 84.342, - 73.227, - 112.202, - 126.056, - 96.655, - 118.276, - 84.939, - 75.603, - 55.479, - 0.0, - 0.0, + 10.699, + 56.988, + 54.4, + 104.727, + 100.256, + 137.706, + 144.64, + 126.475, + 135.789, + 116.47, + 91.643, + 68.505, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -27529,20 +27529,20 @@ 33.107, 33.107, 66.636, - 76.181, - 124.619, - 177.925, - 162.363, - 166.578, - 176.928, - 175.066, - 165.905, - 174.94, - 154.834, - 171.237, - 143.439, - 144.675, - 122.357, + 76.606, + 127.875, + 191.914, + 185.927, + 196.514, + 210.204, + 216.547, + 209.2, + 211.585, + 194.608, + 197.182, + 156.465, + 157.7, + 135.383, 60.908, 33.107, 33.107, @@ -27553,20 +27553,20 @@ 33.107, 33.107, 66.407, - 75.941, - 124.871, - 177.325, - 161.651, - 151.159, - 147.146, - 143.401, - 124.356, - 136.694, - 122.572, - 146.817, - 127.933, - 137.727, - 119.589, + 76.745, + 128.142, + 191.564, + 185.359, + 181.214, + 180.477, + 181.551, + 167.642, + 173.265, + 162.268, + 172.639, + 140.959, + 150.753, + 132.615, 60.908, 33.107, 33.107, @@ -27577,20 +27577,20 @@ 33.107, 33.107, 66.577, - 76.07, - 124.648, - 175.973, - 160.376, - 156.05, - 157.914, - 147.855, - 136.187, - 148.712, - 135.263, - 159.43, - 139.325, - 141.493, - 121.746, + 76.548, + 127.877, + 190.912, + 185.147, + 187.56, + 192.649, + 190.686, + 180.477, + 185.992, + 174.996, + 184.876, + 152.351, + 154.518, + 134.772, 60.908, 33.107, 33.107, @@ -27601,20 +27601,20 @@ 33.107, 33.107, 66.452, - 75.878, - 124.426, - 174.27, - 160.51, - 156.78, - 161.171, - 158.426, - 148.979, - 181.036, - 168.831, - 193.502, - 148.244, - 153.416, - 130.731, + 76.519, + 127.845, + 190.208, + 186.965, + 189.943, + 197.637, + 202.627, + 194.682, + 209.101, + 204.724, + 207.273, + 161.27, + 166.442, + 143.756, 60.908, 33.107, 33.107, @@ -27625,20 +27625,20 @@ 33.107, 33.107, 66.407, - 75.931, - 128.141, - 188.761, - 168.623, - 224.166, - 192.176, - 199.769, - 251.554, - 249.393, - 170.317, - 208.55, - 160.485, - 160.972, - 134.902, + 76.582, + 129.767, + 194.413, + 195.68, + 233.782, + 229.288, + 236.627, + 255.958, + 255.712, + 211.627, + 221.755, + 173.511, + 173.998, + 147.928, 60.908, 33.107, 33.107, @@ -27649,20 +27649,20 @@ 31.876, 31.876, 65.176, - 58.267, - 88.897, - 122.57, - 153.496, - 152.519, - 160.993, - 219.987, - 208.085, - 224.439, - 190.847, - 179.86, - 125.489, - 87.081, - 85.837, + 58.764, + 92.222, + 140.192, + 181.661, + 187.197, + 198.906, + 223.017, + 223.137, + 225.264, + 205.156, + 199.474, + 138.515, + 100.107, + 98.863, 80.604, 31.876, 31.876, @@ -27673,20 +27673,20 @@ 31.876, 31.876, 28.45, - 10.299, - 53.58, - 34.717, - 71.123, - 63.776, - 103.078, - 97.851, - 93.927, - 106.602, - 92.629, - 66.696, - 60.714, - 0.0, - 0.0, + 10.732, + 56.849, + 51.89, + 98.601, + 97.537, + 139.704, + 143.294, + 138.797, + 144.429, + 132.523, + 91.698, + 73.74, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -27697,20 +27697,20 @@ 31.876, 31.876, 28.45, - 10.316, - 53.838, - 36.4, - 73.775, - 78.6, - 120.704, - 104.322, - 94.216, - 103.787, - 85.307, - 63.324, - 58.982, - 0.0, - 0.0, + 10.766, + 56.939, + 52.65, + 100.021, + 111.171, + 155.961, + 147.988, + 138.199, + 140.9, + 125.2, + 88.264, + 72.007, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -27721,20 +27721,20 @@ 33.107, 33.107, 66.407, - 76.137, - 124.808, - 173.922, - 161.876, - 164.239, - 161.796, - 148.865, - 139.573, - 151.511, - 136.519, - 160.555, - 140.318, - 140.454, - 122.122, + 76.541, + 127.804, + 189.782, + 187.449, + 195.161, + 194.783, + 190.261, + 181.586, + 187.084, + 175.439, + 185.128, + 153.343, + 153.479, + 135.148, 60.908, 33.107, 33.107, @@ -27745,20 +27745,20 @@ 33.107, 33.107, 66.407, - 76.147, - 124.989, - 175.436, - 159.091, - 170.712, - 183.17, - 156.834, - 146.297, - 158.783, - 145.19, - 166.825, - 141.368, - 139.78, - 120.764, + 76.573, + 127.894, + 190.458, + 184.035, + 194.977, + 209.384, + 198.805, + 188.948, + 194.112, + 182.906, + 190.357, + 154.394, + 152.806, + 133.789, 60.908, 33.107, 33.107, @@ -27769,20 +27769,20 @@ 33.107, 33.107, 66.407, - 76.209, - 125.123, - 174.733, - 158.653, - 153.593, - 157.656, - 149.865, - 140.946, - 153.669, - 139.52, - 163.742, - 143.524, - 141.464, - 122.239, + 76.595, + 127.915, + 190.035, + 183.878, + 184.712, + 191.364, + 191.34, + 183.309, + 189.163, + 177.705, + 187.27, + 156.55, + 154.49, + 135.265, 60.908, 33.107, 33.107, @@ -27793,20 +27793,20 @@ 33.107, 33.107, 66.407, - 76.222, - 125.238, - 174.664, - 158.12, - 148.824, - 145.927, - 133.982, - 125.591, - 139.321, - 126.081, - 151.512, - 132.998, - 139.244, - 120.5, + 76.599, + 127.892, + 189.981, + 183.485, + 180.282, + 180.254, + 176.548, + 168.657, + 175.168, + 164.451, + 175.28, + 146.024, + 152.269, + 133.526, 60.908, 33.107, 33.107, @@ -27817,20 +27817,20 @@ 31.876, 31.876, 68.602, - 58.515, - 89.829, - 126.966, - 159.487, - 150.538, - 147.729, - 138.661, - 137.046, - 149.154, - 134.141, - 158.265, - 116.821, - 83.62, - 83.472, + 58.893, + 92.485, + 142.017, + 184.106, + 180.707, + 179.953, + 178.261, + 177.319, + 183.327, + 171.7, + 181.629, + 129.847, + 96.646, + 96.497, 79.921, 31.876, 31.876, @@ -27841,20 +27841,20 @@ 31.876, 31.876, 31.876, - 10.539, - 54.595, - 40.525, - 88.485, - 77.333, - 101.39, - 98.26, - 91.178, - 88.293, - 80.558, - 65.607, - 62.332, - 0.0, - 0.0, + 10.873, + 57.148, + 54.435, + 106.331, + 101.78, + 132.55, + 132.065, + 123.827, + 122.8, + 114.475, + 87.844, + 75.357, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -27865,20 +27865,20 @@ 33.107, 33.107, 69.951, - 76.31, - 125.435, - 179.592, - 163.086, - 153.313, - 150.19, - 143.886, - 129.833, - 143.962, - 131.215, - 157.167, - 136.209, - 138.209, - 120.021, + 76.74, + 128.24, + 192.409, + 185.723, + 181.933, + 181.682, + 181.135, + 171.33, + 178.507, + 167.989, + 178.797, + 149.234, + 151.234, + 133.047, 60.908, 33.107, 33.107, @@ -27889,20 +27889,20 @@ 33.107, 33.107, 70.124, - 76.383, - 125.593, - 177.101, - 161.151, - 154.226, - 155.709, - 149.06, - 139.808, - 154.002, - 141.214, - 166.293, - 143.787, - 140.688, - 122.133, + 76.729, + 128.066, + 191.053, + 184.908, + 184.462, + 189.152, + 189.787, + 182.33, + 189.476, + 178.763, + 188.622, + 156.813, + 153.714, + 135.159, 60.908, 33.107, 33.107, @@ -27913,20 +27913,20 @@ 33.107, 33.107, 69.833, - 76.36, - 125.612, - 175.33, - 160.657, - 153.466, - 149.711, - 147.679, - 147.526, - 160.318, - 144.767, - 165.48, - 139.056, - 140.07, - 121.452, + 76.685, + 127.998, + 190.16, + 185.604, + 184.707, + 183.615, + 188.801, + 189.326, + 195.048, + 181.709, + 187.562, + 152.082, + 153.095, + 134.477, 60.908, 33.107, 33.107, @@ -27937,20 +27937,20 @@ 33.107, 33.107, 69.833, - 76.387, - 125.614, - 178.916, - 177.877, - 167.389, - 164.17, - 152.671, - 143.537, - 156.41, - 142.616, - 168.592, - 146.901, - 141.433, - 122.799, + 76.689, + 127.981, + 194.175, + 203.229, + 198.931, + 198.272, + 194.165, + 185.332, + 191.216, + 179.75, + 190.575, + 159.927, + 154.458, + 135.824, 60.908, 33.107, 33.107, @@ -27961,20 +27961,20 @@ 33.107, 33.107, 69.833, - 76.392, - 125.971, - 191.801, - 194.203, - 206.317, - 201.627, - 186.655, - 174.875, - 188.787, - 166.2, - 178.136, - 148.165, - 142.027, - 123.488, + 76.72, + 128.327, + 206.268, + 218.058, + 236.61, + 235.143, + 227.881, + 217.398, + 224.148, + 203.425, + 199.243, + 161.19, + 155.052, + 136.514, 60.908, 33.107, 33.107, @@ -27985,20 +27985,20 @@ 31.876, 31.876, 68.602, - 58.687, - 90.269, - 127.827, - 159.645, - 150.005, - 146.288, - 136.755, - 136.262, - 156.557, - 142.911, - 168.314, - 117.605, - 83.505, - 83.472, + 59.036, + 92.648, + 142.252, + 183.979, + 180.333, + 179.169, + 176.021, + 177.577, + 191.108, + 179.615, + 188.853, + 130.63, + 96.531, + 96.497, 79.921, 31.876, 31.876, @@ -28009,20 +28009,20 @@ 31.876, 31.876, 31.876, - 10.692, - 55.01, - 39.613, - 76.694, - 67.794, - 100.09, - 91.298, - 77.592, - 90.055, - 77.102, - 68.426, - 65.758, - 0.0, - 0.0, + 11.018, + 57.291, + 53.812, + 100.617, + 97.314, + 131.834, + 129.017, + 117.74, + 123.408, + 112.903, + 88.859, + 78.784, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -28033,20 +28033,20 @@ 33.107, 33.107, 69.963, - 76.672, - 126.038, - 175.876, - 159.393, - 149.027, - 144.811, - 136.468, - 137.835, - 156.597, - 143.859, - 167.225, - 141.015, - 136.712, - 118.899, + 76.965, + 128.155, + 190.25, + 183.775, + 179.785, + 178.42, + 176.408, + 179.863, + 191.337, + 180.331, + 188.426, + 154.04, + 149.737, + 131.925, 60.908, 33.107, 33.107, @@ -28057,20 +28057,20 @@ 33.107, 33.107, 70.01, - 76.685, - 126.077, - 175.883, - 159.867, - 149.98, - 147.185, - 141.411, - 134.442, - 150.452, - 137.637, - 163.648, - 140.344, - 138.398, - 120.131, + 76.908, + 128.13, + 190.201, + 183.956, + 180.193, + 180.006, + 180.244, + 175.458, + 184.342, + 173.555, + 184.189, + 153.369, + 151.424, + 133.157, 60.908, 33.107, 33.107, @@ -28081,20 +28081,20 @@ 33.107, 33.107, 70.007, - 76.684, - 126.166, - 179.319, - 162.78, - 153.357, - 155.086, - 154.539, - 144.712, - 176.412, - 153.205, - 168.831, - 139.641, - 137.962, - 119.977, + 76.942, + 128.32, + 191.943, + 185.3, + 182.428, + 186.908, + 190.76, + 180.741, + 194.53, + 179.263, + 185.361, + 152.667, + 150.987, + 133.003, 60.908, 33.107, 33.107, @@ -28105,20 +28105,20 @@ 33.107, 33.107, 69.971, - 80.115, - 126.117, - 179.32, - 161.933, - 151.315, - 146.977, - 143.156, - 126.931, - 142.348, - 131.628, - 156.926, - 138.038, - 137.93, - 119.74, + 80.358, + 128.344, + 191.959, + 184.882, + 180.789, + 179.34, + 179.532, + 167.291, + 174.238, + 164.616, + 175.286, + 151.063, + 150.955, + 132.765, 60.908, 33.107, 33.107, @@ -28129,20 +28129,20 @@ 33.107, 33.107, 70.385, - 80.4, - 126.138, - 176.917, - 158.607, - 149.412, - 148.283, - 142.158, - 125.573, - 139.402, - 129.405, - 157.831, - 139.621, - 138.654, - 120.006, + 80.632, + 128.303, + 190.69, + 183.289, + 181.157, + 183.673, + 182.724, + 169.978, + 176.271, + 166.939, + 178.641, + 152.646, + 151.68, + 133.031, 60.908, 33.107, 33.107, @@ -28153,20 +28153,20 @@ 31.876, 31.876, 69.127, - 62.793, - 90.765, - 124.843, - 155.709, - 145.158, - 142.619, - 135.254, - 123.525, - 137.29, - 125.994, - 154.547, - 120.83, - 83.828, - 83.472, + 62.985, + 92.669, + 140.481, + 181.906, + 177.918, + 177.979, + 176.856, + 166.907, + 173.101, + 163.22, + 175.322, + 133.856, + 96.853, + 96.497, 79.921, 31.876, 31.876, @@ -28177,20 +28177,20 @@ 31.876, 31.876, 31.876, - 14.365, - 55.435, - 36.864, - 72.693, - 63.088, - 102.052, - 98.986, - 87.655, - 97.41, - 82.571, - 71.065, - 65.762, - 0.0, - 0.0, + 14.542, + 57.321, + 52.186, + 98.538, + 95.372, + 136.859, + 139.787, + 129.902, + 132.063, + 118.624, + 91.151, + 78.788, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -28201,20 +28201,20 @@ 33.107, 33.107, 70.311, - 80.447, - 126.407, - 175.251, - 160.019, - 163.923, - 177.259, - 178.29, - 170.568, - 188.263, - 169.653, - 185.758, - 155.978, - 150.008, - 126.637, + 80.624, + 128.188, + 189.705, + 184.505, + 194.898, + 210.815, + 217.518, + 212.181, + 222.386, + 205.128, + 205.323, + 169.004, + 163.033, + 139.663, 60.908, 33.107, 33.107, @@ -28225,20 +28225,20 @@ 33.107, 33.107, 69.889, - 80.208, - 126.575, - 175.94, - 166.123, - 175.408, - 185.419, - 187.885, - 194.47, - 182.039, - 162.408, - 173.925, - 149.61, - 142.027, - 121.148, + 80.35, + 128.228, + 190.022, + 190.109, + 205.297, + 217.657, + 225.389, + 222.214, + 212.037, + 192.773, + 193.056, + 162.635, + 155.053, + 134.174, 60.908, 33.107, 33.107, @@ -28249,20 +28249,20 @@ 33.107, 33.107, 69.899, - 80.243, - 126.704, - 177.083, - 191.383, - 178.072, - 173.315, - 165.058, - 149.286, - 161.83, - 150.295, - 184.204, - 144.828, - 139.501, - 121.005, + 80.369, + 128.278, + 190.648, + 205.609, + 206.356, + 204.463, + 201.845, + 189.613, + 195.258, + 185.211, + 199.288, + 157.854, + 152.527, + 134.03, 60.908, 33.107, 33.107, @@ -28273,20 +28273,20 @@ 33.107, 33.107, 69.929, - 80.3, - 126.787, - 176.869, - 158.513, - 158.137, - 180.435, - 187.279, - 126.064, - 156.853, - 133.124, - 163.496, - 138.606, - 137.513, - 119.0, + 80.415, + 128.327, + 190.406, + 182.996, + 183.787, + 194.661, + 197.279, + 172.254, + 181.491, + 166.121, + 180.863, + 151.631, + 150.538, + 132.025, 60.908, 33.107, 33.107, @@ -28297,20 +28297,20 @@ 33.107, 33.107, 70.588, - 80.713, - 126.862, - 177.728, - 160.188, - 149.549, - 147.419, - 144.674, - 126.589, - 140.136, - 129.026, - 161.49, - 139.346, - 138.046, - 119.481, + 80.9, + 128.437, + 190.835, + 183.777, + 179.832, + 180.241, + 181.356, + 168.125, + 174.27, + 164.442, + 180.204, + 152.371, + 151.071, + 132.506, 60.908, 33.107, 33.107, @@ -28321,20 +28321,20 @@ 31.876, 31.876, 69.102, - 62.91, - 91.441, - 125.974, - 156.076, - 144.804, - 140.509, - 133.314, - 119.629, - 134.72, - 124.689, - 158.595, - 118.899, - 83.472, - 83.472, + 63.058, + 92.839, + 140.775, + 181.798, + 177.544, + 176.196, + 174.264, + 162.981, + 169.829, + 160.572, + 177.037, + 131.925, + 96.497, + 96.497, 79.944, 31.876, 31.876, @@ -28345,20 +28345,20 @@ 31.876, 31.876, 31.876, - 14.489, - 56.632, - 39.278, - 74.714, - 63.865, - 95.161, - 88.941, - 73.912, - 88.195, - 78.519, - 76.183, - 65.758, - 0.0, - 0.0, + 14.636, + 57.979, + 53.147, + 99.181, + 95.091, + 129.221, + 127.785, + 115.817, + 122.303, + 113.2, + 93.885, + 78.784, + 13.026, + 13.026, 31.876, 31.876, 31.876, @@ -28369,20 +28369,20 @@ 33.107, 33.107, 33.107, - 56.911, - 74.156, - 112.015, - 160.729, - 149.879, - 145.575, - 142.581, - 126.837, - 141.381, - 130.387, - 163.087, - 187.346, - 137.981, - 137.303, + 57.018, + 75.412, + 124.788, + 183.882, + 179.77, + 178.417, + 179.365, + 167.754, + 174.433, + 164.692, + 180.512, + 200.372, + 151.007, + 150.328, 150.796, 60.908, 33.107, @@ -28393,20 +28393,20 @@ 33.107, 33.107, 33.107, - 56.693, - 74.328, - 112.72, - 161.997, - 151.89, - 154.382, - 160.461, - 143.074, - 155.95, - 142.53, - 166.375, - 187.637, - 137.954, - 137.484, + 56.798, + 75.575, + 125.127, + 184.476, + 180.695, + 185.59, + 195.224, + 182.45, + 188.161, + 176.609, + 183.655, + 200.663, + 150.98, + 150.51, 151.025, 60.908, 33.107, @@ -28417,20 +28417,20 @@ 33.107, 33.107, 33.107, - 56.395, - 74.272, - 113.413, - 163.388, - 154.591, - 157.795, - 159.392, - 141.024, - 154.007, - 141.766, - 172.129, - 189.029, - 138.787, - 137.89, + 56.463, + 75.421, + 125.426, + 185.112, + 182.331, + 188.382, + 193.924, + 180.397, + 186.064, + 175.439, + 189.207, + 202.055, + 151.812, + 150.916, 151.694, 60.908, 33.107, @@ -28441,20 +28441,20 @@ 33.107, 33.107, 33.107, - 56.513, - 74.276, - 113.723, - 169.503, - 175.242, - 181.186, - 185.949, - 165.531, - 173.234, - 155.51, - 183.124, - 200.898, - 143.101, - 139.57, + 56.636, + 75.424, + 125.576, + 191.317, + 203.365, + 211.802, + 219.57, + 204.173, + 204.467, + 188.196, + 199.587, + 213.923, + 156.127, + 152.596, 152.94, 60.908, 33.107, @@ -28465,20 +28465,20 @@ 33.107, 33.107, 33.107, - 56.163, - 74.344, - 114.732, - 167.414, - 171.841, - 180.542, - 201.184, - 163.089, - 174.267, - 160.391, - 185.342, - 199.05, - 141.327, - 140.342, + 56.213, + 75.45, + 126.045, + 187.674, + 198.077, + 210.171, + 224.052, + 202.085, + 205.985, + 193.326, + 201.88, + 212.076, + 154.352, + 153.367, 153.733, 60.908, 33.107, @@ -28490,19 +28490,19 @@ 31.876, 31.876, 54.955, - 56.677, - 77.821, - 114.878, - 167.909, - 173.352, - 170.992, - 153.593, - 172.234, - 162.348, - 186.21, - 200.371, - 122.548, - 86.155, + 57.714, + 89.836, + 137.195, + 197.299, + 205.67, + 206.615, + 194.093, + 204.96, + 195.699, + 202.533, + 213.396, + 135.573, + 99.181, 117.506, 80.336, 31.876, @@ -28514,19 +28514,19 @@ 31.876, 31.876, 18.171, - 8.455, - 47.384, - 28.752, - 69.392, - 64.966, - 102.218, - 99.688, - 95.319, - 85.467, - 123.144, - 101.185, - 65.758, - 0.0, + 9.947, + 56.359, + 49.276, + 97.478, + 96.002, + 132.645, + 129.435, + 125.567, + 116.396, + 136.357, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -28538,19 +28538,19 @@ 33.107, 33.107, 56.589, - 74.396, - 123.773, - 165.446, - 153.424, - 148.675, - 150.164, - 135.539, - 139.522, - 129.153, - 165.431, - 184.831, - 136.613, - 136.613, + 75.813, + 128.226, + 185.975, + 181.289, + 179.66, + 180.711, + 174.497, + 171.69, + 162.281, + 181.787, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -28562,19 +28562,19 @@ 33.107, 33.107, 56.765, - 74.942, - 123.772, - 164.931, - 154.026, - 166.011, - 182.378, - 184.839, - 170.412, - 155.99, - 176.754, - 187.748, - 138.656, - 137.563, + 76.422, + 128.194, + 185.62, + 181.51, + 189.035, + 200.946, + 205.232, + 193.221, + 181.683, + 189.962, + 200.773, + 151.682, + 150.588, 150.941, 60.908, 33.107, @@ -28586,19 +28586,19 @@ 33.107, 33.107, 56.956, - 76.294, - 116.463, - 185.964, - 152.581, - 147.477, - 148.73, - 142.578, - 138.951, - 129.462, - 169.811, - 185.076, - 136.677, - 136.613, + 77.029, + 126.814, + 193.358, + 180.833, + 179.058, + 180.019, + 178.213, + 171.565, + 162.543, + 183.779, + 198.102, + 149.702, + 149.638, 150.775, 60.908, 33.107, @@ -28610,19 +28610,19 @@ 33.107, 33.107, 58.108, - 76.258, - 117.553, - 164.819, - 152.961, - 148.24, - 147.917, - 125.585, - 140.336, - 130.321, - 166.864, - 185.303, - 137.121, - 137.101, + 77.28, + 128.011, + 185.98, + 181.154, + 179.599, + 180.561, + 165.841, + 172.095, + 162.823, + 182.517, + 198.329, + 150.146, + 150.127, 151.285, 60.908, 33.107, @@ -28634,19 +28634,19 @@ 33.107, 33.107, 61.214, - 75.385, - 111.01, - 157.781, - 146.128, - 141.733, - 138.723, - 120.547, - 135.371, - 126.925, - 165.711, - 184.831, - 136.613, - 136.613, + 76.227, + 123.936, + 182.128, + 177.784, + 176.407, + 176.629, + 163.077, + 169.799, + 161.25, + 181.879, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -28658,19 +28658,19 @@ 31.876, 31.876, 59.146, - 57.249, - 78.089, - 113.185, - 149.815, - 145.484, - 144.006, - 124.968, - 139.257, - 136.003, - 170.981, - 185.528, - 119.145, - 83.472, + 58.06, + 89.721, + 135.592, + 179.438, + 178.086, + 179.384, + 165.495, + 171.956, + 168.67, + 184.556, + 198.554, + 132.17, + 96.497, 115.348, 79.921, 31.876, @@ -28682,19 +28682,19 @@ 31.876, 31.876, 21.597, - 9.351, - 53.228, - 25.457, - 85.337, - 77.269, - 136.41, - 139.123, - 137.413, - 87.552, - 122.135, - 101.185, - 65.758, - 0.0, + 10.65, + 57.35, + 47.389, + 104.785, + 101.469, + 145.263, + 145.971, + 147.038, + 116.831, + 135.625, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -28706,19 +28706,19 @@ 33.107, 33.107, 60.25, - 75.53, - 124.943, - 165.877, - 176.158, - 172.974, - 189.448, - 157.89, - 140.975, - 131.345, - 168.379, - 185.381, - 136.901, - 136.613, + 76.269, + 128.778, + 185.878, + 191.873, + 190.786, + 194.671, + 184.561, + 176.486, + 163.464, + 183.33, + 198.407, + 149.927, + 149.638, 150.775, 60.908, 33.107, @@ -28730,19 +28730,19 @@ 33.107, 33.107, 60.08, - 75.025, - 116.483, - 167.648, - 174.39, - 196.882, - 215.644, - 194.678, - 216.11, - 191.533, - 195.412, - 201.178, - 143.589, - 140.767, + 75.733, + 126.577, + 188.105, + 202.066, + 220.649, + 235.432, + 222.345, + 228.982, + 209.285, + 208.489, + 214.204, + 156.615, + 153.792, 154.018, 60.908, 33.107, @@ -28754,19 +28754,19 @@ 33.107, 33.107, 59.575, - 75.096, - 116.369, - 165.783, - 158.78, - 163.55, - 168.924, - 148.108, - 162.488, - 152.158, - 185.71, - 191.799, - 140.582, - 139.346, + 75.754, + 126.479, + 186.793, + 186.529, + 194.2, + 200.252, + 187.601, + 193.533, + 184.04, + 200.741, + 204.825, + 153.607, + 152.371, 152.156, 60.908, 33.107, @@ -28778,19 +28778,19 @@ 31.876, 31.876, 21.597, - 9.602, - 53.482, - 48.737, - 71.459, - 66.182, - 103.109, - 98.1, - 92.912, - 93.933, - 122.129, - 101.185, - 65.758, - 0.0, + 10.754, + 57.324, + 56.475, + 98.072, + 96.266, + 132.775, + 133.8, + 123.966, + 119.59, + 135.622, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -28802,19 +28802,19 @@ 33.107, 33.107, 60.472, - 75.794, - 114.679, - 161.755, - 149.468, - 144.406, - 145.155, - 124.113, - 139.145, - 129.666, - 171.103, - 184.874, - 136.613, - 136.613, + 76.372, + 125.642, + 183.762, + 179.084, + 177.435, + 179.408, + 165.728, + 171.982, + 162.889, + 184.643, + 197.899, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -28826,19 +28826,19 @@ 31.876, 31.876, 58.961, - 58.141, - 80.506, - 115.126, - 152.065, - 146.861, - 148.238, - 135.455, - 138.062, - 128.6, - 167.108, - 184.831, - 118.899, - 83.472, + 59.215, + 90.834, + 136.292, + 180.292, + 178.556, + 179.598, + 171.758, + 170.805, + 161.83, + 182.435, + 197.856, + 131.925, + 96.497, 115.348, 79.921, 31.876, @@ -28850,19 +28850,19 @@ 31.876, 31.876, 21.597, - 9.71, - 44.976, - 28.049, - 71.058, - 65.662, - 102.207, - 89.516, - 92.402, - 81.815, - 119.084, - 101.185, - 65.758, - 0.0, + 10.761, + 55.209, + 48.415, + 97.874, + 96.024, + 132.349, + 124.537, + 123.703, + 114.214, + 134.294, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -28874,19 +28874,19 @@ 33.107, 33.107, 60.177, - 75.601, - 116.739, - 165.722, - 157.552, - 162.328, - 174.347, - 164.016, - 167.914, - 155.52, - 186.832, - 197.633, - 141.465, - 139.197, + 76.552, + 126.454, + 185.6, + 184.026, + 191.234, + 202.584, + 198.046, + 198.491, + 187.786, + 202.193, + 210.659, + 154.49, + 152.222, 151.715, 60.908, 33.107, @@ -28898,19 +28898,19 @@ 33.107, 33.107, 63.859, - 76.025, - 124.965, - 185.304, - 168.205, - 170.34, - 174.582, - 157.318, - 145.133, - 133.466, - 169.341, - 185.693, - 136.721, - 136.613, + 76.983, + 128.432, + 193.287, + 187.761, + 189.613, + 192.279, + 187.632, + 174.656, + 164.709, + 184.11, + 198.719, + 149.747, + 149.638, 150.775, 60.908, 33.107, @@ -28922,19 +28922,19 @@ 33.107, 33.107, 64.403, - 76.088, - 124.99, - 167.807, - 155.355, - 150.75, - 154.7, - 152.842, - 144.635, - 133.807, - 170.967, - 187.306, - 137.556, - 136.693, + 77.018, + 128.371, + 186.587, + 181.733, + 180.978, + 184.758, + 185.474, + 176.322, + 166.616, + 186.308, + 200.331, + 150.582, + 149.719, 150.775, 60.908, 33.107, @@ -28946,19 +28946,19 @@ 33.107, 33.107, 64.31, - 75.937, - 118.784, - 166.537, - 154.987, - 151.639, - 153.831, - 131.143, - 143.749, - 185.789, - 205.738, + 76.481, + 127.375, + 185.892, + 181.601, + 181.982, + 183.861, + 171.034, + 175.013, + 193.574, + 205.786, 217.926, - 160.331, - 136.613, + 167.098, + 149.638, 150.775, 60.908, 33.107, @@ -28970,19 +28970,19 @@ 33.107, 33.107, 64.044, - 76.933, - 126.085, - 189.358, - 195.676, - 193.493, - 195.148, - 194.894, - 192.716, - 157.933, - 167.877, - 184.831, - 136.613, - 136.613, + 77.396, + 129.094, + 194.431, + 196.047, + 195.577, + 195.934, + 195.879, + 195.408, + 174.716, + 182.749, + 197.856, + 149.638, + 149.638, 150.799, 60.908, 33.107, @@ -28994,19 +28994,19 @@ 31.876, 31.876, 63.269, - 58.869, - 86.07, - 132.272, - 170.266, - 173.109, - 168.602, - 158.638, - 180.114, - 189.258, - 171.125, - 184.831, - 118.91, - 83.647, + 59.448, + 92.853, + 144.726, + 188.782, + 190.7, + 188.798, + 182.626, + 189.466, + 195.3, + 189.742, + 197.856, + 131.936, + 96.672, 115.624, 80.35, 31.876, @@ -29018,19 +29018,19 @@ 31.876, 31.876, 25.024, - 10.112, - 58.024, - 57.668, - 108.844, - 101.571, - 137.068, - 129.102, - 138.514, - 106.895, - 122.707, - 102.057, - 66.759, - 0.0, + 11.006, + 60.474, + 60.113, + 112.655, + 110.737, + 146.204, + 145.222, + 146.669, + 134.258, + 136.48, + 115.082, + 79.784, + 13.026, 31.876, 31.876, 31.876, @@ -29042,19 +29042,19 @@ 33.107, 33.107, 65.086, - 76.91, - 130.873, - 166.699, - 185.867, - 180.623, - 175.524, - 188.716, - 195.931, - 130.205, - 170.638, - 184.831, - 136.613, - 136.613, + 77.492, + 131.025, + 185.912, + 193.549, + 193.012, + 192.005, + 194.492, + 196.102, + 162.415, + 183.958, + 197.856, + 149.638, + 149.638, 150.798, 60.908, 33.107, @@ -29066,19 +29066,19 @@ 33.107, 33.107, 64.307, - 76.137, - 117.969, - 163.852, - 151.915, - 152.265, - 157.613, - 132.053, - 141.923, - 132.436, - 175.521, - 185.245, - 136.613, - 136.613, + 76.639, + 126.932, + 184.441, + 180.267, + 184.546, + 189.664, + 172.785, + 174.923, + 165.299, + 188.886, + 198.271, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -29090,19 +29090,19 @@ 33.107, 33.107, 63.609, - 75.678, - 119.557, - 167.12, - 155.284, - 149.647, - 166.772, - 130.059, - 158.715, - 140.057, - 172.38, - 185.349, - 137.112, - 136.764, + 76.169, + 127.463, + 186.021, + 181.55, + 179.797, + 188.258, + 169.29, + 180.249, + 167.114, + 186.948, + 198.375, + 150.137, + 149.789, 150.775, 60.908, 33.107, @@ -29114,19 +29114,19 @@ 33.107, 33.107, 63.636, - 75.916, - 119.432, - 166.173, - 154.123, - 148.456, - 149.798, - 152.588, - 140.063, - 130.196, - 171.498, - 184.831, - 136.613, - 136.613, + 76.373, + 127.47, + 185.524, + 180.943, + 179.064, + 180.106, + 179.061, + 171.512, + 162.381, + 186.247, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -29138,19 +29138,19 @@ 33.107, 33.107, 64.106, - 76.19, - 118.502, - 165.069, - 152.1, - 147.143, - 149.259, - 129.727, - 139.813, - 130.996, - 172.92, - 186.027, - 137.452, - 136.655, + 76.62, + 127.083, + 184.946, + 179.977, + 178.934, + 180.678, + 169.412, + 172.221, + 163.578, + 187.695, + 199.052, + 150.478, + 149.68, 150.775, 60.908, 33.107, @@ -29162,19 +29162,19 @@ 31.876, 31.876, 66.204, - 58.592, - 82.755, - 116.289, - 158.15, - 156.983, - 148.561, - 143.057, - 138.795, - 128.673, - 171.031, - 184.831, - 118.899, - 83.472, + 59.105, + 91.557, + 136.464, + 182.728, + 182.937, + 179.545, + 174.562, + 170.936, + 161.694, + 186.04, + 197.856, + 131.925, + 96.497, 115.348, 79.921, 31.876, @@ -29186,19 +29186,19 @@ 31.876, 31.876, 28.45, - 9.938, - 49.629, - 30.261, - 70.641, - 64.031, - 99.465, - 128.433, - 130.829, - 97.648, - 123.32, - 101.185, - 65.758, - 0.0, + 10.435, + 56.867, + 49.109, + 97.366, + 95.049, + 130.91, + 142.165, + 140.771, + 128.659, + 138.046, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -29210,19 +29210,19 @@ 33.392, 33.37, 68.291, - 77.019, - 120.98, - 180.802, - 185.496, - 148.725, - 195.081, - 189.031, - 193.246, - 147.959, - 168.962, - 184.831, - 136.625, - 137.045, + 77.544, + 128.058, + 192.798, + 193.401, + 179.173, + 195.919, + 194.562, + 195.523, + 170.292, + 183.212, + 197.856, + 149.65, + 150.07, 151.62, 60.908, 33.107, @@ -29234,19 +29234,19 @@ 34.096, 34.422, 68.957, - 77.356, - 120.041, - 165.314, - 152.13, - 145.657, - 146.683, - 128.978, - 137.695, - 128.086, - 167.459, - 184.831, - 136.613, - 136.613, + 77.79, + 127.935, + 185.005, + 179.918, + 177.717, + 178.641, + 168.401, + 170.428, + 161.409, + 182.547, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -29258,19 +29258,19 @@ 34.072, 34.376, 68.876, - 77.085, - 119.276, - 165.333, - 152.192, - 146.284, - 147.551, - 129.358, - 137.913, - 128.157, - 167.151, - 184.831, - 136.613, - 136.613, + 77.473, + 127.429, + 184.969, + 179.941, + 178.012, + 179.045, + 168.474, + 170.523, + 161.439, + 182.409, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -29282,19 +29282,19 @@ 33.8, 34.142, 68.678, - 76.741, - 126.078, - 168.006, - 156.34, - 151.902, - 152.121, - 149.322, - 140.133, - 129.519, - 167.485, - 184.831, - 136.613, - 136.613, + 77.177, + 128.842, + 186.272, + 181.899, + 180.625, + 181.127, + 181.021, + 171.496, + 162.04, + 182.556, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -29306,19 +29306,19 @@ 33.216, 33.336, 68.178, - 76.569, - 125.918, - 167.567, - 175.244, - 174.59, - 177.805, - 193.387, - 172.164, - 129.118, - 170.573, - 184.831, - 136.613, - 136.613, + 77.049, + 128.711, + 186.016, + 191.025, + 191.319, + 193.108, + 195.708, + 191.093, + 161.974, + 184.022, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -29330,19 +29330,19 @@ 31.876, 31.876, 66.533, - 58.87, - 84.509, - 117.307, - 151.699, - 145.427, - 147.094, - 129.914, - 137.098, - 127.669, - 167.31, - 185.423, - 118.899, - 83.472, + 59.29, + 92.138, + 136.788, + 179.654, + 177.831, + 179.665, + 169.727, + 170.942, + 162.009, + 183.249, + 198.449, + 131.925, + 96.497, 115.348, 79.921, 31.876, @@ -29354,19 +29354,19 @@ 31.876, 31.876, 28.45, - 10.153, - 49.132, - 29.78, - 71.665, - 69.814, - 112.689, - 91.965, - 99.493, - 91.326, - 127.379, - 102.532, - 66.24, - 0.0, + 10.522, + 56.693, + 48.711, + 98.391, + 100.399, + 143.156, + 130.017, + 131.917, + 124.947, + 140.9, + 115.557, + 79.266, + 13.026, 31.876, 31.876, 31.876, @@ -29378,19 +29378,19 @@ 33.107, 33.107, 67.493, - 76.347, - 127.581, - 169.123, - 175.776, - 192.681, - 184.937, - 200.386, - 171.11, - 148.448, - 179.379, - 188.87, - 139.612, - 138.654, + 76.807, + 129.62, + 186.738, + 194.067, + 212.5, + 214.884, + 223.532, + 202.216, + 181.775, + 195.21, + 201.895, + 152.637, + 151.68, 152.061, 60.908, 33.107, @@ -29402,19 +29402,19 @@ 33.107, 33.107, 67.138, - 76.021, - 120.45, - 167.953, - 168.467, - 181.986, - 186.37, - 167.044, - 167.309, - 153.025, - 185.764, - 197.763, - 143.151, - 141.391, + 76.415, + 127.58, + 186.695, + 195.054, + 212.426, + 216.743, + 204.645, + 199.741, + 186.689, + 201.518, + 210.789, + 156.177, + 154.416, 154.606, 60.908, 33.107, @@ -29426,19 +29426,19 @@ 33.107, 33.107, 66.557, - 75.982, - 121.787, - 169.888, - 173.184, - 185.453, - 197.176, - 179.879, - 177.085, - 160.67, - 184.695, - 189.712, - 139.845, - 138.591, + 76.372, + 127.662, + 187.771, + 197.8, + 213.427, + 225.704, + 216.529, + 208.207, + 193.196, + 199.899, + 202.737, + 152.871, + 151.617, 151.877, 60.908, 33.107, @@ -29450,19 +29450,19 @@ 33.107, 33.107, 66.762, - 76.286, - 126.339, - 190.304, - 180.936, - 180.642, - 197.307, - 179.722, - 168.023, - 147.773, - 178.378, - 189.083, - 139.769, - 138.927, + 76.816, + 128.898, + 195.634, + 200.758, + 210.33, + 217.801, + 207.671, + 202.135, + 181.986, + 193.586, + 202.108, + 152.795, + 151.952, 152.122, 60.908, 33.107, @@ -29474,19 +29474,19 @@ 33.107, 33.107, 66.962, - 76.149, - 124.14, - 170.022, - 162.05, - 180.683, - 160.389, - 144.758, - 148.759, - 138.634, - 173.028, - 188.101, - 138.309, - 137.364, + 76.542, + 127.81, + 187.407, + 187.318, + 199.637, + 190.437, + 183.209, + 180.977, + 171.893, + 188.819, + 201.127, + 151.335, + 150.39, 150.879, 60.908, 33.107, @@ -29498,19 +29498,19 @@ 31.876, 31.876, 66.192, - 58.872, - 87.674, - 121.217, - 156.806, - 151.391, - 152.111, - 167.909, - 151.072, - 154.049, - 172.402, - 185.794, - 118.899, - 83.472, + 59.244, + 92.343, + 138.636, + 182.18, + 180.965, + 181.847, + 188.724, + 177.524, + 174.09, + 185.642, + 198.82, + 131.925, + 96.497, 115.348, 79.921, 31.876, @@ -29522,19 +29522,19 @@ 31.876, 31.876, 31.876, - 10.38, - 53.617, - 32.6, - 72.968, - 67.984, - 104.813, - 87.396, - 96.844, - 79.963, - 121.48, - 101.185, - 65.758, - 0.0, + 10.706, + 57.38, + 49.966, + 98.249, + 97.542, + 134.62, + 125.616, + 125.53, + 113.216, + 135.35, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -29546,19 +29546,19 @@ 33.107, 33.107, 71.776, - 77.224, - 120.674, - 165.852, - 152.739, - 159.599, - 193.191, - 177.864, - 169.301, - 156.672, - 172.836, - 185.953, - 137.34, - 136.667, + 77.545, + 127.836, + 185.034, + 180.404, + 191.415, + 216.158, + 202.598, + 191.778, + 179.005, + 186.246, + 198.979, + 150.366, + 149.693, 150.775, 60.908, 33.107, @@ -29570,19 +29570,19 @@ 31.876, 31.876, 31.876, - 10.331, - 50.406, - 29.799, - 71.042, - 83.08, - 127.14, - 108.148, - 108.965, - 89.647, - 119.176, - 101.204, - 65.758, - 0.0, + 10.653, + 57.105, + 48.6, + 97.965, + 106.721, + 153.519, + 146.51, + 142.569, + 124.817, + 136.408, + 114.229, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -29594,19 +29594,19 @@ 33.107, 33.107, 70.91, - 76.944, - 123.598, - 169.621, - 173.102, - 168.301, - 172.488, - 159.881, - 161.248, - 164.546, - 170.429, - 184.831, - 136.613, - 136.613, + 77.238, + 128.104, + 186.864, + 189.839, + 188.187, + 190.443, + 183.965, + 181.012, + 187.062, + 183.873, + 197.856, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -29618,19 +29618,19 @@ 33.107, 33.107, 71.064, - 77.299, - 127.188, - 191.091, - 186.883, - 174.253, - 165.418, - 184.54, - 189.439, - 159.309, - 198.471, - 184.831, - 136.613, - 136.613, + 77.777, + 129.455, + 194.907, + 193.775, + 191.003, + 187.129, + 193.45, + 194.666, + 179.971, + 202.192, + 203.533, + 149.638, + 149.638, 150.775, 60.908, 33.107, @@ -29642,19 +29642,19 @@ 33.107, 33.107, 71.135, - 77.484, - 126.345, - 185.837, - 186.851, - 190.527, - 190.865, - 194.536, - 192.486, - 186.764, - 202.619, + 77.736, + 128.678, + 193.35, + 193.761, + 194.901, + 194.989, + 195.802, + 195.357, + 192.24, + 202.853, 216.707, - 138.826, - 136.613, + 155.942, + 149.638, 150.775, 60.908, 33.107, @@ -29666,19 +29666,19 @@ 31.876, 31.876, 69.848, - 59.553, - 94.811, - 142.891, - 193.065, - 191.613, - 194.313, - 192.624, - 187.57, - 190.519, - 196.939, + 60.002, + 95.031, + 146.698, + 195.48, + 195.157, + 195.754, + 195.777, + 195.978, + 194.196, + 200.352, 216.707, - 123.493, - 83.472, + 139.443, + 96.497, 115.415, 80.182, 31.876, @@ -29690,19 +29690,19 @@ 31.876, 31.876, 31.876, - 10.476, - 58.723, - 53.52, - 110.529, - 107.055, - 142.385, - 143.156, - 144.507, - 106.705, - 122.403, - 101.185, - 65.758, - 0.0, + 10.838, + 59.941, + 57.99, + 112.078, + 111.297, + 146.711, + 146.89, + 147.191, + 125.189, + 135.735, + 114.211, + 78.784, + 13.026, 31.876, 31.876, 31.876, @@ -29714,30 +29714,30 @@ 33.107, 33.107, 70.664, - 76.731, - 125.92, - 171.82, - 156.858, - 149.846, - 169.957, - 158.114, - 136.59, - 136.946, - 161.182, - 184.831, - 136.613, - 136.613, + 77.09, + 128.211, + 187.975, + 181.994, + 179.546, + 189.3, + 184.428, + 169.921, + 165.391, + 179.79, + 197.856, + 149.638, + 149.638, 150.791, 60.908, 33.107, 33.107 ], - "annual_emissions_tonnes_NOx": 0.12, + "annual_emissions_tonnes_NOx": 0.13, "annual_emissions_tonnes_SO2": 0.03, - "annual_emissions_tonnes_PM25": 0.02, - "lifecycle_emissions_tonnes_NOx": 2.49, - "annual_emissions_tonnes_PM25_bau": 0.02, - "annual_energy_supplied_kwh": 797785.75, + "annual_emissions_tonnes_PM25": 0.03, + "lifecycle_emissions_tonnes_NOx": 2.84, + "annual_emissions_tonnes_PM25_bau": 0.03, + "annual_energy_supplied_kwh": 914721.13, "emissions_region": "California", "electric_to_storage_series_kw": [ 0.0, @@ -38501,7 +38501,7 @@ 0.0, 0.0 ], - "lifecycle_emissions_tonnes_NOx_bau": 2.76, + "lifecycle_emissions_tonnes_NOx_bau": 3.1, "electric_to_load_series_kw_bau": [ 31.876, 31.876, @@ -38510,16 +38510,16 @@ 32.388, 32.759, 32.725, - 10.146, - 41.525, - 28.973, - 73.373, - 69.052, - 104.056, - 107.237, - 114.31, - 125.354, - 145.91, + 11.65, + 60.99, + 60.206, + 112.996, + 113.11, + 148.575, + 148.548, + 148.445, + 148.264, + 151.43, 133.062, 97.634, 31.876, @@ -38534,16 +38534,16 @@ 33.107, 33.107, 71.869, - 76.823, - 110.87, - 164.811, - 156.526, - 152.141, - 151.67, - 155.096, - 162.125, - 173.175, - 199.052, + 78.307, + 130.6, + 196.463, + 196.647, + 196.763, + 196.802, + 196.771, + 196.669, + 196.489, + 199.587, 216.707, 168.489, 168.492, @@ -38558,16 +38558,16 @@ 33.107, 33.107, 71.547, - 76.807, - 121.189, - 164.898, - 155.813, - 150.929, - 150.382, - 153.514, - 160.763, - 172.072, - 193.643, + 78.285, + 131.154, + 196.807, + 196.683, + 196.781, + 196.823, + 196.796, + 196.691, + 196.507, + 199.656, 216.707, 168.518, 168.721, @@ -38582,16 +38582,16 @@ 33.107, 33.107, 71.658, - 74.126, - 111.068, - 164.505, - 156.04, - 151.706, - 151.269, - 154.443, - 161.541, - 172.53, - 193.732, + 78.318, + 130.979, + 196.474, + 196.658, + 196.774, + 196.812, + 196.784, + 196.682, + 196.501, + 199.655, 216.707, 168.489, 168.489, @@ -38606,16 +38606,16 @@ 33.107, 33.107, 71.407, - 76.824, - 112.404, - 166.654, - 158.325, - 153.885, - 153.465, - 164.036, - 174.443, - 173.723, - 197.149, + 78.284, + 131.563, + 197.567, + 197.654, + 197.651, + 197.69, + 197.583, + 197.439, + 197.122, + 200.095, 217.36, 169.265, 169.393, @@ -38630,16 +38630,16 @@ 32.841, 33.064, 71.197, - 59.958, - 77.055, - 118.171, - 169.093, - 168.973, - 162.487, - 156.079, - 162.663, - 173.102, - 193.492, + 61.634, + 96.093, + 148.389, + 196.527, + 196.574, + 196.661, + 196.762, + 196.667, + 196.496, + 199.659, 216.707, 150.775, 115.348, @@ -38654,16 +38654,16 @@ 32.031, 32.061, 32.114, - 7.541, - 41.815, - 30.009, - 74.929, - 70.393, - 105.072, - 107.783, - 114.509, - 125.135, - 145.134, + 11.406, + 60.187, + 59.666, + 112.986, + 113.101, + 148.568, + 148.546, + 148.449, + 148.275, + 151.445, 133.062, 97.634, 31.876, @@ -38678,16 +38678,16 @@ 33.107, 33.107, 71.587, - 74.226, - 111.449, - 164.632, - 155.679, - 150.716, - 150.094, - 153.235, - 160.127, - 171.403, - 192.356, + 78.31, + 130.999, + 196.483, + 196.662, + 196.788, + 196.83, + 196.804, + 196.706, + 196.522, + 199.677, 216.707, 168.489, 168.489, @@ -38702,16 +38702,16 @@ 33.107, 33.107, 71.617, - 76.634, - 120.208, - 165.212, - 156.928, - 152.356, - 151.776, - 154.647, - 161.366, - 171.982, - 192.037, + 78.052, + 130.449, + 196.463, + 196.648, + 196.767, + 196.807, + 196.784, + 196.688, + 196.515, + 199.682, 216.707, 168.489, 168.489, @@ -38726,16 +38726,16 @@ 33.107, 33.107, 71.299, - 76.0, - 111.395, - 165.776, - 163.073, - 165.13, - 159.851, - 170.596, - 171.947, - 182.539, - 197.979, + 77.906, + 130.386, + 196.461, + 196.596, + 197.305, + 197.995, + 197.794, + 197.771, + 197.602, + 200.494, 216.758, 168.489, 168.489, @@ -38750,16 +38750,16 @@ 33.107, 33.107, 71.17, - 77.717, - 128.784, - 185.827, - 160.01, - 154.823, - 162.632, - 164.904, - 162.557, - 175.027, - 192.049, + 78.026, + 130.702, + 196.328, + 196.623, + 196.741, + 196.669, + 196.646, + 196.674, + 196.473, + 199.684, 216.707, 168.489, 168.489, @@ -38774,16 +38774,16 @@ 33.107, 33.107, 71.145, - 73.983, - 111.928, - 166.125, - 157.566, - 152.838, - 152.183, - 155.23, - 161.802, - 172.17, - 191.388, + 77.775, + 130.349, + 196.463, + 196.648, + 196.766, + 196.806, + 196.78, + 196.687, + 196.517, + 199.694, 216.707, 168.489, 168.489, @@ -38798,16 +38798,16 @@ 31.876, 31.876, 69.872, - 56.099, - 76.397, - 118.114, - 158.33, - 154.552, - 156.51, - 162.981, - 171.736, - 178.325, - 191.519, + 60.022, + 94.934, + 148.243, + 196.641, + 197.576, + 200.443, + 204.329, + 206.706, + 202.725, + 199.721, 217.96, 150.775, 115.348, @@ -38822,16 +38822,16 @@ 31.876, 31.876, 31.876, - 7.108, - 40.218, - 28.45, - 73.304, - 79.374, - 120.515, - 122.922, - 122.819, - 132.738, - 140.855, + 11.331, + 59.464, + 59.683, + 113.157, + 116.692, + 153.331, + 152.992, + 152.981, + 152.493, + 150.114, 133.062, 97.634, 31.876, @@ -38846,16 +38846,16 @@ 31.876, 31.876, 31.876, - 9.229, - 42.369, - 30.617, - 84.638, - 78.706, - 126.733, - 107.941, - 133.785, - 146.085, - 146.688, + 11.337, + 60.275, + 59.683, + 112.899, + 113.008, + 148.302, + 148.549, + 148.189, + 147.972, + 147.958, 133.062, 97.656, 31.876, @@ -38870,16 +38870,16 @@ 33.107, 33.107, 72.055, - 74.597, - 112.944, - 166.805, - 158.043, - 153.08, - 152.129, - 154.738, - 161.136, - 171.756, - 187.166, + 78.414, + 130.61, + 196.46, + 196.647, + 196.766, + 196.811, + 196.791, + 196.701, + 196.529, + 196.283, 216.707, 168.489, 168.489, @@ -38894,16 +38894,16 @@ 33.107, 33.107, 72.113, - 74.712, - 113.8, - 168.306, - 160.083, - 154.808, - 162.635, - 156.202, - 162.376, - 172.633, - 187.668, + 78.698, + 131.543, + 197.427, + 197.605, + 197.265, + 197.109, + 197.248, + 197.268, + 197.123, + 196.995, 217.648, 169.581, 169.609, @@ -38918,16 +38918,16 @@ 33.158, 33.216, 72.404, - 75.408, - 116.712, - 178.189, - 165.713, - 161.745, - 162.104, - 173.07, - 174.753, - 186.099, - 194.847, + 78.594, + 130.628, + 196.397, + 196.574, + 196.667, + 196.687, + 196.552, + 196.516, + 196.331, + 196.177, 216.707, 168.489, 168.489, @@ -38942,16 +38942,16 @@ 33.107, 33.107, 71.35, - 74.335, - 127.414, - 184.967, - 177.724, - 178.699, - 152.873, - 155.245, - 175.59, - 179.604, - 194.858, + 77.819, + 130.31, + 196.343, + 196.456, + 196.467, + 196.806, + 196.788, + 196.505, + 196.423, + 196.177, 216.707, 168.489, 168.489, @@ -38966,16 +38966,16 @@ 32.265, 32.304, 70.631, - 56.457, - 77.094, - 117.755, - 157.438, - 152.415, - 177.371, - 192.296, - 190.602, - 195.597, - 195.343, + 60.589, + 95.256, + 148.254, + 196.66, + 196.781, + 196.494, + 196.233, + 196.267, + 196.161, + 196.167, 216.707, 150.775, 115.348, @@ -38990,16 +38990,16 @@ 32.412, 32.572, 32.831, - 10.055, - 51.349, - 36.205, - 81.324, - 78.706, - 112.528, - 120.364, - 126.632, - 127.579, - 137.425, + 11.885, + 60.462, + 59.661, + 112.944, + 113.023, + 148.492, + 148.398, + 148.301, + 148.262, + 148.094, 133.062, 97.634, 31.876, @@ -39014,16 +39014,16 @@ 33.244, 33.107, 71.731, - 73.573, - 111.639, - 166.066, - 157.783, - 152.731, - 151.62, - 154.277, - 160.439, - 170.424, - 185.603, + 78.278, + 130.552, + 196.479, + 196.662, + 196.782, + 196.828, + 196.807, + 196.723, + 196.559, + 196.313, 216.707, 168.489, 168.489, @@ -39038,16 +39038,16 @@ 33.252, 33.274, 71.623, - 73.606, - 112.395, - 166.604, - 169.236, - 161.993, - 165.53, - 167.439, - 169.57, - 179.337, - 193.207, + 78.109, + 130.518, + 196.473, + 196.554, + 196.727, + 196.976, + 196.939, + 196.911, + 196.743, + 196.501, 216.721, 168.489, 168.489, @@ -39062,16 +39062,16 @@ 33.107, 33.107, 71.536, - 76.545, - 121.687, - 185.447, - 181.948, - 184.344, - 182.907, - 194.994, - 211.99, - 211.583, - 203.772, + 77.728, + 130.334, + 196.34, + 198.494, + 201.295, + 200.969, + 210.208, + 217.541, + 214.505, + 204.91, 216.414, 170.607, 170.495, @@ -39087,15 +39087,15 @@ 33.107, 67.007, 77.277, - 126.662, - 186.5, - 191.407, - 200.792, - 223.928, - 187.335, - 198.354, - 210.15, - 218.195, + 130.293, + 196.328, + 198.209, + 212.217, + 224.263, + 231.786, + 236.225, + 237.063, + 229.409, 235.345, 180.247, 171.697, @@ -39110,16 +39110,16 @@ 33.107, 33.107, 66.525, - 72.693, - 118.388, - 172.71, - 202.296, - 185.662, - 198.516, - 213.774, - 239.543, - 203.15, - 203.593, + 77.112, + 130.345, + 196.557, + 203.99, + 219.14, + 232.143, + 241.589, + 240.383, + 228.461, + 212.878, 224.624, 179.883, 173.853, @@ -39134,16 +39134,16 @@ 31.876, 31.876, 65.393, - 54.128, - 74.466, - 114.337, - 152.856, - 158.744, - 176.265, - 179.695, - 180.883, - 183.452, - 188.863, + 59.458, + 94.93, + 148.307, + 196.729, + 206.593, + 225.181, + 226.994, + 221.778, + 213.01, + 202.064, 215.369, 151.001, 115.348, @@ -39158,16 +39158,16 @@ 31.876, 31.876, 28.45, - 5.245, - 38.796, - 26.095, - 70.258, - 68.161, - 103.516, - 105.966, - 112.458, - 122.061, - 136.158, + 11.335, + 59.643, + 59.735, + 113.126, + 115.759, + 152.216, + 152.171, + 152.041, + 150.945, + 149.372, 129.635, 97.634, 31.876, @@ -39182,16 +39182,16 @@ 33.107, 33.107, 67.545, - 71.65, - 109.899, - 163.81, - 155.476, - 151.132, - 150.446, - 162.734, - 164.383, - 180.077, - 191.615, + 77.738, + 130.413, + 196.517, + 196.707, + 196.82, + 196.862, + 196.701, + 196.674, + 196.431, + 196.233, 213.281, 168.489, 168.489, @@ -39206,16 +39206,16 @@ 33.107, 33.107, 68.015, - 75.73, - 111.313, - 164.788, - 163.067, - 159.332, - 159.133, - 162.54, - 167.393, - 175.74, - 189.655, + 78.109, + 130.825, + 196.509, + 196.621, + 196.713, + 196.743, + 196.707, + 196.637, + 196.499, + 196.264, 213.281, 168.489, 168.489, @@ -39231,15 +39231,15 @@ 33.107, 68.134, 78.18, - 129.208, - 180.864, - 171.122, - 149.231, - 148.057, - 150.45, - 156.917, - 167.386, - 184.988, + 130.871, + 196.41, + 196.547, + 196.846, + 196.899, + 196.882, + 196.795, + 196.626, + 196.338, 213.281, 168.489, 168.489, @@ -39254,16 +39254,16 @@ 33.107, 33.107, 67.59, - 73.013, - 112.614, - 166.02, - 157.552, - 152.892, - 151.363, - 153.322, - 158.804, - 168.699, - 184.037, + 77.949, + 130.883, + 196.599, + 196.694, + 196.804, + 196.855, + 196.843, + 196.768, + 196.61, + 196.354, 213.281, 168.489, 168.489, @@ -39278,16 +39278,16 @@ 33.107, 33.107, 67.73, - 71.441, - 109.972, - 163.078, - 160.899, - 157.891, - 159.393, - 151.299, - 157.632, - 167.374, - 181.833, + 78.01, + 130.974, + 196.803, + 196.676, + 196.738, + 196.745, + 196.877, + 196.789, + 196.632, + 196.39, 213.281, 168.604, 168.804, @@ -39302,16 +39302,16 @@ 31.876, 32.006, 67.647, - 53.758, - 74.22, - 114.865, - 154.539, - 149.887, - 149.034, - 151.72, - 157.673, - 167.348, - 181.623, + 60.833, + 95.327, + 148.319, + 196.731, + 196.846, + 196.891, + 196.87, + 196.789, + 196.634, + 196.395, 209.854, 150.775, 115.348, @@ -39326,16 +39326,16 @@ 31.876, 31.949, 28.668, - 4.767, - 40.027, - 27.219, - 71.599, - 66.975, - 101.431, - 104.117, - 110.092, - 119.686, - 133.829, + 11.548, + 60.338, + 59.764, + 113.076, + 113.189, + 148.663, + 148.643, + 148.562, + 148.408, + 148.171, 126.209, 97.634, 31.876, @@ -39350,16 +39350,16 @@ 33.107, 33.107, 68.128, - 75.833, - 119.117, - 175.863, - 163.889, - 160.073, - 162.248, - 167.198, - 168.124, - 178.969, - 190.54, + 78.034, + 130.649, + 196.443, + 196.625, + 196.715, + 196.712, + 196.652, + 196.633, + 196.457, + 196.255, 209.854, 168.489, 168.489, @@ -39374,16 +39374,16 @@ 33.107, 33.107, 67.707, - 71.074, - 110.963, - 165.09, - 156.441, - 151.49, - 150.06, - 159.083, - 165.109, - 173.006, - 186.741, + 78.021, + 130.902, + 196.529, + 196.716, + 196.83, + 196.882, + 196.763, + 196.677, + 196.549, + 196.317, 209.854, 168.489, 168.489, @@ -39398,16 +39398,16 @@ 33.107, 33.107, 67.924, - 73.819, - 115.459, - 172.049, - 165.207, - 157.815, - 164.724, - 166.403, - 172.634, - 174.9, - 187.706, + 78.058, + 130.686, + 196.477, + 196.626, + 196.754, + 196.69, + 196.669, + 196.571, + 196.524, + 196.304, 209.854, 168.489, 168.489, @@ -39422,16 +39422,16 @@ 33.107, 33.107, 64.02, - 74.058, - 120.6, - 175.891, - 173.892, - 177.284, - 164.512, - 162.41, - 175.667, - 178.456, - 190.76, + 77.873, + 130.93, + 196.655, + 196.526, + 196.5, + 196.691, + 196.724, + 196.527, + 196.47, + 196.254, 209.854, 168.489, 168.489, @@ -39446,15 +39446,15 @@ 33.107, 33.107, 64.812, - 71.841, - 116.133, - 172.388, - 169.399, - 161.909, - 185.844, - 185.505, - 193.317, - 195.191, + 78.39, + 130.767, + 196.478, + 196.579, + 196.702, + 196.363, + 197.247, + 200.009, + 200.763, 199.787, 211.431, 168.632, @@ -39470,16 +39470,16 @@ 31.876, 31.876, 62.819, - 58.264, - 84.806, - 142.506, - 192.405, - 184.637, - 185.877, - 182.456, - 187.159, - 192.374, - 208.952, + 59.761, + 94.939, + 148.137, + 204.765, + 215.887, + 215.28, + 215.074, + 214.921, + 214.474, + 212.375, 218.694, 153.011, 116.124, @@ -39495,15 +39495,15 @@ 31.876, 25.024, 11.318, - 39.285, - 26.85, - 71.321, - 67.055, - 102.493, - 107.099, - 115.479, - 126.844, - 139.606, + 59.537, + 59.77, + 113.379, + 114.454, + 151.384, + 153.43, + 155.91, + 156.884, + 154.65, 128.388, 97.684, 31.876, @@ -39518,16 +39518,16 @@ 33.107, 33.107, 63.44, - 70.164, - 110.338, - 180.913, - 176.378, - 183.004, - 192.1, - 202.005, - 202.357, - 206.485, - 224.778, + 77.166, + 130.405, + 202.957, + 217.955, + 229.857, + 240.157, + 248.288, + 242.398, + 236.214, + 225.753, 224.907, 172.008, 170.842, @@ -39542,16 +39542,16 @@ 33.107, 33.107, 63.389, - 69.511, - 109.151, - 163.333, - 190.19, - 180.36, - 176.61, - 174.764, - 180.568, - 196.381, - 201.007, + 77.144, + 130.406, + 197.35, + 209.928, + 228.432, + 226.111, + 222.026, + 221.833, + 220.547, + 216.695, 215.655, 171.592, 170.477, @@ -39566,16 +39566,16 @@ 33.107, 33.107, 63.537, - 69.149, - 108.372, - 161.766, - 152.536, - 147.861, - 147.264, - 150.029, - 156.269, - 166.129, - 180.646, + 77.281, + 130.411, + 196.59, + 196.789, + 196.908, + 197.443, + 198.202, + 198.079, + 197.846, + 197.476, 207.114, 168.635, 168.489, @@ -39590,16 +39590,16 @@ 33.107, 33.107, 63.558, - 74.007, - 108.265, - 162.138, - 153.86, - 149.256, - 148.245, - 150.931, - 156.962, - 166.526, - 180.252, + 77.553, + 130.583, + 196.587, + 196.773, + 196.883, + 196.929, + 196.908, + 196.825, + 196.675, + 196.441, 206.428, 168.489, 168.489, @@ -39614,16 +39614,16 @@ 33.107, 33.107, 64.161, - 69.586, - 109.308, - 162.887, - 154.302, - 149.614, - 148.465, - 150.857, - 156.758, - 166.389, - 180.773, + 77.871, + 130.837, + 196.632, + 196.766, + 196.949, + 197.115, + 197.132, + 196.941, + 196.819, + 196.767, 206.818, 168.947, 169.073, @@ -39638,16 +39638,16 @@ 31.876, 31.876, 64.059, - 52.742, - 74.139, - 114.339, - 153.828, - 149.174, - 148.248, - 150.758, - 156.959, - 171.674, - 192.779, + 60.907, + 95.824, + 148.405, + 196.776, + 196.887, + 196.932, + 196.915, + 196.829, + 196.594, + 196.221, 206.428, 150.775, 115.348, @@ -39662,16 +39662,16 @@ 31.876, 31.876, 25.024, - 8.097, - 45.786, - 39.497, - 85.527, - 88.999, - 133.364, - 118.747, - 118.632, - 125.524, - 137.306, + 11.372, + 60.35, + 59.805, + 112.954, + 112.93, + 148.228, + 148.459, + 148.459, + 148.344, + 148.137, 122.783, 97.634, 31.876, @@ -39687,16 +39687,16 @@ 31.876, 21.597, 11.318, - 58.866, - 58.668, - 110.991, - 106.492, - 112.123, - 117.437, - 108.176, - 117.655, - 131.725, - 122.304, + 60.727, + 60.143, + 112.947, + 113.228, + 149.182, + 148.72, + 148.627, + 148.479, + 148.237, + 122.833, 97.901, 31.876, 31.876, @@ -39710,17 +39710,17 @@ 33.723, 33.906, 62.098, - 70.052, - 108.683, - 162.338, - 154.047, - 149.294, - 148.029, - 150.161, - 155.673, - 165.443, - 179.197, - 205.65, + 78.683, + 130.943, + 196.603, + 196.788, + 196.898, + 196.947, + 196.934, + 196.858, + 196.705, + 196.47, + 206.446, 168.489, 168.489, 150.775, @@ -39734,17 +39734,17 @@ 33.407, 33.466, 61.664, - 69.673, - 108.822, - 163.409, - 155.398, - 150.23, - 148.507, - 150.252, - 155.709, - 165.085, - 178.92, - 205.469, + 78.136, + 130.57, + 196.597, + 196.773, + 196.886, + 196.941, + 196.934, + 196.86, + 196.713, + 196.478, + 206.451, 168.489, 168.489, 150.775, @@ -39758,17 +39758,17 @@ 33.107, 33.107, 61.069, - 69.45, - 121.906, - 187.399, - 189.998, - 165.708, - 159.148, - 161.825, - 169.239, - 175.053, - 185.809, - 206.291, + 77.994, + 130.619, + 196.33, + 196.281, + 196.69, + 196.798, + 196.767, + 196.65, + 196.549, + 196.354, + 206.431, 168.489, 168.489, 150.775, @@ -39782,17 +39782,17 @@ 33.107, 33.107, 61.098, - 68.025, - 105.853, - 158.549, - 149.447, - 146.265, - 145.046, - 145.291, - 151.22, - 161.581, - 176.759, - 205.896, + 77.824, + 130.744, + 196.661, + 196.859, + 196.982, + 197.038, + 197.027, + 196.943, + 196.782, + 196.523, + 206.44, 168.489, 168.489, 150.775, @@ -39806,17 +39806,17 @@ 31.876, 31.876, 59.852, - 50.252, - 70.644, - 111.497, - 151.376, - 147.564, - 147.346, - 150.383, - 155.703, - 164.227, - 177.696, - 202.446, + 60.1, + 95.074, + 148.432, + 196.834, + 196.933, + 196.967, + 196.94, + 196.867, + 196.735, + 196.507, + 203.014, 150.775, 115.348, 115.348, @@ -39830,17 +39830,17 @@ 31.876, 31.876, 21.597, - 1.908, - 36.389, - 23.654, - 67.851, - 63.299, - 97.626, - 111.154, - 140.571, - 145.631, - 144.152, - 118.123, + 11.358, + 59.95, + 59.858, + 113.189, + 113.306, + 148.784, + 148.586, + 148.094, + 147.999, + 148.021, + 119.387, 97.634, 31.876, 31.876, @@ -39854,17 +39854,17 @@ 33.107, 33.107, 61.03, - 68.449, - 106.999, - 160.949, - 152.333, - 147.349, - 146.058, - 148.34, - 154.151, - 163.728, - 177.961, - 201.26, + 77.857, + 130.558, + 196.644, + 196.826, + 196.941, + 196.992, + 196.977, + 196.899, + 196.749, + 196.507, + 203.044, 168.489, 168.489, 150.775, @@ -39878,17 +39878,17 @@ 33.179, 33.342, 58.029, - 77.686, - 105.694, - 158.615, - 158.831, - 156.868, - 144.915, - 145.401, - 151.761, - 193.179, - 192.558, - 202.837, + 77.983, + 130.566, + 196.676, + 196.747, + 196.813, + 197.045, + 197.03, + 196.944, + 196.214, + 196.227, + 203.006, 168.489, 168.489, 150.775, @@ -39902,17 +39902,17 @@ 33.107, 33.252, 58.042, - 67.66, - 105.082, - 157.896, - 149.097, - 145.894, - 144.746, - 145.021, - 151.203, - 161.371, - 195.672, - 201.81, + 78.255, + 130.845, + 196.689, + 196.879, + 196.999, + 197.052, + 197.04, + 196.956, + 196.798, + 196.16, + 203.03, 168.489, 168.489, 150.775, @@ -39926,16 +39926,16 @@ 33.107, 33.107, 58.026, - 76.187, - 114.292, - 181.4, - 175.513, - 165.643, - 191.225, - 165.798, - 176.957, - 190.391, - 187.718, + 78.094, + 130.593, + 196.427, + 196.538, + 196.702, + 196.255, + 196.719, + 196.531, + 196.273, + 196.324, 203.002, 168.489, 168.489, @@ -39950,16 +39950,16 @@ 33.107, 33.107, 56.95, - 73.435, - 115.051, - 175.335, - 169.175, - 161.339, - 166.117, - 167.702, - 176.01, - 182.35, - 190.06, + 77.698, + 130.625, + 196.509, + 196.628, + 196.761, + 196.706, + 196.686, + 196.543, + 196.429, + 196.278, 203.002, 168.489, 168.489, @@ -39973,18 +39973,18 @@ 31.876, 31.876, 31.876, - 55.984, - 54.063, - 79.235, - 122.152, - 159.12, - 157.698, - 161.879, - 170.238, - 185.516, - 192.054, - 198.614, - 205.691, + 56.046, + 59.92, + 95.052, + 148.348, + 196.75, + 197.259, + 200.233, + 214.368, + 218.975, + 211.964, + 207.006, + 205.992, 151.286, 115.348, 115.348, @@ -39997,18 +39997,18 @@ 31.876, 31.876, 31.876, - 17.809, - 1.107, - 35.444, - 33.438, - 78.013, - 83.343, - 129.258, - 137.558, - 140.693, - 137.065, - 141.779, - 117.626, + 18.179, + 11.381, + 59.776, + 59.785, + 113.99, + 122.652, + 170.732, + 169.545, + 169.05, + 168.901, + 160.03, + 119.903, 97.634, 31.876, 31.876, @@ -40021,18 +40021,18 @@ 33.107, 33.107, 33.107, - 56.037, - 66.946, - 106.346, - 161.341, - 153.6, - 164.286, - 147.836, - 149.877, - 162.758, - 165.001, - 187.372, - 200.839, + 56.519, + 77.55, + 130.827, + 196.814, + 196.856, + 196.717, + 196.981, + 196.97, + 196.769, + 196.743, + 196.333, + 203.157, 168.779, 168.949, 151.312, @@ -40045,18 +40045,18 @@ 33.107, 33.107, 33.107, - 57.598, - 72.184, - 115.569, - 174.931, - 153.264, - 148.88, - 157.301, - 149.406, - 155.322, - 165.031, - 178.25, - 200.546, + 57.79, + 78.463, + 131.278, + 196.658, + 196.832, + 196.94, + 196.838, + 196.981, + 196.898, + 196.745, + 196.52, + 203.066, 168.489, 168.513, 150.902, @@ -40069,18 +40069,18 @@ 33.107, 33.107, 33.107, - 53.223, - 66.672, - 105.028, - 158.636, - 158.564, - 155.563, - 159.037, - 159.014, - 160.452, - 170.411, - 176.902, - 202.469, + 53.922, + 77.918, + 130.949, + 196.753, + 196.769, + 196.847, + 196.82, + 196.827, + 196.811, + 196.649, + 196.55, + 203.014, 168.489, 168.489, 150.775, @@ -40093,18 +40093,18 @@ 33.107, 33.107, 33.107, - 52.757, - 65.465, - 103.48, - 157.188, - 149.198, - 145.757, - 144.918, - 147.239, - 153.228, - 162.866, - 180.813, - 197.527, + 53.689, + 77.532, + 130.547, + 196.731, + 196.902, + 197.006, + 197.044, + 197.023, + 196.942, + 196.79, + 196.47, + 199.628, 168.489, 168.489, 150.775, @@ -40117,18 +40117,18 @@ 33.107, 33.107, 33.107, - 52.746, - 68.16, - 104.716, - 158.877, - 151.255, - 147.656, - 148.037, - 151.482, - 156.402, - 171.847, - 181.752, - 196.633, + 53.267, + 77.524, + 130.659, + 196.712, + 196.874, + 196.967, + 196.987, + 196.95, + 196.883, + 196.624, + 196.452, + 199.654, 168.489, 168.489, 150.775, @@ -40141,18 +40141,18 @@ 31.876, 31.876, 31.876, - 51.44, - 48.23, - 74.952, - 110.758, - 151.106, - 146.817, - 146.106, - 148.442, - 154.59, - 164.035, - 177.402, - 196.28, + 52.46, + 59.998, + 95.364, + 148.5, + 196.879, + 196.982, + 197.021, + 197.006, + 196.92, + 196.772, + 196.546, + 199.664, 150.775, 115.348, 115.348, @@ -40165,18 +40165,18 @@ 31.876, 31.876, 31.876, - 13.668, - 51.884, - 40.496, - 73.674, - 74.005, - 109.55, - 105.34, - 112.119, - 115.806, - 126.734, - 98.704, - 78.274, + 14.755, + 60.196, + 59.73, + 113.095, + 113.148, + 148.605, + 148.692, + 148.6, + 148.543, + 148.355, + 112.797, + 80.561, 31.876, 31.876, 31.876, @@ -40189,18 +40189,18 @@ 33.107, 33.107, 70.58, - 79.769, - 118.269, - 169.405, - 157.447, - 149.398, - 145.536, - 144.657, - 147.384, - 153.608, - 163.238, - 176.89, - 147.643, + 81.062, + 130.623, + 196.5, + 196.743, + 196.911, + 197.016, + 197.056, + 197.03, + 196.944, + 196.792, + 196.561, + 151.459, 168.489, 150.775, 60.908, @@ -40213,18 +40213,18 @@ 33.107, 33.107, 71.114, - 79.977, - 118.457, - 169.717, - 158.005, - 150.132, - 145.756, - 144.694, - 147.285, - 153.514, - 163.004, - 176.533, - 147.265, + 81.41, + 130.861, + 196.594, + 196.736, + 196.904, + 197.008, + 197.055, + 197.035, + 196.948, + 196.798, + 196.57, + 151.472, 168.489, 150.775, 60.908, @@ -40237,18 +40237,18 @@ 33.107, 33.107, 71.056, - 79.69, - 117.905, - 169.315, - 158.232, - 151.291, - 147.333, - 146.535, - 148.678, - 154.213, - 163.426, - 176.662, - 147.182, + 81.357, + 130.739, + 196.546, + 196.74, + 196.889, + 196.985, + 197.025, + 197.011, + 196.937, + 196.792, + 196.57, + 151.475, 168.489, 150.775, 60.908, @@ -40261,18 +40261,18 @@ 33.107, 33.107, 71.766, - 76.754, - 118.24, - 168.9, - 157.235, - 149.28, - 145.372, - 144.7, - 147.314, - 153.797, - 163.42, - 176.717, - 147.274, + 78.497, + 131.15, + 196.608, + 196.757, + 196.922, + 197.023, + 197.059, + 197.038, + 196.947, + 196.794, + 196.57, + 151.472, 168.489, 150.775, 60.908, @@ -40285,18 +40285,18 @@ 33.107, 33.107, 71.75, - 76.625, - 118.384, - 170.036, - 159.815, - 152.682, - 149.376, - 147.62, - 149.338, - 154.597, - 163.406, - 176.305, - 146.868, + 78.449, + 131.024, + 196.53, + 196.722, + 196.872, + 196.956, + 197.01, + 197.003, + 196.933, + 196.796, + 196.582, + 151.487, 168.489, 150.775, 60.908, @@ -40309,18 +40309,18 @@ 31.876, 31.876, 69.962, - 58.393, - 81.749, - 119.743, - 156.347, - 148.37, - 144.844, - 143.899, - 145.764, - 151.82, - 165.341, - 181.662, - 130.334, + 60.426, + 95.396, + 148.316, + 196.774, + 196.94, + 197.048, + 197.091, + 197.071, + 196.989, + 196.762, + 196.465, + 133.735, 115.348, 115.348, 79.921, @@ -40333,18 +40333,18 @@ 31.876, 31.876, 31.876, - 9.108, - 46.107, - 30.582, - 71.741, - 64.035, - 96.459, - 95.758, - 98.378, - 104.348, - 113.909, - 91.69, - 75.473, + 11.338, + 60.255, + 59.942, + 113.148, + 113.311, + 148.838, + 148.87, + 148.84, + 148.759, + 148.609, + 112.962, + 80.65, 31.876, 31.876, 31.876, @@ -40357,18 +40357,18 @@ 33.107, 33.107, 71.432, - 75.944, - 116.662, - 167.221, - 155.685, - 148.022, - 144.753, - 144.071, - 147.297, - 153.736, - 163.022, - 175.862, - 146.437, + 78.206, + 130.917, + 196.564, + 196.791, + 196.953, + 197.052, + 197.084, + 197.048, + 196.956, + 196.809, + 196.597, + 151.502, 168.489, 150.775, 60.908, @@ -40381,18 +40381,18 @@ 33.107, 33.107, 71.716, - 77.033, - 122.007, - 178.478, - 160.444, - 155.282, - 156.155, - 155.894, - 157.354, - 166.75, - 163.693, - 176.439, - 143.281, + 78.455, + 131.152, + 196.561, + 196.723, + 196.842, + 196.862, + 196.884, + 196.873, + 196.724, + 196.798, + 196.587, + 148.066, 168.489, 150.775, 60.908, @@ -40405,18 +40405,18 @@ 33.107, 33.107, 71.388, - 75.879, - 117.639, - 169.363, - 158.665, - 151.629, - 147.473, - 146.235, - 148.215, - 154.216, - 164.171, - 177.57, - 144.174, + 78.234, + 131.214, + 196.858, + 197.185, + 197.514, + 197.675, + 197.39, + 197.037, + 196.952, + 197.175, + 197.148, + 148.554, 169.243, 151.676, 60.908, @@ -40429,18 +40429,18 @@ 34.179, 34.375, 69.002, - 76.833, - 118.203, - 169.897, - 159.201, - 153.209, - 149.682, - 147.881, - 149.214, - 154.362, - 163.587, - 176.626, - 143.307, + 79.387, + 131.794, + 196.997, + 196.749, + 196.88, + 196.966, + 197.02, + 197.02, + 196.951, + 196.806, + 196.587, + 148.066, 168.489, 150.775, 60.908, @@ -40453,18 +40453,18 @@ 33.107, 33.107, 68.216, - 75.78, - 117.091, - 175.035, - 167.258, - 153.471, - 155.208, - 155.538, - 159.097, - 161.133, - 164.802, - 182.67, - 144.909, + 78.428, + 131.086, + 196.542, + 196.643, + 196.875, + 196.882, + 196.896, + 196.849, + 196.828, + 196.783, + 196.45, + 148.012, 168.489, 150.809, 60.908, @@ -40477,18 +40477,18 @@ 31.876, 31.876, 66.844, - 58.005, - 82.005, - 127.204, - 163.043, - 150.976, - 147.386, - 147.131, - 150.166, - 167.107, - 168.586, - 181.945, - 125.945, + 60.639, + 95.728, + 148.353, + 196.705, + 196.92, + 197.009, + 197.036, + 197.007, + 196.723, + 196.708, + 196.467, + 130.34, 115.348, 115.348, 79.955, @@ -40501,18 +40501,18 @@ 31.876, 31.876, 28.45, - 8.618, - 46.757, - 32.607, - 75.144, - 66.847, - 97.898, - 96.973, - 105.73, - 106.299, - 115.523, - 93.174, - 72.486, + 11.35, + 60.697, + 59.888, + 113.117, + 113.285, + 148.815, + 148.858, + 148.818, + 149.013, + 148.87, + 112.943, + 77.21, 31.876, 31.876, 31.876, @@ -40525,18 +40525,18 @@ 33.107, 33.107, 67.626, - 74.903, - 115.743, - 167.096, - 155.996, - 152.135, - 151.263, - 192.192, - 173.672, - 172.626, - 183.186, - 191.715, - 144.376, + 77.888, + 130.658, + 196.579, + 197.065, + 201.322, + 204.239, + 204.189, + 204.608, + 204.398, + 203.862, + 199.449, + 149.361, 168.633, 150.775, 60.908, @@ -40549,18 +40549,18 @@ 33.107, 33.107, 67.543, - 74.828, - 115.713, - 167.079, - 156.205, - 149.311, - 145.597, - 144.286, - 146.912, - 152.94, - 162.713, - 188.04, - 142.818, + 77.903, + 130.87, + 196.603, + 196.805, + 196.954, + 197.047, + 197.094, + 197.075, + 196.99, + 196.835, + 196.329, + 148.084, 168.489, 150.775, 60.908, @@ -40573,18 +40573,18 @@ 33.107, 33.107, 67.544, - 74.725, - 115.806, - 168.274, - 158.302, - 153.828, - 167.969, - 170.145, - 172.8, - 174.42, - 173.575, - 180.683, - 144.173, + 77.924, + 130.714, + 196.576, + 196.778, + 198.927, + 210.564, + 213.377, + 212.973, + 212.232, + 205.259, + 199.683, + 149.203, 168.584, 150.775, 60.908, @@ -40597,18 +40597,18 @@ 33.107, 33.107, 67.492, - 74.686, - 120.79, - 175.587, - 158.792, - 157.428, - 162.995, - 175.474, - 173.619, - 172.698, - 183.301, - 196.648, - 149.323, + 77.82, + 130.539, + 196.498, + 196.804, + 203.627, + 211.455, + 213.586, + 214.584, + 214.991, + 213.729, + 209.394, + 152.138, 170.015, 151.616, 60.908, @@ -40621,18 +40621,18 @@ 33.107, 33.107, 63.478, - 74.024, - 113.665, - 164.915, - 154.357, - 158.4, - 171.277, - 178.37, - 179.033, - 178.47, - 181.674, - 189.835, - 146.659, + 77.42, + 130.426, + 196.625, + 197.451, + 209.216, + 224.965, + 232.861, + 231.306, + 224.337, + 217.51, + 211.883, + 152.945, 169.595, 151.14, 60.908, @@ -40645,18 +40645,18 @@ 31.876, 31.876, 62.392, - 56.328, - 79.154, - 118.413, - 167.391, - 175.767, - 177.567, - 175.643, - 180.177, - 190.364, - 197.094, - 220.925, - 136.194, + 59.709, + 94.986, + 148.411, + 208.4, + 224.603, + 230.635, + 229.653, + 231.912, + 235.915, + 232.521, + 221.208, + 136.327, 116.045, 115.348, 79.921, @@ -40669,18 +40669,18 @@ 31.876, 31.876, 25.024, - 7.661, - 42.958, - 27.627, - 69.393, - 61.656, - 94.655, - 93.903, - 95.487, - 102.236, - 112.194, - 90.709, - 70.926, + 11.353, + 60.151, + 59.972, + 113.227, + 113.389, + 148.921, + 148.956, + 148.93, + 148.835, + 148.677, + 113.018, + 77.271, 31.876, 31.876, 31.876, @@ -40693,18 +40693,18 @@ 33.107, 33.107, 64.441, - 74.529, - 114.134, - 165.368, - 154.636, - 147.677, - 144.264, - 144.333, - 155.595, - 153.105, - 162.427, - 175.269, - 141.829, + 78.148, + 131.03, + 196.681, + 196.847, + 196.996, + 197.083, + 197.108, + 196.931, + 196.999, + 196.852, + 196.642, + 148.125, 165.063, 150.775, 60.908, @@ -40717,18 +40717,18 @@ 33.107, 33.107, 64.438, - 74.29, - 114.879, - 171.847, - 164.918, - 152.867, - 148.758, - 147.221, - 149.068, - 154.285, - 163.471, - 175.973, - 142.159, + 78.093, + 130.929, + 196.565, + 196.695, + 196.911, + 197.006, + 197.057, + 197.049, + 196.979, + 196.834, + 196.627, + 148.111, 165.063, 150.775, 60.908, @@ -40741,18 +40741,18 @@ 33.107, 33.107, 64.356, - 73.924, - 114.185, - 175.529, - 162.47, - 149.322, - 145.039, - 144.012, - 146.486, - 152.5, - 161.858, - 175.138, - 141.832, + 78.035, + 130.844, + 196.514, + 196.736, + 196.975, + 197.075, + 197.119, + 197.101, + 197.018, + 196.87, + 196.65, + 148.122, 165.063, 150.775, 60.908, @@ -40765,18 +40765,18 @@ 33.107, 33.107, 64.303, - 73.704, - 113.359, - 164.465, - 153.372, - 146.208, - 143.065, - 142.187, - 144.213, - 150.782, - 175.225, - 175.165, - 141.841, + 78.005, + 130.94, + 196.68, + 196.876, + 197.032, + 197.13, + 197.171, + 197.146, + 197.054, + 196.595, + 196.647, + 148.119, 165.063, 150.775, 60.908, @@ -40789,18 +40789,18 @@ 33.107, 33.107, 60.61, - 73.292, - 112.747, - 164.176, - 153.231, - 145.555, - 142.928, - 142.257, - 144.92, - 151.422, - 161.395, - 175.063, - 141.64, + 77.849, + 130.753, + 196.664, + 196.883, + 197.042, + 197.136, + 197.167, + 197.136, + 197.042, + 196.883, + 196.652, + 148.128, 165.063, 150.775, 60.908, @@ -40813,18 +40813,18 @@ 31.876, 31.876, 59.181, - 55.492, - 77.263, - 116.298, - 154.158, - 147.551, - 144.446, - 144.65, - 147.627, - 153.501, - 162.55, - 175.408, - 124.052, + 60.007, + 95.239, + 148.444, + 196.869, + 197.013, + 197.093, + 197.113, + 197.083, + 197.12, + 197.224, + 196.997, + 130.678, 111.994, 115.348, 79.921, @@ -40837,18 +40837,18 @@ 31.876, 31.876, 21.597, - 7.582, - 42.476, - 29.485, - 74.925, - 80.255, - 119.948, - 117.909, - 120.298, - 126.999, - 135.268, - 100.984, - 72.306, + 11.376, + 59.717, + 59.85, + 115.49, + 127.945, + 171.707, + 170.289, + 170.043, + 170.396, + 168.898, + 121.998, + 78.707, 28.45, 31.876, 31.876, @@ -40861,18 +40861,18 @@ 33.107, 33.107, 60.012, - 72.832, - 113.074, - 165.991, - 156.862, - 154.072, - 149.893, - 148.884, - 151.393, - 157.514, - 167.268, - 181.977, - 143.789, + 77.413, + 130.481, + 196.644, + 197.84, + 202.074, + 202.07, + 202.013, + 202.012, + 201.78, + 201.487, + 201.083, + 149.85, 165.733, 150.775, 60.908, @@ -40885,18 +40885,18 @@ 33.107, 33.107, 60.309, - 73.106, - 112.506, - 164.824, - 154.684, - 148.73, - 149.103, - 145.884, - 148.876, - 155.267, - 164.659, - 177.528, - 143.163, + 77.596, + 130.587, + 196.662, + 196.869, + 198.412, + 202.921, + 200.603, + 200.619, + 200.595, + 200.258, + 199.789, + 150.196, 165.94, 150.896, 60.908, @@ -40909,18 +40909,18 @@ 33.107, 33.107, 60.172, - 77.474, - 112.643, - 177.028, - 153.975, - 186.834, - 168.576, - 144.317, - 165.373, - 188.495, - 221.198, - 249.776, - 195.514, + 77.486, + 130.578, + 196.509, + 196.882, + 196.346, + 196.7, + 199.391, + 217.63, + 227.035, + 244.911, + 253.622, + 195.651, 198.018, 171.933, 60.908, @@ -40933,18 +40933,18 @@ 33.107, 33.107, 59.633, - 72.014, - 112.137, - 180.191, - 172.868, - 176.438, - 179.933, - 192.985, - 185.698, - 208.337, - 219.335, - 214.322, - 166.03, + 77.164, + 130.488, + 199.701, + 215.727, + 226.602, + 233.977, + 239.0, + 236.847, + 233.658, + 231.819, + 225.651, + 168.339, 174.865, 152.221, 60.908, @@ -40957,17 +40957,17 @@ 33.107, 33.107, 59.969, - 77.281, - 112.444, - 164.895, - 200.215, - 224.144, - 233.402, - 236.588, - 225.563, - 219.899, - 207.801, - 212.235, + 77.293, + 130.487, + 197.107, + 210.645, + 225.438, + 237.618, + 238.576, + 233.306, + 227.553, + 222.41, + 217.253, 160.437, 167.277, 151.574, @@ -40981,18 +40981,18 @@ 31.876, 31.876, 55.532, - 55.347, - 75.646, - 114.468, - 152.135, - 145.617, - 143.212, - 142.593, - 145.655, - 152.218, - 161.658, - 174.948, - 123.693, + 59.824, + 95.127, + 148.491, + 196.92, + 197.299, + 197.909, + 197.932, + 197.926, + 197.863, + 197.681, + 197.435, + 131.07, 111.973, 115.348, 79.921, @@ -41004,19 +41004,19 @@ 31.876, 31.876, 31.876, - 18.067, - 6.255, - 41.497, - 28.1, - 72.043, - 66.683, - 99.61, - 98.525, - 100.487, - 105.794, - 114.47, - 91.654, - 70.183, + 18.174, + 11.383, + 59.982, + 59.893, + 113.217, + 113.334, + 148.826, + 148.915, + 149.138, + 149.063, + 148.917, + 113.102, + 77.306, 28.45, 31.876, 31.876, @@ -41028,19 +41028,19 @@ 33.107, 33.107, 33.107, - 56.618, - 72.415, - 112.217, - 165.379, - 156.082, - 151.85, - 155.661, - 158.216, - 160.842, - 167.535, - 176.302, - 188.501, - 149.81, + 56.756, + 77.439, + 130.501, + 196.669, + 196.857, + 198.893, + 205.652, + 207.9, + 208.253, + 209.639, + 209.727, + 209.607, + 156.896, 163.131, 151.564, 60.908, @@ -41052,19 +41052,19 @@ 33.107, 33.107, 33.107, - 56.563, - 72.627, - 112.317, - 165.851, - 157.261, - 151.82, - 148.685, - 147.326, - 148.964, - 154.389, - 163.16, - 175.378, - 140.94, + 56.729, + 77.469, + 130.533, + 196.665, + 196.837, + 196.954, + 197.031, + 197.079, + 197.076, + 197.004, + 196.868, + 196.669, + 148.173, 161.636, 150.775, 60.908, @@ -41076,19 +41076,19 @@ 33.107, 33.107, 33.107, - 56.553, - 72.79, - 112.401, - 165.581, - 162.715, - 157.419, - 146.861, - 146.634, - 148.992, - 154.651, - 163.395, - 180.325, - 141.023, + 56.873, + 77.639, + 130.639, + 196.669, + 196.757, + 196.868, + 197.08, + 197.109, + 197.09, + 197.012, + 196.887, + 196.564, + 148.183, 161.639, 150.775, 60.908, @@ -41100,19 +41100,19 @@ 33.107, 33.107, 33.107, - 56.601, - 72.542, - 112.023, - 165.172, - 156.273, - 150.88, - 149.931, - 152.537, - 155.937, - 161.201, - 169.012, - 180.476, - 142.897, + 56.885, + 77.575, + 130.565, + 196.678, + 196.858, + 197.125, + 198.735, + 200.576, + 200.519, + 200.423, + 200.204, + 199.845, + 149.578, 162.36, 150.775, 60.908, @@ -41124,19 +41124,19 @@ 33.107, 33.107, 33.107, - 56.41, - 72.253, - 112.964, - 166.411, - 157.201, - 150.217, - 147.622, - 148.456, - 152.163, - 158.285, - 165.575, - 176.466, - 141.086, + 56.642, + 77.504, + 130.624, + 196.661, + 196.843, + 196.989, + 197.057, + 197.063, + 197.015, + 196.922, + 196.815, + 196.645, + 148.17, 161.636, 150.775, 60.908, @@ -41148,19 +41148,19 @@ 31.876, 31.876, 31.876, - 55.503, - 54.836, - 76.962, - 117.686, - 157.32, - 151.827, - 149.349, - 149.217, - 151.489, - 156.496, - 164.612, - 176.003, - 123.179, + 55.763, + 59.984, + 95.393, + 148.461, + 196.844, + 196.961, + 197.026, + 197.049, + 197.032, + 196.966, + 196.841, + 196.66, + 130.463, 108.495, 115.392, 80.169, @@ -41172,19 +41172,19 @@ 31.876, 31.876, 31.876, - 14.483, - 6.176, - 42.654, - 30.323, - 74.097, - 67.66, - 99.419, - 98.763, - 101.165, - 106.655, - 115.702, - 91.904, - 69.885, + 14.75, + 11.387, + 60.869, + 60.454, + 113.431, + 113.866, + 149.136, + 149.104, + 149.05, + 148.786, + 148.642, + 113.029, + 77.348, 25.024, 31.876, 31.876, @@ -41196,19 +41196,19 @@ 33.107, 33.107, 33.107, - 54.532, - 72.858, - 112.362, - 165.579, - 156.43, - 149.964, - 146.366, - 145.611, - 147.373, - 153.328, - 162.247, - 174.48, - 140.34, + 54.872, + 78.662, + 131.495, + 197.529, + 197.594, + 197.688, + 197.707, + 197.288, + 197.121, + 197.039, + 196.899, + 196.703, + 148.299, 161.993, 151.239, 60.908, @@ -41220,19 +41220,19 @@ 33.107, 33.107, 33.107, - 54.434, - 73.904, - 112.39, - 166.355, - 155.656, - 156.131, - 171.877, - 167.308, - 165.031, - 185.031, - 185.917, - 189.623, - 146.252, + 54.908, + 78.601, + 131.395, + 196.987, + 196.878, + 196.901, + 196.641, + 196.731, + 196.786, + 196.388, + 196.372, + 196.293, + 147.968, 161.636, 150.775, 60.908, @@ -41245,18 +41245,18 @@ 33.107, 33.107, 53.96, - 72.767, - 116.121, - 176.394, - 172.396, - 184.428, - 165.686, - 156.631, - 160.659, - 175.242, - 172.131, - 181.361, - 140.412, + 77.949, + 130.834, + 196.53, + 196.612, + 196.396, + 196.753, + 196.93, + 196.871, + 196.594, + 196.679, + 196.51, + 148.197, 161.636, 150.775, 60.908, @@ -41268,19 +41268,19 @@ 33.107, 33.107, 33.107, - 53.109, - 72.07, - 111.461, - 164.305, - 154.601, - 147.963, - 144.332, - 143.869, - 171.746, - 164.645, - 183.021, - 188.575, - 146.663, + 53.57, + 77.739, + 130.869, + 196.766, + 196.904, + 197.045, + 197.134, + 197.167, + 196.658, + 196.812, + 196.436, + 196.318, + 147.959, 161.636, 150.775, 60.908, @@ -41292,19 +41292,19 @@ 33.107, 33.107, 33.107, - 53.057, - 71.571, - 110.643, - 163.567, - 154.306, - 147.94, - 144.94, - 145.46, - 148.622, - 154.816, - 163.386, - 175.6, - 140.412, + 53.624, + 77.699, + 130.775, + 196.725, + 196.91, + 197.045, + 197.122, + 197.135, + 197.1, + 197.009, + 196.875, + 196.676, + 148.189, 161.636, 150.775, 60.908, @@ -41316,19 +41316,19 @@ 31.876, 31.876, 31.876, - 51.574, - 53.574, - 75.731, - 116.002, - 154.853, - 148.202, - 145.769, - 146.85, - 150.477, - 156.657, - 164.742, - 175.827, - 122.947, + 52.204, + 59.931, + 95.364, + 148.503, + 196.9, + 197.042, + 197.107, + 197.108, + 197.062, + 196.968, + 196.843, + 196.684, + 130.792, 108.911, 115.771, 80.478, @@ -41340,19 +41340,19 @@ 31.876, 31.876, 31.876, - 14.036, - 4.963, - 41.295, - 28.42, - 72.359, - 66.554, - 99.875, - 100.785, - 103.428, - 108.643, - 116.592, - 92.853, - 69.929, + 14.759, + 11.421, + 60.877, + 60.489, + 113.425, + 113.391, + 148.848, + 148.85, + 148.82, + 148.75, + 148.629, + 113.006, + 77.316, 21.597, 31.876, 31.876, @@ -41364,19 +41364,19 @@ 33.107, 33.107, 33.107, - 52.916, - 71.63, - 112.088, - 166.424, - 157.601, - 151.131, - 147.522, - 146.849, - 149.205, - 155.138, - 164.126, - 174.958, - 140.049, + 53.649, + 77.988, + 131.182, + 196.997, + 197.014, + 197.179, + 197.196, + 197.115, + 197.095, + 197.012, + 196.868, + 196.7, + 148.224, 158.337, 150.979, 60.908, @@ -41388,19 +41388,19 @@ 33.107, 33.107, 33.107, - 49.887, - 71.811, - 110.97, - 164.128, - 155.322, - 149.486, - 147.335, - 151.452, - 157.945, - 167.123, - 176.737, - 187.997, - 145.911, + 50.585, + 77.97, + 130.906, + 196.727, + 196.897, + 197.021, + 197.083, + 199.675, + 202.825, + 207.969, + 209.656, + 209.022, + 153.886, 158.601, 150.775, 60.908, @@ -41412,19 +41412,19 @@ 33.107, 33.107, 33.107, - 49.335, - 71.383, - 111.143, - 165.001, - 156.585, - 151.018, - 148.904, - 149.878, - 153.529, - 160.854, - 168.692, - 180.198, - 140.933, + 50.121, + 77.634, + 130.647, + 196.708, + 196.877, + 196.995, + 197.051, + 197.051, + 198.669, + 201.531, + 201.236, + 200.815, + 148.719, 158.244, 150.775, 60.908, @@ -41436,19 +41436,19 @@ 33.107, 33.107, 33.107, - 49.196, - 71.442, - 111.524, - 165.582, - 157.181, - 151.423, - 149.134, - 149.479, - 152.67, - 157.597, - 165.6, - 176.741, - 140.528, + 49.949, + 77.55, + 130.599, + 196.699, + 196.867, + 196.989, + 197.05, + 197.064, + 197.026, + 196.96, + 196.835, + 196.654, + 148.187, 158.21, 150.775, 60.908, @@ -41460,20 +41460,20 @@ 33.107, 33.107, 33.107, - 48.976, - 71.235, - 112.004, - 167.061, - 159.078, - 152.754, - 149.374, - 148.694, - 151.014, - 156.226, - 164.658, - 176.178, - 140.303, - 158.097, + 49.846, + 77.543, + 130.639, + 196.675, + 196.834, + 196.964, + 197.046, + 197.082, + 197.065, + 196.994, + 196.86, + 196.671, + 148.195, + 158.215, 150.775, 60.908, 33.107, @@ -41484,20 +41484,20 @@ 31.876, 31.876, 31.876, - 47.78, - 53.263, - 75.499, - 117.986, - 160.86, - 153.886, - 153.204, - 145.715, - 148.471, - 162.311, - 167.04, - 177.892, - 123.066, - 104.859, + 48.712, + 59.881, + 95.226, + 148.475, + 196.812, + 196.954, + 196.986, + 197.145, + 197.119, + 196.867, + 196.804, + 196.62, + 130.455, + 105.077, 115.348, 79.942, 31.876, @@ -41508,20 +41508,20 @@ 31.876, 31.876, 31.876, - 10.071, - 4.002, - 42.759, - 30.446, - 71.895, - 65.943, - 97.695, - 129.579, - 125.788, - 104.804, - 113.794, - 97.601, - 68.71, - 21.476, + 11.345, + 11.454, + 60.205, + 60.042, + 113.26, + 113.386, + 148.901, + 148.319, + 148.398, + 148.848, + 148.705, + 112.866, + 77.354, + 21.601, 31.876, 31.876, 31.876, @@ -41532,20 +41532,20 @@ 33.107, 33.107, 33.107, - 48.918, - 70.132, - 110.193, - 179.148, - 153.923, - 147.352, - 143.835, - 149.456, - 172.9, - 191.085, - 167.634, - 180.842, - 139.254, - 157.832, + 50.447, + 77.966, + 130.932, + 196.502, + 196.933, + 197.074, + 197.16, + 197.078, + 196.638, + 196.259, + 196.791, + 196.527, + 148.243, + 158.224, 150.775, 60.908, 33.107, @@ -41556,20 +41556,20 @@ 33.107, 33.107, 33.107, - 49.107, - 70.42, - 109.543, - 163.007, - 165.839, - 147.924, - 145.207, - 145.499, - 162.662, - 162.499, - 163.925, - 175.853, - 140.104, - 158.058, + 50.228, + 77.602, + 130.663, + 196.755, + 196.737, + 197.064, + 197.135, + 197.152, + 196.841, + 196.864, + 196.879, + 196.679, + 148.198, + 158.214, 150.775, 60.908, 33.107, @@ -41580,20 +41580,20 @@ 33.107, 33.107, 33.107, - 48.866, - 70.466, - 111.18, - 165.786, - 157.213, - 151.096, - 147.544, - 147.083, - 150.214, - 158.332, - 166.995, - 178.858, - 142.529, - 158.04, + 50.119, + 77.607, + 130.612, + 196.706, + 196.874, + 197.002, + 197.088, + 197.127, + 197.778, + 199.766, + 199.56, + 199.25, + 150.613, + 158.215, 150.775, 60.908, 33.107, @@ -41604,20 +41604,20 @@ 33.107, 33.107, 33.107, - 48.462, - 69.76, - 110.626, - 164.891, - 155.928, - 149.27, - 149.769, - 155.384, - 159.799, - 165.839, - 174.992, - 186.619, - 145.835, - 158.705, + 50.097, + 77.644, + 130.668, + 196.729, + 196.901, + 197.042, + 201.205, + 207.24, + 208.586, + 208.855, + 208.84, + 208.132, + 154.406, + 159.083, 150.792, 60.908, 33.107, @@ -41628,20 +41628,20 @@ 33.107, 33.107, 33.107, - 48.42, - 69.932, - 110.388, - 164.646, - 155.708, - 151.027, - 157.936, - 162.313, - 165.166, - 172.576, - 181.031, - 192.235, - 153.35, - 160.812, + 49.886, + 77.476, + 130.578, + 196.731, + 196.905, + 198.72, + 209.11, + 213.856, + 214.07, + 215.727, + 215.363, + 214.333, + 162.293, + 161.341, 151.387, 60.908, 33.107, @@ -41652,20 +41652,20 @@ 31.876, 31.876, 28.45, - 47.209, - 52.369, - 74.536, - 115.627, - 154.993, - 148.097, - 144.749, - 156.37, - 169.11, - 176.85, - 185.554, - 197.253, - 135.909, - 103.167, + 48.469, + 59.756, + 95.17, + 148.528, + 196.923, + 197.066, + 197.181, + 208.989, + 218.832, + 220.572, + 220.332, + 219.565, + 144.983, + 103.854, 115.584, 79.921, 31.876, @@ -41676,20 +41676,20 @@ 31.876, 31.876, 28.45, - 10.14, - 3.759, - 37.409, - 24.526, - 68.794, - 63.078, - 95.562, - 95.794, - 99.141, - 105.0, - 113.699, - 90.477, - 67.957, - 17.431, + 11.342, + 11.458, + 59.907, + 60.011, + 113.326, + 113.448, + 148.951, + 148.97, + 149.004, + 149.136, + 148.998, + 113.314, + 77.404, + 18.199, 31.876, 31.876, 31.876, @@ -41700,20 +41700,20 @@ 33.107, 33.107, 29.681, - 48.321, - 69.794, - 109.141, - 162.897, - 154.062, - 147.952, - 144.683, - 145.99, - 152.851, - 159.06, - 168.186, - 180.571, - 145.879, - 154.85, + 49.82, + 77.537, + 130.633, + 196.766, + 196.942, + 197.071, + 197.153, + 198.782, + 202.768, + 203.174, + 203.272, + 203.2, + 155.259, + 155.579, 150.775, 60.908, 33.107, @@ -41724,20 +41724,20 @@ 33.107, 33.107, 29.681, - 47.876, - 69.327, - 109.365, - 162.981, - 153.644, - 147.237, - 143.95, - 150.042, - 188.112, - 167.634, - 165.493, - 176.433, - 139.6, - 154.132, + 49.727, + 77.492, + 130.614, + 196.768, + 196.953, + 197.088, + 197.171, + 197.295, + 198.716, + 200.512, + 200.432, + 198.595, + 148.63, + 154.811, 150.775, 60.908, 33.107, @@ -41748,20 +41748,20 @@ 33.107, 33.107, 29.681, - 47.878, - 69.459, - 109.877, - 163.897, - 155.065, - 148.977, - 145.59, - 145.42, - 149.664, - 156.37, - 171.74, - 179.224, - 140.514, - 154.318, + 49.617, + 77.329, + 130.594, + 196.752, + 196.924, + 197.055, + 197.138, + 197.307, + 199.164, + 199.912, + 199.501, + 198.218, + 148.524, + 154.811, 150.775, 60.908, 33.107, @@ -41772,20 +41772,20 @@ 33.107, 33.107, 29.681, - 48.077, - 69.71, - 109.921, - 163.499, - 154.064, - 147.411, - 143.901, - 143.442, - 146.562, - 153.894, - 163.406, - 175.674, - 138.58, - 153.833, + 49.692, + 77.45, + 130.602, + 196.76, + 196.946, + 197.086, + 197.173, + 197.206, + 197.175, + 198.671, + 199.066, + 198.777, + 148.295, + 154.819, 150.775, 60.908, 33.107, @@ -41796,20 +41796,20 @@ 33.107, 33.107, 29.681, - 48.578, - 70.091, - 109.524, - 163.474, - 155.295, - 150.335, - 148.0, - 148.165, - 150.353, - 155.679, - 163.732, - 175.023, - 138.933, - 153.679, + 49.837, + 77.54, + 130.659, + 196.762, + 196.923, + 197.028, + 197.088, + 197.104, + 197.088, + 197.026, + 196.917, + 196.723, + 148.262, + 154.826, 150.775, 60.908, 33.107, @@ -41820,20 +41820,20 @@ 31.876, 31.876, 28.45, - 47.689, - 52.596, - 74.236, - 115.205, - 155.106, - 149.459, - 146.994, - 147.509, - 150.769, - 156.827, - 164.462, - 175.078, - 121.189, - 100.562, + 48.924, + 60.052, + 95.471, + 148.56, + 197.056, + 197.091, + 197.111, + 197.12, + 197.08, + 196.988, + 196.872, + 196.712, + 130.548, + 101.684, 115.355, 80.138, 31.876, @@ -41844,20 +41844,20 @@ 31.876, 31.876, 28.45, - 10.077, - 4.153, - 39.98, - 27.984, - 72.488, - 67.353, - 100.76, - 101.737, - 105.162, - 109.312, - 116.134, - 91.698, - 68.225, - 17.142, + 11.343, + 11.459, + 60.534, + 60.238, + 113.277, + 113.373, + 148.853, + 148.851, + 148.805, + 148.756, + 148.662, + 113.063, + 77.396, + 18.21, 31.876, 31.876, 31.876, @@ -41868,20 +41868,20 @@ 33.107, 33.107, 29.681, - 49.236, - 70.695, - 110.988, - 165.856, - 157.369, - 151.239, - 147.85, - 147.27, - 149.678, - 155.135, - 163.414, - 174.924, - 138.978, - 153.634, + 50.482, + 77.87, + 130.804, + 196.72, + 196.887, + 197.015, + 197.098, + 197.132, + 197.113, + 197.038, + 196.908, + 196.722, + 148.26, + 154.828, 150.775, 60.908, 33.107, @@ -41892,20 +41892,20 @@ 33.107, 33.107, 29.681, - 49.128, - 70.5, - 110.406, - 165.369, - 157.581, - 152.356, - 152.726, - 158.125, - 163.725, - 168.959, - 176.36, - 187.069, - 149.775, - 155.864, + 50.277, + 77.725, + 130.718, + 196.73, + 196.883, + 197.079, + 199.953, + 205.479, + 208.497, + 208.884, + 208.753, + 208.228, + 158.942, + 157.032, 150.811, 60.908, 33.107, @@ -41916,20 +41916,20 @@ 33.107, 33.107, 29.681, - 48.36, - 70.244, - 111.005, - 166.02, - 157.798, - 153.108, - 158.076, - 161.518, - 164.008, - 169.408, - 177.346, - 188.339, - 150.239, - 155.055, + 49.729, + 77.413, + 130.579, + 196.718, + 196.881, + 198.544, + 206.787, + 210.909, + 211.026, + 211.071, + 210.842, + 210.407, + 159.872, + 156.527, 150.932, 60.908, 33.107, @@ -41940,20 +41940,20 @@ 33.107, 33.107, 29.681, - 48.539, - 70.124, - 114.283, - 164.283, - 155.423, - 158.888, - 146.097, - 146.042, - 148.679, - 156.988, - 168.553, - 179.986, - 141.6, - 153.519, + 49.728, + 77.433, + 130.543, + 196.754, + 196.928, + 196.881, + 197.137, + 197.16, + 197.136, + 199.991, + 202.808, + 202.479, + 151.364, + 154.994, 150.775, 60.908, 33.107, @@ -41964,20 +41964,20 @@ 33.107, 33.107, 29.681, - 48.247, - 69.742, - 109.402, - 163.348, - 154.392, - 148.152, - 144.894, - 144.622, - 147.147, - 152.871, - 161.572, - 173.504, - 138.083, - 153.111, + 49.78, + 77.462, + 130.617, + 196.771, + 196.95, + 197.081, + 197.163, + 197.192, + 197.171, + 197.092, + 196.954, + 196.765, + 148.297, + 154.848, 150.775, 60.908, 33.107, @@ -41988,20 +41988,20 @@ 31.876, 31.876, 28.45, - 47.007, - 51.815, - 74.183, - 115.181, - 154.4, - 147.897, - 144.808, - 144.568, - 147.399, - 153.201, - 161.777, - 173.772, - 120.463, - 96.658, + 48.867, + 59.992, + 95.403, + 148.555, + 196.948, + 197.087, + 197.165, + 197.193, + 197.167, + 197.085, + 196.95, + 196.756, + 130.569, + 98.273, 115.348, 79.921, 31.876, @@ -42012,20 +42012,20 @@ 31.876, 31.876, 28.45, - 9.55, - 3.493, - 39.64, - 28.128, - 73.064, - 67.105, - 100.283, - 117.586, - 117.761, - 114.88, - 122.532, - 92.083, - 67.581, - 13.035, + 11.355, + 11.479, + 60.191, + 60.04, + 113.26, + 113.384, + 149.333, + 166.661, + 164.624, + 156.515, + 156.261, + 114.442, + 77.496, + 14.808, 31.876, 31.876, 31.876, @@ -42036,20 +42036,20 @@ 31.876, 31.876, 25.024, - 9.857, - 3.906, - 39.494, - 28.554, - 91.25, - 88.656, - 117.532, - 119.294, - 123.783, - 129.044, - 136.368, - 108.656, - 77.664, - 13.175, + 11.347, + 11.471, + 59.746, + 60.061, + 130.995, + 134.205, + 165.657, + 167.177, + 169.255, + 169.474, + 169.005, + 130.137, + 87.249, + 14.802, 31.876, 31.876, 31.876, @@ -42060,20 +42060,20 @@ 33.107, 33.107, 26.254, - 47.807, - 69.573, - 110.784, - 166.505, - 171.31, - 188.434, - 203.055, - 211.259, - 223.956, - 212.788, - 213.33, - 220.828, - 174.388, - 177.167, + 49.396, + 77.232, + 130.59, + 197.373, + 210.661, + 233.861, + 251.64, + 260.201, + 260.661, + 253.985, + 246.234, + 240.239, + 183.585, + 178.866, 168.732, 60.908, 33.107, @@ -42084,20 +42084,20 @@ 33.107, 33.107, 26.254, - 47.355, - 69.942, - 111.058, - 194.524, - 195.167, - 195.303, - 194.852, - 196.353, - 199.398, - 203.506, - 209.717, - 216.201, - 172.34, - 175.045, + 49.316, + 77.227, + 131.149, + 225.771, + 234.665, + 240.781, + 243.679, + 245.459, + 246.126, + 245.029, + 242.942, + 238.213, + 182.175, + 176.922, 166.821, 60.908, 33.107, @@ -42108,20 +42108,20 @@ 33.107, 33.107, 26.254, - 47.378, - 70.03, - 114.891, - 179.225, - 165.074, - 169.157, - 182.089, - 198.953, - 216.126, - 196.38, - 210.922, - 200.569, - 158.987, - 159.226, + 49.316, + 77.227, + 130.529, + 196.499, + 199.682, + 209.527, + 216.844, + 223.269, + 224.402, + 225.059, + 224.12, + 222.573, + 168.367, + 160.813, 151.862, 60.908, 33.107, @@ -42132,20 +42132,20 @@ 33.107, 33.107, 26.254, - 47.826, - 69.943, - 111.248, - 165.463, - 157.708, - 152.246, - 148.534, - 152.096, - 163.172, - 161.463, - 166.737, - 179.466, - 140.519, - 150.054, + 49.565, + 77.277, + 130.584, + 196.736, + 196.888, + 197.006, + 197.093, + 197.043, + 196.842, + 196.918, + 196.849, + 196.593, + 148.164, + 151.397, 150.775, 60.908, 33.107, @@ -42156,20 +42156,20 @@ 31.876, 31.876, 25.024, - 47.37, - 53.063, - 79.312, - 133.411, - 165.615, - 160.045, - 154.719, - 154.959, - 157.147, - 176.513, - 178.64, - 183.543, - 125.022, - 96.612, + 48.933, + 59.947, + 95.161, + 148.232, + 196.752, + 196.866, + 196.976, + 196.989, + 196.966, + 196.575, + 196.542, + 196.456, + 130.359, + 98.27, 115.348, 79.921, 31.876, @@ -42180,20 +42180,20 @@ 31.876, 31.876, 25.024, - 9.675, - 3.901, - 40.534, - 29.547, - 74.433, - 69.175, - 102.931, - 104.077, - 106.741, - 110.927, - 117.725, - 92.701, - 67.827, - 12.661, + 11.352, + 11.476, + 59.98, + 59.946, + 113.237, + 113.349, + 148.821, + 148.814, + 148.784, + 148.732, + 148.632, + 113.037, + 77.405, + 14.819, 31.876, 31.876, 31.876, @@ -42204,20 +42204,20 @@ 33.107, 33.107, 26.254, - 48.207, - 70.274, - 111.256, - 166.431, - 158.296, - 152.416, - 149.137, - 148.459, - 150.65, - 155.832, - 163.808, - 174.565, - 138.09, - 148.936, + 49.763, + 77.491, + 130.624, + 196.719, + 196.88, + 197.004, + 197.084, + 197.119, + 197.102, + 197.031, + 196.906, + 196.736, + 148.287, + 151.447, 150.775, 60.908, 33.107, @@ -42228,20 +42228,20 @@ 33.107, 33.107, 26.254, - 48.416, - 72.931, - 118.831, - 187.201, - 185.179, - 158.996, - 163.752, - 147.752, - 149.51, - 163.461, - 162.882, - 174.45, - 138.049, - 149.662, + 49.802, + 77.468, + 130.528, + 196.34, + 196.382, + 196.888, + 196.804, + 197.132, + 197.128, + 196.863, + 196.927, + 196.729, + 148.266, + 151.412, 150.775, 60.908, 33.107, @@ -42252,20 +42252,20 @@ 33.107, 33.107, 26.254, - 48.281, - 70.055, - 110.307, - 164.368, - 155.438, - 149.202, - 145.751, - 145.334, - 148.017, - 154.342, - 162.763, - 174.367, - 137.731, - 148.778, + 50.029, + 77.623, + 130.713, + 196.76, + 196.938, + 197.068, + 197.153, + 197.221, + 197.405, + 197.991, + 197.85, + 197.634, + 148.443, + 151.451, 150.775, 60.908, 33.107, @@ -42276,20 +42276,20 @@ 33.107, 33.107, 26.254, - 48.171, - 69.566, - 108.737, - 162.351, - 152.907, - 146.478, - 143.94, - 147.623, - 153.738, - 161.008, - 169.633, - 181.05, - 145.096, - 149.337, + 49.737, + 77.485, + 130.657, + 196.801, + 196.987, + 197.122, + 198.082, + 202.108, + 205.131, + 206.522, + 206.304, + 205.864, + 156.719, + 152.544, 150.818, 60.908, 33.107, @@ -42300,20 +42300,20 @@ 33.107, 33.107, 26.254, - 48.411, - 69.606, - 108.562, - 161.74, - 152.497, - 146.299, - 143.764, - 146.24, - 146.669, - 152.447, - 160.989, - 172.655, - 137.027, - 148.272, + 49.82, + 77.552, + 130.828, + 196.831, + 196.995, + 197.126, + 197.194, + 197.164, + 197.188, + 197.106, + 196.972, + 196.791, + 148.334, + 151.476, 150.775, 60.908, 33.107, @@ -42324,20 +42324,20 @@ 31.876, 31.876, 25.024, - 47.138, - 52.126, - 74.221, - 115.54, - 155.638, - 150.343, - 147.785, - 148.194, - 152.881, - 159.676, - 167.064, - 176.991, - 119.984, - 95.346, + 48.506, + 59.742, + 95.216, + 148.557, + 196.934, + 197.045, + 197.11, + 197.12, + 198.731, + 199.737, + 199.592, + 199.383, + 130.592, + 98.323, 115.348, 79.921, 31.876, @@ -42348,20 +42348,20 @@ 31.876, 31.876, 25.024, - 9.857, - 4.067, - 39.664, - 28.067, - 73.028, - 67.867, - 101.012, - 101.228, - 103.409, - 107.924, - 115.3, - 90.384, - 66.719, - 11.908, + 11.347, + 11.477, + 60.032, + 60.007, + 113.268, + 113.375, + 148.86, + 148.875, + 148.858, + 148.802, + 148.692, + 113.103, + 77.452, + 14.851, 31.876, 31.876, 31.876, @@ -42372,20 +42372,20 @@ 33.107, 33.107, 26.254, - 48.254, - 70.248, - 110.887, - 165.547, - 156.964, - 150.747, - 147.298, - 146.659, - 150.245, - 156.913, - 164.963, - 175.923, - 137.485, - 148.351, + 49.669, + 77.413, + 130.601, + 196.741, + 196.909, + 197.038, + 197.129, + 197.198, + 198.662, + 199.978, + 199.781, + 199.518, + 148.599, + 151.474, 150.775, 60.908, 33.107, @@ -42396,20 +42396,20 @@ 33.107, 33.107, 26.254, - 48.196, - 69.669, - 110.206, - 163.768, - 156.312, - 150.241, - 145.306, - 144.873, - 149.02, - 157.674, - 166.789, - 177.976, - 139.31, - 148.344, + 49.613, + 77.371, + 130.61, + 196.776, + 196.921, + 197.048, + 197.164, + 197.196, + 198.683, + 201.791, + 202.305, + 201.974, + 150.575, + 151.538, 150.775, 60.908, 33.107, @@ -42420,20 +42420,20 @@ 33.107, 33.107, 26.254, - 47.844, - 69.755, - 109.853, - 164.093, - 155.396, - 149.232, - 146.053, - 148.664, - 152.762, - 160.483, - 170.942, - 181.637, - 142.469, - 145.542, + 49.529, + 77.277, + 130.618, + 196.77, + 196.941, + 197.07, + 197.271, + 200.321, + 201.805, + 203.875, + 205.862, + 205.272, + 153.532, + 148.681, 150.853, 60.908, 33.107, @@ -42444,20 +42444,20 @@ 33.107, 33.107, 26.254, - 48.051, - 69.944, - 110.194, - 164.876, - 157.205, - 152.497, - 150.895, - 151.065, - 152.348, - 156.257, - 163.555, - 173.973, - 137.542, - 145.089, + 49.591, + 77.373, + 130.611, + 196.755, + 196.903, + 197.001, + 197.043, + 197.06, + 197.077, + 197.043, + 196.939, + 196.76, + 148.302, + 148.034, 150.775, 60.908, 33.107, @@ -42468,20 +42468,20 @@ 33.107, 33.107, 26.254, - 47.958, - 70.056, - 110.957, - 166.268, - 157.901, - 151.919, - 149.329, - 152.145, - 157.097, - 164.749, - 173.41, - 183.686, - 147.079, - 151.517, + 49.572, + 77.307, + 130.596, + 196.726, + 196.891, + 197.016, + 197.75, + 201.173, + 203.864, + 206.339, + 206.556, + 206.214, + 157.324, + 153.418, 151.035, 60.908, 33.107, @@ -42492,20 +42492,20 @@ 31.876, 31.876, 25.024, - 46.631, - 52.413, - 75.297, - 116.858, - 156.437, - 156.27, - 161.643, - 169.0, - 173.011, - 178.161, - 186.175, - 196.061, - 134.476, - 94.823, + 48.15, + 59.518, + 95.174, + 148.533, + 196.987, + 203.07, + 211.845, + 219.775, + 221.401, + 221.135, + 220.883, + 219.685, + 145.64, + 98.009, 115.632, 79.921, 31.876, @@ -42516,20 +42516,20 @@ 31.876, 31.876, 25.024, - 9.655, - 4.139, - 39.754, - 28.434, - 73.427, - 68.247, - 103.209, - 106.763, - 112.082, - 119.714, - 126.832, - 92.071, - 66.585, - 8.375, + 11.352, + 11.477, + 59.749, + 59.962, + 113.262, + 113.37, + 150.634, + 154.239, + 157.62, + 160.731, + 160.37, + 115.041, + 77.528, + 11.424, 31.876, 31.876, 31.876, @@ -42540,20 +42540,20 @@ 33.107, 33.107, 26.254, - 47.912, - 70.045, - 110.641, - 165.266, - 157.399, - 152.67, - 152.304, - 154.249, - 156.022, - 160.279, - 167.505, - 177.667, - 137.957, - 145.34, + 49.55, + 77.286, + 130.603, + 196.748, + 196.901, + 197.001, + 199.017, + 201.108, + 201.121, + 201.036, + 200.768, + 200.413, + 148.89, + 148.424, 150.775, 60.908, 33.107, @@ -42564,20 +42564,20 @@ 33.107, 33.107, 26.254, - 47.697, - 69.799, - 111.155, - 166.298, - 159.049, - 157.111, - 154.912, - 161.8, - 167.369, - 172.832, - 179.752, - 189.51, - 151.658, - 150.444, + 49.67, + 77.339, + 130.593, + 196.726, + 197.554, + 201.403, + 202.577, + 210.149, + 213.533, + 213.558, + 212.98, + 212.206, + 162.564, + 153.555, 151.363, 60.908, 33.107, @@ -42588,20 +42588,20 @@ 33.107, 33.107, 26.254, - 47.946, - 70.127, - 111.286, - 166.204, - 158.279, - 153.336, - 156.821, - 161.502, - 164.971, - 169.654, - 176.659, - 186.689, - 149.354, - 148.729, + 49.583, + 77.324, + 130.591, + 196.729, + 196.885, + 197.509, + 203.743, + 209.041, + 210.697, + 210.479, + 209.867, + 209.221, + 160.192, + 151.818, 151.081, 60.908, 33.107, @@ -42612,20 +42612,20 @@ 33.107, 33.107, 26.254, - 48.016, - 70.268, - 111.012, - 165.785, - 157.439, - 154.936, - 160.515, - 160.874, - 165.981, - 172.836, - 180.096, - 189.833, - 150.144, - 147.403, + 49.584, + 77.304, + 130.596, + 196.736, + 196.901, + 200.4, + 209.336, + 210.226, + 213.038, + 214.706, + 214.098, + 212.977, + 161.22, + 150.691, 151.184, 60.908, 33.107, @@ -42636,20 +42636,20 @@ 33.107, 33.107, 26.254, - 47.895, - 70.479, - 111.308, - 166.199, - 158.135, - 156.091, - 162.092, - 169.355, - 175.622, - 182.501, - 188.962, - 198.443, - 157.416, - 155.113, + 49.302, + 77.223, + 130.59, + 196.729, + 196.903, + 200.825, + 210.159, + 218.126, + 222.303, + 224.118, + 222.782, + 221.595, + 168.584, + 158.47, 151.966, 60.908, 33.107, @@ -42660,20 +42660,20 @@ 31.876, 31.876, 25.024, - 46.72, - 52.814, - 76.048, - 118.265, - 159.447, - 177.772, - 181.865, - 178.622, - 181.893, - 188.573, - 198.425, - 207.304, - 138.349, - 95.602, + 48.07, + 59.509, + 95.159, + 148.506, + 197.807, + 220.944, + 228.918, + 226.852, + 228.169, + 229.989, + 231.142, + 229.499, + 149.297, + 98.436, 115.77, 79.921, 31.876, @@ -42684,20 +42684,20 @@ 31.876, 31.876, 25.024, - 9.833, - 4.897, - 42.754, - 32.542, - 75.019, - 69.329, - 102.142, - 102.063, - 112.1, - 117.304, - 125.724, - 98.942, - 67.588, - 8.531, + 11.349, + 11.459, + 59.694, + 59.884, + 113.231, + 113.35, + 148.841, + 149.388, + 152.356, + 154.299, + 154.933, + 116.57, + 77.765, + 11.419, 31.876, 31.876, 31.876, @@ -42708,20 +42708,20 @@ 33.107, 33.107, 26.254, - 47.89, - 70.469, - 113.069, - 168.603, - 160.472, - 152.098, - 157.445, - 165.079, - 171.665, - 178.872, - 186.056, - 195.107, - 151.113, - 147.66, + 49.421, + 77.229, + 130.557, + 196.684, + 196.842, + 197.275, + 204.51, + 211.581, + 218.114, + 221.367, + 220.567, + 218.838, + 162.535, + 151.038, 151.328, 60.908, 33.107, @@ -42732,20 +42732,20 @@ 33.107, 33.107, 26.254, - 47.977, - 70.705, - 112.423, - 168.259, - 160.355, - 155.061, - 162.208, - 168.238, - 170.44, - 188.764, - 197.997, - 191.53, - 149.904, - 146.26, + 49.457, + 77.238, + 130.567, + 196.687, + 196.842, + 197.334, + 207.762, + 214.309, + 214.306, + 213.741, + 213.223, + 212.929, + 160.411, + 149.254, 151.007, 60.908, 33.107, @@ -42756,20 +42756,20 @@ 33.107, 33.107, 26.254, - 48.037, - 70.634, - 112.268, - 167.295, - 159.273, - 154.655, - 157.206, - 163.222, - 168.737, - 173.57, - 180.679, - 189.966, - 148.748, - 146.699, + 49.475, + 77.238, + 130.571, + 196.707, + 196.865, + 198.28, + 204.171, + 210.993, + 214.46, + 214.377, + 213.767, + 212.599, + 159.74, + 149.898, 151.256, 60.908, 33.107, @@ -42780,20 +42780,20 @@ 33.107, 33.107, 26.254, - 48.088, - 70.394, - 111.076, - 176.624, - 183.643, - 186.694, - 189.842, - 196.016, - 200.152, - 203.51, - 207.788, - 214.54, - 170.323, - 170.188, + 49.605, + 77.264, + 130.595, + 208.027, + 224.138, + 233.81, + 240.539, + 247.214, + 248.91, + 246.894, + 242.937, + 238.577, + 181.952, + 173.723, 168.609, 60.908, 33.107, @@ -42804,20 +42804,20 @@ 33.107, 33.107, 26.254, - 47.676, - 70.239, - 110.601, - 176.662, - 178.15, - 179.491, - 182.177, - 187.381, - 196.081, - 204.651, - 210.219, - 215.182, - 171.631, - 168.007, + 49.308, + 77.228, + 130.637, + 208.454, + 218.019, + 224.422, + 230.02, + 236.0, + 243.01, + 247.076, + 244.972, + 239.151, + 183.19, + 171.489, 165.669, 60.908, 33.107, @@ -42828,20 +42828,20 @@ 31.876, 31.876, 25.024, - 46.841, - 53.034, - 76.049, - 129.24, - 185.486, - 191.682, - 194.347, - 197.993, - 201.388, - 207.437, - 214.505, - 219.447, - 150.179, - 108.889, + 48.146, + 59.504, + 95.18, + 159.587, + 223.697, + 235.855, + 242.187, + 246.88, + 248.427, + 249.667, + 248.945, + 243.438, + 161.864, + 112.486, 120.306, 80.07, 31.876, @@ -42852,20 +42852,20 @@ 31.876, 31.876, 28.45, - 10.306, - 5.135, - 40.024, - 28.42, - 73.453, - 68.385, - 100.647, - 99.953, - 101.934, - 106.527, - 114.024, - 89.134, - 65.728, - 7.889, + 11.338, + 11.457, + 59.743, + 59.96, + 113.259, + 113.365, + 148.869, + 148.903, + 148.892, + 148.834, + 148.721, + 113.132, + 77.488, + 11.455, 31.876, 31.876, 31.876, @@ -42876,20 +42876,20 @@ 33.107, 33.107, 29.681, - 48.454, - 70.903, - 110.79, - 164.898, - 156.423, - 150.663, - 147.307, - 148.469, - 153.079, - 163.106, - 173.205, - 183.666, - 147.266, - 154.545, + 49.483, + 77.254, + 130.599, + 196.752, + 196.917, + 197.038, + 197.119, + 198.909, + 201.361, + 206.389, + 208.64, + 208.143, + 159.211, + 158.233, 154.363, 60.908, 33.107, @@ -42900,20 +42900,20 @@ 33.107, 33.107, 29.681, - 48.421, - 70.846, - 110.937, - 165.473, - 164.535, - 172.316, - 173.353, - 177.353, - 182.877, - 190.921, - 197.682, - 206.066, - 163.787, - 162.293, + 49.421, + 77.227, + 130.596, + 196.74, + 203.395, + 216.122, + 220.018, + 224.644, + 228.29, + 231.856, + 231.443, + 229.436, + 175.243, + 165.795, 160.19, 60.908, 33.107, @@ -42924,20 +42924,20 @@ 31.876, 31.876, 28.45, - 10.347, - 5.213, - 40.821, - 30.217, - 76.609, - 71.206, - 111.445, - 102.52, - 105.883, - 110.285, - 117.426, - 91.033, - 66.754, - 8.566, + 11.337, + 11.454, + 59.725, + 59.924, + 113.195, + 113.308, + 148.659, + 148.85, + 148.806, + 148.748, + 148.638, + 113.073, + 77.429, + 11.417, 31.876, 31.876, 31.876, @@ -42948,20 +42948,20 @@ 33.107, 33.107, 29.681, - 47.91, - 70.921, - 113.021, - 168.412, - 160.614, - 155.02, - 154.343, - 159.69, - 169.345, - 171.511, - 178.667, - 188.405, - 150.57, - 153.845, + 49.303, + 77.21, + 130.554, + 196.683, + 196.834, + 196.951, + 199.386, + 205.278, + 208.417, + 211.211, + 211.001, + 210.326, + 161.088, + 156.605, 151.861, 60.908, 33.107, @@ -42972,20 +42972,20 @@ 33.107, 33.107, 29.681, - 47.479, - 70.113, - 113.284, - 168.685, - 160.775, - 155.012, - 151.572, - 157.595, - 163.096, - 165.009, - 172.777, - 182.753, - 145.352, - 152.524, + 49.313, + 77.227, + 130.548, + 196.677, + 196.831, + 196.95, + 197.032, + 197.841, + 201.926, + 204.599, + 204.932, + 204.618, + 155.81, + 155.118, 152.202, 60.908, 33.107, @@ -42996,20 +42996,20 @@ 31.876, 31.876, 28.45, - 46.735, - 53.311, - 77.026, - 118.792, - 158.559, - 152.368, - 156.043, - 173.604, - 187.521, - 194.225, - 200.864, - 209.615, - 142.091, - 101.614, + 48.071, + 59.494, + 95.136, + 148.492, + 196.875, + 197.004, + 204.173, + 222.414, + 234.585, + 236.326, + 235.094, + 233.129, + 153.391, + 104.852, 116.392, 79.977, 31.876, @@ -43020,20 +43020,20 @@ 31.876, 31.876, 28.45, - 10.284, - 5.545, - 41.188, - 29.392, - 73.821, - 67.644, - 102.663, - 106.122, - 118.53, - 133.992, - 143.209, - 115.959, - 81.374, - 8.071, + 11.339, + 11.445, + 59.715, + 59.938, + 113.249, + 113.379, + 151.968, + 156.173, + 166.394, + 176.693, + 178.07, + 140.162, + 93.095, + 11.447, 31.876, 31.876, 31.876, @@ -43044,20 +43044,20 @@ 33.107, 33.107, 29.681, - 48.078, - 71.146, - 114.675, - 198.892, - 195.967, - 195.412, - 198.035, - 202.742, - 208.831, - 215.959, - 220.228, - 224.698, - 177.927, - 174.422, + 49.299, + 77.205, + 132.863, + 228.489, + 233.919, + 239.281, + 245.472, + 250.922, + 255.156, + 257.307, + 253.412, + 247.302, + 188.731, + 177.048, 171.21, 60.908, 33.107, @@ -43068,20 +43068,20 @@ 33.107, 33.107, 29.681, - 47.935, - 72.155, - 120.238, - 213.394, - 207.087, - 215.868, - 222.404, - 222.56, - 226.696, - 246.636, - 240.796, - 242.567, - 195.601, - 187.715, + 49.305, + 77.183, + 135.443, + 226.037, + 240.099, + 251.006, + 254.411, + 257.637, + 260.194, + 265.476, + 266.146, + 260.872, + 202.312, + 189.1, 179.807, 60.908, 33.107, @@ -43092,20 +43092,20 @@ 33.107, 33.107, 29.681, - 47.79, - 70.65, - 116.234, - 201.795, - 204.23, - 206.278, - 205.022, - 206.164, - 208.87, - 213.439, - 216.912, - 221.301, - 177.252, - 175.091, + 49.306, + 77.214, + 134.633, + 232.267, + 243.944, + 252.993, + 255.364, + 256.968, + 257.62, + 257.193, + 252.598, + 245.905, + 189.162, + 178.483, 171.283, 60.908, 33.107, @@ -43116,20 +43116,20 @@ 33.107, 33.107, 29.681, - 48.302, - 71.333, - 111.85, - 181.117, - 193.92, - 201.77, - 204.286, - 207.547, - 211.585, - 213.723, - 216.066, - 219.608, - 175.039, - 171.694, + 49.294, + 77.199, + 130.571, + 211.814, + 233.21, + 247.129, + 253.123, + 257.059, + 259.191, + 256.509, + 251.048, + 243.656, + 186.604, + 174.948, 167.839, 60.908, 33.107, @@ -43140,20 +43140,20 @@ 33.107, 33.107, 29.681, - 48.386, - 71.594, - 112.046, - 166.652, - 163.882, - 172.598, - 180.073, - 182.757, - 186.626, - 192.132, - 198.564, - 206.901, - 164.705, - 163.14, + 49.292, + 77.194, + 130.566, + 196.97, + 202.465, + 216.93, + 227.929, + 231.209, + 233.13, + 233.814, + 232.548, + 230.206, + 175.833, + 166.158, 157.499, 60.908, 33.107, @@ -43164,20 +43164,20 @@ 31.876, 31.876, 28.45, - 47.691, - 54.922, - 80.285, - 125.784, - 168.727, - 188.367, - 195.859, - 202.49, - 199.3, - 193.697, - 200.055, - 207.97, - 144.334, - 105.702, + 48.053, + 59.459, + 95.079, + 148.368, + 197.569, + 208.795, + 222.54, + 229.537, + 230.774, + 231.695, + 231.256, + 230.218, + 154.893, + 108.265, 117.925, 79.99, 31.876, @@ -43188,20 +43188,20 @@ 31.876, 31.876, 28.45, - 10.828, - 6.041, - 42.707, - 31.806, - 76.843, - 70.742, - 107.994, - 120.919, - 128.488, - 136.03, - 143.958, - 110.37, - 74.915, - 8.875, + 11.33, + 11.432, + 59.681, + 59.886, + 113.184, + 113.313, + 153.99, + 167.671, + 173.097, + 176.113, + 176.436, + 132.305, + 85.373, + 11.408, 31.876, 31.876, 31.876, @@ -43212,20 +43212,20 @@ 33.107, 33.107, 29.681, - 48.31, - 71.827, - 113.161, - 167.714, - 159.258, - 159.942, - 167.498, - 175.197, - 181.897, - 190.391, - 196.271, - 204.682, - 163.608, - 163.216, + 49.294, + 77.186, + 130.541, + 196.689, + 196.854, + 203.777, + 214.898, + 223.316, + 228.14, + 231.797, + 230.081, + 227.916, + 174.641, + 166.063, 159.964, 60.908, 33.107, @@ -43236,20 +43236,20 @@ 33.107, 33.107, 29.681, - 48.437, - 71.768, - 112.418, - 166.657, - 165.981, - 172.32, - 174.723, - 178.891, - 184.739, - 192.746, - 201.318, - 210.817, - 167.725, - 166.819, + 49.292, + 77.187, + 130.555, + 196.708, + 204.607, + 217.02, + 222.966, + 227.813, + 231.518, + 234.627, + 235.503, + 234.257, + 178.849, + 169.635, 165.776, 60.908, 33.107, @@ -43260,20 +43260,20 @@ 33.107, 33.107, 29.681, - 48.474, - 71.793, - 112.281, - 166.35, - 157.651, - 151.491, - 153.568, - 160.289, - 163.883, - 170.067, - 179.297, - 189.762, - 153.518, - 162.475, + 49.291, + 77.186, + 130.556, + 196.712, + 196.882, + 197.011, + 202.769, + 210.136, + 211.594, + 212.638, + 213.866, + 213.473, + 164.754, + 165.382, 156.431, 60.908, 33.107, @@ -43284,20 +43284,20 @@ 33.107, 33.107, 29.681, - 48.516, - 71.905, - 112.538, - 166.695, - 158.005, - 155.621, - 161.882, - 171.856, - 182.136, - 190.453, - 198.107, - 207.482, - 168.334, - 172.469, + 49.29, + 77.183, + 130.55, + 196.704, + 196.874, + 201.101, + 211.151, + 221.931, + 230.203, + 233.56, + 233.32, + 231.802, + 179.912, + 175.493, 167.43, 60.908, 33.107, @@ -43308,20 +43308,20 @@ 33.107, 33.107, 33.107, - 48.518, - 71.98, - 112.407, - 169.503, - 187.031, - 198.831, - 201.658, - 205.091, - 208.856, - 215.799, - 218.906, - 223.33, - 177.023, - 176.435, + 49.29, + 77.18, + 130.551, + 199.579, + 225.992, + 244.317, + 250.804, + 254.972, + 256.812, + 258.548, + 253.662, + 247.334, + 188.387, + 179.338, 170.69, 60.908, 33.107, @@ -43332,20 +43332,20 @@ 31.876, 31.876, 31.876, - 47.245, - 54.167, - 77.403, - 118.808, - 168.935, - 183.961, - 190.667, - 192.172, - 192.81, - 201.004, - 209.221, - 215.31, - 147.625, - 113.122, + 48.06, + 59.468, + 95.114, + 148.479, + 207.351, + 228.693, + 238.922, + 240.92, + 239.72, + 242.81, + 243.116, + 238.397, + 158.404, + 115.619, 122.218, 80.188, 31.876, @@ -43356,20 +43356,20 @@ 31.876, 31.876, 31.876, - 10.435, - 6.245, - 42.719, - 31.646, - 76.896, - 75.947, - 122.26, - 126.856, - 129.303, - 135.434, - 144.113, - 114.849, - 80.172, - 14.232, + 11.336, + 11.42, + 59.673, + 59.882, + 113.575, + 118.751, + 168.612, + 173.742, + 174.169, + 175.433, + 176.225, + 136.665, + 89.979, + 14.756, 31.876, 31.876, 31.876, @@ -43381,19 +43381,19 @@ 33.107, 33.107, 49.275, - 76.965, - 126.544, - 193.964, - 210.719, - 197.121, - 205.81, - 209.546, - 252.576, - 250.704, - 245.357, - 244.506, - 178.429, - 178.88, + 77.079, + 130.297, + 198.136, + 214.573, + 233.906, + 243.357, + 254.026, + 256.183, + 262.153, + 255.152, + 245.755, + 186.98, + 180.465, 171.613, 60.908, 33.107, @@ -43404,20 +43404,20 @@ 33.107, 33.107, 33.107, - 48.442, - 72.049, - 113.942, - 188.502, - 201.399, - 207.023, - 207.474, - 208.912, - 213.059, - 224.087, - 223.396, - 222.497, - 174.338, - 177.107, + 49.292, + 77.176, + 130.518, + 216.298, + 237.67, + 249.705, + 253.812, + 256.087, + 258.304, + 264.623, + 256.366, + 244.966, + 184.711, + 179.297, 171.492, 60.908, 33.107, @@ -43428,20 +43428,20 @@ 33.107, 33.107, 33.107, - 48.574, - 72.317, - 113.398, - 167.735, - 164.377, - 172.591, - 177.601, - 184.53, - 191.498, - 197.978, - 205.941, - 216.529, - 175.461, - 177.292, + 49.289, + 77.169, + 130.526, + 196.679, + 202.003, + 216.593, + 225.27, + 232.936, + 238.149, + 239.593, + 239.734, + 239.19, + 185.889, + 179.426, 172.16, 60.908, 33.107, @@ -43452,20 +43452,20 @@ 33.107, 33.107, 33.107, - 48.58, - 72.319, - 113.386, - 169.527, - 178.145, - 192.111, - 194.356, - 198.364, - 202.528, - 206.235, - 213.41, - 220.411, - 175.128, - 177.635, + 49.289, + 77.168, + 130.525, + 198.503, + 215.762, + 235.761, + 241.598, + 246.55, + 248.791, + 247.675, + 247.228, + 243.28, + 185.663, + 179.748, 171.138, 60.908, 33.107, @@ -43476,20 +43476,20 @@ 33.107, 33.107, 33.107, - 48.544, - 72.3, - 113.751, - 168.347, - 163.838, - 176.401, - 183.93, - 187.713, - 191.253, - 196.671, - 203.639, - 212.151, - 168.217, - 170.935, + 49.29, + 77.168, + 130.518, + 196.664, + 200.757, + 219.684, + 230.794, + 235.273, + 237.08, + 237.545, + 236.734, + 234.464, + 178.371, + 172.802, 166.763, 60.908, 33.107, @@ -43500,20 +43500,20 @@ 31.876, 31.876, 31.876, - 47.306, - 54.481, - 78.151, - 119.872, - 163.089, - 164.257, - 165.113, - 168.783, - 174.332, - 182.029, - 191.379, - 202.034, - 143.237, - 113.881, + 48.059, + 59.456, + 95.093, + 148.45, + 200.342, + 207.665, + 211.993, + 216.418, + 220.14, + 222.976, + 224.592, + 224.367, + 153.366, + 115.693, 130.113, 85.304, 31.876, @@ -43524,20 +43524,20 @@ 31.876, 31.876, 31.876, - 10.667, - 6.554, - 42.723, - 34.16, - 103.803, - 109.806, - 145.358, - 145.396, - 148.682, - 153.929, - 162.286, - 128.832, - 92.584, - 13.08, + 11.331, + 11.408, + 59.663, + 62.914, + 141.131, + 153.099, + 192.197, + 192.884, + 193.867, + 194.381, + 195.215, + 151.231, + 102.725, + 14.809, 31.876, 31.876, 31.876, @@ -43548,20 +43548,20 @@ 33.107, 33.107, 33.107, - 48.63, - 72.286, - 113.622, - 168.585, - 176.883, - 189.662, - 196.213, - 201.545, - 205.417, - 212.604, - 217.128, - 221.586, - 175.073, - 177.229, + 49.288, + 77.165, + 130.516, + 197.122, + 213.96, + 232.909, + 243.031, + 249.113, + 251.304, + 253.501, + 250.253, + 243.907, + 185.097, + 178.805, 170.841, 60.908, 33.107, @@ -43572,20 +43572,20 @@ 33.107, 33.107, 33.107, - 48.676, - 72.288, - 113.894, - 170.414, - 171.755, - 181.283, - 189.567, - 196.991, - 204.474, - 212.316, - 218.339, - 223.515, - 177.036, - 177.374, + 49.287, + 77.165, + 130.51, + 198.612, + 208.345, + 224.019, + 235.761, + 243.807, + 249.135, + 251.895, + 250.083, + 245.052, + 186.67, + 178.626, 169.942, 60.908, 33.107, @@ -43597,19 +43597,19 @@ 33.107, 33.107, 49.275, - 74.0, - 129.738, - 195.526, - 196.127, - 204.842, - 204.626, - 204.16, - 203.741, - 208.906, - 213.913, - 217.486, - 170.798, - 174.066, + 77.143, + 130.247, + 219.31, + 233.173, + 243.306, + 245.628, + 246.305, + 248.911, + 249.348, + 246.424, + 239.469, + 180.595, + 175.334, 166.738, 60.908, 33.107, @@ -43620,20 +43620,20 @@ 33.107, 33.107, 33.107, - 48.697, - 72.235, - 113.953, - 178.859, - 193.809, - 197.705, - 197.201, - 200.555, - 201.663, - 203.546, - 208.58, - 215.782, - 172.309, - 174.623, + 49.287, + 77.165, + 130.506, + 206.967, + 230.439, + 240.664, + 244.031, + 248.283, + 247.335, + 244.535, + 241.686, + 238.301, + 182.305, + 175.981, 167.161, 60.908, 33.107, @@ -43644,20 +43644,20 @@ 33.107, 33.107, 33.107, - 52.226, - 72.529, - 113.568, - 172.25, - 177.761, - 181.859, - 185.333, - 189.847, - 195.404, - 201.982, - 206.012, - 208.604, - 161.823, - 167.062, + 52.711, + 77.156, + 130.51, + 200.952, + 214.857, + 225.073, + 231.817, + 237.132, + 240.919, + 242.683, + 238.951, + 230.73, + 171.526, + 168.243, 153.667, 60.908, 33.107, @@ -43668,20 +43668,20 @@ 31.876, 31.876, 31.876, - 50.998, - 54.53, - 78.41, - 120.118, - 169.125, - 176.206, - 181.406, - 185.881, - 199.248, - 194.538, - 202.474, - 210.75, - 143.03, - 109.278, + 51.48, + 59.449, + 95.077, + 148.484, + 206.14, + 219.293, + 228.108, + 233.157, + 234.622, + 234.697, + 234.665, + 232.309, + 152.428, + 110.191, 116.308, 79.921, 31.876, @@ -43692,20 +43692,20 @@ 31.876, 31.876, 31.876, - 14.275, - 5.889, - 42.873, - 31.359, - 75.585, - 69.075, - 100.688, - 99.703, - 101.981, - 106.908, - 114.997, - 90.184, - 67.457, - 17.116, + 14.755, + 11.42, + 59.654, + 59.871, + 113.185, + 113.322, + 148.839, + 148.88, + 148.865, + 148.81, + 148.683, + 113.072, + 77.402, + 18.212, 31.876, 31.876, 31.876, @@ -43716,20 +43716,20 @@ 33.107, 33.107, 33.107, - 52.472, - 72.331, - 112.58, - 165.795, - 156.453, - 149.599, - 147.185, - 154.302, - 158.742, - 164.773, - 173.314, - 184.196, - 147.902, - 155.146, + 52.949, + 77.24, + 130.522, + 196.698, + 196.88, + 197.023, + 198.407, + 206.05, + 208.264, + 208.749, + 208.674, + 207.931, + 158.19, + 156.332, 150.988, 60.908, 33.107, @@ -43740,20 +43740,20 @@ 33.107, 33.107, 33.107, - 52.378, - 72.557, - 112.816, - 183.329, - 191.612, - 197.51, - 202.761, - 212.755, - 219.11, - 219.066, - 222.058, - 228.703, - 184.893, - 191.117, + 52.708, + 77.149, + 130.514, + 213.681, + 231.2, + 243.563, + 252.669, + 263.43, + 267.455, + 262.049, + 256.706, + 252.023, + 194.936, + 192.172, 181.044, 60.908, 33.107, @@ -43764,20 +43764,20 @@ 33.107, 33.107, 33.107, - 52.38, - 72.538, - 125.266, - 214.433, - 225.6, - 229.346, - 230.492, - 235.955, - 236.869, - 242.541, - 247.348, - 253.376, - 197.303, - 192.459, + 52.708, + 77.149, + 143.073, + 244.71, + 264.848, + 274.687, + 279.743, + 286.209, + 285.058, + 285.54, + 282.129, + 276.924, + 207.449, + 193.567, 178.575, 60.908, 33.107, @@ -43788,20 +43788,20 @@ 33.107, 33.107, 33.107, - 52.416, - 72.638, - 131.175, - 218.073, - 215.585, - 217.355, - 222.816, - 226.808, - 227.396, - 229.979, - 232.705, - 234.044, - 183.192, - 183.716, + 52.707, + 77.146, + 148.787, + 248.167, + 254.847, + 263.137, + 272.501, + 277.48, + 275.794, + 273.17, + 267.501, + 257.518, + 193.264, + 184.754, 169.919, 60.908, 33.107, @@ -43812,20 +43812,20 @@ 33.107, 33.107, 33.107, - 52.451, - 72.695, - 113.057, - 166.922, - 162.344, - 167.777, - 170.074, - 173.653, - 178.795, - 186.463, - 193.233, - 202.222, - 159.194, - 164.895, + 52.706, + 77.143, + 130.505, + 196.669, + 201.251, + 213.216, + 219.396, + 223.953, + 226.894, + 229.379, + 227.881, + 225.486, + 169.036, + 165.727, 153.521, 60.908, 33.107, @@ -43836,20 +43836,20 @@ 31.876, 31.876, 31.876, - 51.179, - 54.964, - 77.786, - 122.918, - 188.844, - 198.641, - 203.256, - 204.018, - 207.52, - 215.016, - 223.818, - 227.63, - 156.3, - 123.708, + 51.476, + 59.429, + 95.073, + 152.862, + 228.345, + 244.803, + 253.219, + 254.56, + 255.945, + 257.977, + 258.333, + 250.713, + 165.964, + 124.484, 130.631, 83.16, 31.876, @@ -43860,20 +43860,20 @@ 31.876, 31.876, 31.876, - 14.49, - 7.053, - 44.335, - 48.898, - 110.919, - 110.258, - 147.965, - 153.12, - 157.445, - 163.662, - 172.527, - 133.919, - 95.783, - 17.621, + 14.75, + 11.383, + 60.999, + 77.628, + 148.613, + 154.225, + 195.377, + 201.131, + 203.361, + 204.196, + 205.011, + 155.662, + 104.757, + 18.193, 31.876, 31.876, 31.876, @@ -43884,20 +43884,20 @@ 33.107, 33.107, 33.107, - 52.45, - 72.879, - 118.902, - 202.839, - 208.481, - 211.599, - 214.598, - 219.513, - 222.489, - 227.176, - 234.607, - 237.829, - 187.642, - 192.091, + 52.706, + 77.139, + 135.346, + 231.291, + 245.561, + 254.923, + 261.569, + 267.243, + 268.311, + 267.913, + 267.349, + 259.468, + 196.456, + 192.582, 176.892, 60.908, 33.107, @@ -43908,20 +43908,20 @@ 33.107, 33.107, 33.107, - 52.482, - 72.939, - 116.666, - 201.999, - 207.842, - 221.123, - 218.097, - 221.73, - 233.53, - 238.16, - 230.208, - 228.106, - 175.426, - 180.15, + 52.706, + 77.137, + 132.905, + 229.975, + 243.246, + 256.148, + 264.86, + 269.061, + 271.694, + 268.026, + 258.347, + 247.379, + 182.721, + 180.369, 165.451, 60.908, 33.107, @@ -43932,20 +43932,20 @@ 33.107, 33.107, 33.107, - 52.524, - 72.597, - 115.79, - 199.444, - 203.255, - 206.495, - 213.339, - 218.809, - 219.621, - 225.23, - 233.323, - 238.839, - 190.705, - 196.604, + 52.705, + 77.148, + 131.933, + 227.347, + 239.92, + 249.171, + 259.559, + 265.747, + 264.436, + 265.087, + 264.893, + 258.715, + 198.385, + 196.651, 180.49, 60.908, 33.107, @@ -43956,19 +43956,19 @@ 33.107, 33.107, 33.107, - 52.549, - 72.656, - 118.189, - 200.486, - 211.201, - 219.439, - 222.482, - 224.468, - 225.995, - 230.421, - 237.109, - 241.942, - 195.92, + 52.705, + 77.144, + 134.228, + 228.117, + 247.384, + 261.295, + 267.811, + 270.47, + 269.826, + 269.209, + 267.623, + 261.212, + 203.283, 202.534, 185.334, 60.908, @@ -43980,19 +43980,19 @@ 33.107, 33.107, 33.107, - 55.917, - 72.753, - 117.74, - 200.853, - 207.633, - 213.281, - 215.369, - 217.76, - 221.007, - 229.108, - 230.23, - 235.229, - 187.965, + 56.133, + 77.141, + 133.641, + 228.445, + 243.955, + 256.106, + 261.775, + 264.987, + 266.203, + 269.222, + 262.021, + 255.686, + 195.869, 192.713, 176.597, 60.908, @@ -44004,19 +44004,19 @@ 31.876, 31.876, 31.876, - 54.687, - 55.24, - 78.752, - 120.022, - 159.935, - 161.369, - 166.507, - 171.165, - 175.71, - 183.474, - 191.938, - 200.949, - 137.093, + 54.902, + 59.419, + 95.045, + 148.413, + 197.419, + 205.429, + 214.295, + 219.783, + 222.059, + 224.481, + 224.788, + 222.387, + 145.347, 108.082, 116.021, 79.921, @@ -44028,19 +44028,19 @@ 31.876, 31.876, 31.876, - 17.922, - 6.976, - 42.766, - 30.452, - 78.092, - 67.95, - 107.556, - 114.88, - 124.426, - 131.497, - 139.208, - 104.826, - 70.206, + 18.177, + 11.389, + 59.623, + 59.862, + 113.126, + 113.319, + 152.363, + 164.567, + 171.81, + 173.316, + 172.534, + 126.562, + 78.517, 21.597, 31.876, 31.876, @@ -44052,19 +44052,19 @@ 33.107, 33.107, 33.107, - 55.946, - 72.91, - 113.26, - 166.972, - 158.106, - 155.036, - 169.02, - 179.789, - 183.733, - 188.384, - 195.821, - 202.81, - 156.09, + 56.132, + 77.127, + 130.481, + 196.649, + 196.826, + 199.962, + 217.665, + 229.273, + 230.691, + 229.945, + 228.88, + 224.211, + 164.118, 164.213, 152.035, 60.908, @@ -44076,19 +44076,19 @@ 33.107, 33.107, 33.107, - 55.986, - 73.003, - 113.742, - 167.549, - 160.994, - 162.993, - 165.387, - 173.138, - 185.718, - 198.451, - 204.494, - 211.091, - 165.534, + 56.131, + 77.125, + 130.472, + 196.639, + 199.115, + 207.215, + 212.94, + 221.261, + 231.554, + 238.864, + 236.637, + 231.628, + 172.996, 174.004, 158.175, 60.908, @@ -44100,19 +44100,19 @@ 33.107, 33.107, 33.107, - 56.02, - 73.093, - 113.856, - 167.58, - 160.271, - 165.668, - 172.734, - 180.483, - 189.777, - 201.894, - 208.173, - 214.856, - 171.031, + 56.131, + 77.123, + 130.468, + 196.636, + 198.477, + 210.263, + 220.797, + 228.853, + 235.995, + 242.481, + 240.184, + 235.412, + 178.48, 184.129, 165.084, 60.908, @@ -44124,19 +44124,19 @@ 33.107, 33.107, 33.107, - 56.014, - 72.866, - 113.335, - 168.237, - 172.947, - 179.939, - 187.982, - 195.851, - 197.785, - 202.093, - 208.601, - 216.515, - 172.342, + 56.131, + 77.127, + 130.474, + 198.214, + 212.497, + 225.992, + 237.809, + 246.171, + 245.544, + 244.173, + 242.03, + 238.045, + 180.132, 184.525, 168.283, 60.908, @@ -44148,19 +44148,19 @@ 33.107, 33.107, 33.107, - 56.05, - 72.988, - 113.782, - 188.303, - 193.598, - 201.477, - 205.891, - 210.845, - 217.219, - 219.415, - 218.332, - 220.912, - 176.794, + 56.13, + 77.122, + 130.481, + 217.216, + 231.686, + 246.011, + 254.006, + 259.501, + 263.74, + 260.341, + 250.718, + 241.633, + 184.137, 188.559, 171.178, 60.908, @@ -44172,19 +44172,19 @@ 31.876, 31.876, 31.876, - 54.86, - 55.37, - 79.367, - 129.637, - 193.878, - 204.353, - 205.623, - 207.468, - 215.813, - 219.717, - 226.885, - 226.508, - 155.559, + 54.898, + 59.411, + 95.023, + 157.33, + 230.858, + 247.822, + 252.756, + 255.346, + 254.929, + 253.934, + 253.288, + 245.542, + 162.098, 127.835, 128.395, 82.915, @@ -44197,18 +44197,18 @@ 31.876, 31.876, 18.171, - 7.067, - 44.17, - 34.506, - 91.925, - 93.249, - 137.482, - 142.292, - 142.884, - 169.838, - 173.305, - 121.346, - 87.294, + 11.378, + 59.597, + 59.791, + 124.744, + 135.774, + 177.475, + 180.363, + 181.133, + 180.206, + 179.653, + 137.767, + 93.361, 25.024, 31.876, 31.876, @@ -44221,18 +44221,18 @@ 33.107, 33.107, 56.128, - 73.15, - 114.968, - 192.858, - 200.733, - 205.081, - 208.479, - 213.847, - 214.529, - 217.859, - 221.132, - 225.472, - 179.644, + 77.123, + 130.487, + 220.172, + 237.069, + 248.011, + 255.06, + 261.027, + 259.511, + 257.532, + 252.136, + 244.981, + 186.116, 188.321, 169.413, 60.908, @@ -44245,18 +44245,18 @@ 33.107, 33.107, 56.128, - 73.323, - 114.599, - 172.349, - 179.43, - 186.425, - 189.579, - 193.663, - 196.859, - 201.67, - 207.687, - 216.582, - 174.372, + 77.114, + 130.443, + 199.721, + 215.283, + 228.575, + 235.381, + 240.178, + 241.212, + 240.68, + 238.485, + 235.845, + 180.683, 184.477, 165.494, 60.908, @@ -44269,18 +44269,18 @@ 33.107, 33.107, 56.128, - 73.323, - 114.764, - 169.774, - 166.772, - 173.766, - 177.22, - 181.223, - 189.237, - 210.173, - 219.035, - 217.642, - 172.595, + 77.113, + 130.439, + 196.587, + 201.811, + 214.496, + 220.905, + 225.418, + 231.546, + 236.325, + 235.996, + 234.193, + 178.372, 181.391, 163.898, 60.908, @@ -44293,17 +44293,17 @@ 33.107, 33.107, 56.128, - 74.605, - 114.992, - 169.76, - 170.679, - 184.431, - 194.512, - 199.721, - 225.704, - 243.27, - 213.785, - 234.818, + 77.13, + 130.436, + 196.819, + 206.641, + 227.053, + 240.806, + 246.582, + 246.726, + 245.371, + 243.777, + 238.668, 183.273, 190.751, 169.256, @@ -44317,18 +44317,18 @@ 33.107, 33.107, 56.128, - 73.147, - 115.509, - 178.437, - 186.189, - 190.941, - 194.131, - 198.609, - 201.658, - 210.288, - 215.638, - 218.398, - 174.335, + 77.123, + 130.432, + 204.356, + 220.565, + 231.886, + 238.261, + 243.297, + 244.29, + 243.013, + 240.747, + 237.649, + 180.246, 182.821, 156.014, 60.908, @@ -44341,18 +44341,18 @@ 31.876, 31.876, 58.323, - 55.427, - 78.68, - 120.244, - 159.561, - 162.58, - 174.58, - 184.141, - 197.359, - 205.92, - 212.901, - 219.427, - 147.346, + 59.398, + 95.015, + 148.384, + 196.78, + 206.109, + 221.79, + 232.107, + 242.939, + 245.887, + 244.083, + 238.566, + 153.113, 120.233, 117.733, 80.535, @@ -44365,18 +44365,18 @@ 31.876, 31.876, 21.597, - 7.38, - 43.155, - 31.882, - 77.183, - 72.224, - 123.504, - 169.002, - 181.914, - 181.968, - 152.145, - 120.247, - 85.514, + 11.353, + 59.586, + 59.81, + 113.113, + 114.517, + 169.306, + 181.08, + 183.212, + 182.978, + 182.682, + 138.904, + 91.014, 28.45, 31.876, 31.876, @@ -44389,18 +44389,18 @@ 31.876, 31.876, 21.597, - 7.476, - 43.656, - 31.969, - 76.131, - 70.022, - 106.939, - 112.727, - 145.224, - 148.101, - 158.275, - 111.936, - 73.622, + 11.353, + 59.578, + 59.804, + 113.128, + 113.257, + 153.525, + 159.654, + 161.225, + 161.237, + 161.357, + 124.069, + 78.796, 28.45, 31.876, 31.876, @@ -44413,18 +44413,18 @@ 33.107, 33.107, 59.554, - 73.056, - 114.511, - 168.929, - 160.096, - 155.575, - 160.678, - 174.437, - 183.499, - 188.444, - 195.864, - 206.281, - 165.271, + 77.118, + 130.429, + 196.587, + 196.765, + 198.372, + 206.591, + 220.576, + 226.999, + 226.239, + 225.082, + 223.553, + 169.91, 177.752, 153.747, 60.908, @@ -44437,18 +44437,18 @@ 33.107, 33.107, 59.554, - 73.24, - 114.882, - 169.286, - 164.644, - 175.498, - 180.344, - 189.146, - 197.629, - 205.167, - 230.219, - 220.728, - 178.543, + 77.112, + 130.425, + 196.578, + 200.677, + 217.526, + 225.365, + 234.337, + 240.158, + 242.238, + 240.804, + 237.753, + 179.776, 188.146, 167.827, 60.908, @@ -44461,18 +44461,18 @@ 33.107, 33.107, 59.554, - 73.231, - 114.964, - 173.329, - 180.571, - 194.573, - 200.573, - 203.767, - 212.004, - 216.195, - 220.788, - 227.322, - 183.662, + 77.111, + 130.422, + 200.786, + 216.919, + 237.358, + 246.802, + 250.554, + 256.308, + 254.765, + 250.359, + 244.797, + 188.068, 197.271, 177.629, 60.908, @@ -44485,18 +44485,18 @@ 33.107, 33.107, 59.554, - 73.148, - 115.909, - 196.84, - 205.086, - 208.119, - 209.05, - 214.248, - 220.284, - 225.842, - 229.715, - 236.463, - 192.914, + 77.113, + 131.555, + 224.407, + 241.771, + 251.269, + 255.676, + 261.447, + 265.034, + 264.39, + 258.802, + 253.356, + 196.937, 206.927, 182.184, 60.908, @@ -44509,18 +44509,18 @@ 31.876, 31.876, 58.323, - 55.297, - 78.222, - 142.04, - 206.101, - 211.766, - 213.835, - 217.086, - 219.835, - 222.592, - 227.123, - 234.9, - 166.626, + 59.396, + 95.072, + 171.863, + 245.6, + 257.851, + 263.316, + 266.845, + 267.112, + 263.628, + 258.801, + 253.286, + 171.145, 144.942, 140.346, 98.048, @@ -44533,18 +44533,18 @@ 31.876, 31.876, 21.597, - 7.109, - 42.702, - 39.969, - 105.773, - 115.363, - 157.163, - 159.991, - 165.488, - 168.973, - 170.883, - 136.191, - 98.211, + 11.354, + 59.821, + 70.253, + 145.887, + 162.105, + 207.468, + 210.318, + 212.87, + 210.065, + 202.498, + 154.711, + 102.663, 31.876, 31.876, 31.876, @@ -44557,18 +44557,18 @@ 33.107, 33.107, 59.554, - 72.973, - 113.988, - 178.889, - 196.421, - 206.115, - 204.945, - 204.981, - 208.238, - 214.433, - 221.312, - 227.014, - 179.239, + 77.111, + 130.47, + 207.648, + 234.588, + 251.119, + 253.616, + 254.072, + 254.533, + 254.771, + 252.507, + 245.246, + 183.543, 195.399, 173.321, 60.908, @@ -44581,18 +44581,18 @@ 33.107, 33.107, 59.554, - 73.165, - 114.022, - 168.384, - 171.359, - 181.655, - 191.488, - 199.235, - 203.408, - 208.896, - 216.126, - 224.077, - 179.208, + 77.104, + 130.42, + 197.111, + 209.221, + 225.684, + 238.324, + 245.582, + 246.277, + 245.738, + 244.694, + 240.905, + 183.053, 194.855, 170.567, 60.908, @@ -44605,18 +44605,18 @@ 33.107, 33.107, 59.554, - 73.2, - 114.441, - 168.924, - 171.3, - 178.538, - 182.588, - 191.381, - 200.612, - 207.887, - 212.811, - 219.512, - 175.538, + 77.107, + 130.415, + 196.905, + 208.126, + 221.323, + 228.124, + 236.536, + 242.193, + 243.924, + 240.612, + 235.601, + 178.93, 190.137, 165.915, 60.908, @@ -44629,18 +44629,18 @@ 33.107, 33.107, 59.554, - 73.148, - 114.807, - 168.924, - 160.009, - 171.956, - 191.068, - 196.121, - 198.626, - 203.84, - 210.058, - 217.098, - 169.846, + 77.115, + 130.41, + 196.569, + 196.771, + 214.882, + 237.404, + 243.028, + 242.535, + 241.373, + 238.047, + 231.372, + 172.121, 184.899, 163.563, 60.908, @@ -44653,18 +44653,18 @@ 33.107, 33.107, 59.554, - 72.976, - 115.349, - 169.731, - 164.867, - 166.983, - 165.621, - 165.982, - 173.121, - 185.393, - 196.214, - 206.584, - 172.032, + 77.131, + 130.43, + 196.574, + 201.22, + 210.844, + 212.836, + 213.379, + 217.751, + 223.068, + 223.455, + 222.344, + 174.756, 185.488, 163.359, 60.908, @@ -44677,18 +44677,18 @@ 31.876, 31.876, 61.75, - 55.051, - 77.756, - 117.398, - 155.253, - 152.759, - 153.025, - 155.969, - 161.462, - 169.832, - 180.524, - 193.713, - 144.077, + 59.4, + 95.0, + 148.396, + 196.825, + 201.808, + 205.697, + 208.705, + 210.942, + 212.226, + 212.63, + 211.85, + 147.515, 121.546, 116.464, 80.045, @@ -44701,18 +44701,18 @@ 31.876, 31.876, 25.024, - 7.024, - 41.683, - 28.056, - 70.864, - 71.12, - 119.681, - 129.453, - 136.485, - 142.556, - 150.969, - 116.431, - 84.87, + 11.344, + 59.57, + 59.835, + 113.368, + 120.602, + 172.424, + 182.447, + 185.806, + 184.968, + 183.345, + 134.61, + 88.084, 31.876, 31.876, 31.876, @@ -44725,18 +44725,18 @@ 33.107, 33.107, 62.98, - 72.813, - 112.855, - 165.405, - 156.196, - 155.528, - 156.055, - 158.537, - 163.201, - 170.275, - 179.679, - 192.25, - 160.94, + 77.102, + 130.419, + 196.611, + 197.55, + 203.676, + 207.478, + 209.591, + 210.771, + 211.131, + 210.707, + 209.803, + 163.802, 176.411, 152.162, 60.908, @@ -44749,18 +44749,18 @@ 33.107, 33.107, 62.98, - 72.938, - 113.481, - 166.875, - 157.675, - 151.799, - 151.184, - 161.891, - 169.714, - 176.11, - 184.984, - 196.807, - 164.66, + 77.101, + 130.41, + 196.588, + 196.779, + 196.907, + 199.154, + 209.58, + 213.971, + 214.498, + 214.413, + 213.25, + 166.913, 180.033, 153.998, 60.908, @@ -44773,18 +44773,18 @@ 33.107, 33.107, 62.98, - 73.014, - 114.382, - 167.633, - 157.678, - 150.758, - 147.296, - 147.017, - 150.196, - 157.669, - 171.719, - 187.327, - 156.208, + 77.11, + 130.407, + 196.577, + 196.776, + 196.923, + 197.009, + 197.04, + 197.008, + 198.075, + 201.913, + 203.702, + 158.088, 169.819, 151.179, 60.908, @@ -44797,18 +44797,18 @@ 33.107, 33.107, 63.026, - 72.905, - 113.333, - 166.207, - 156.707, - 152.473, - 157.594, - 165.929, - 172.812, - 178.947, - 187.822, - 199.877, - 165.419, + 77.102, + 130.406, + 196.592, + 196.79, + 198.71, + 206.642, + 214.46, + 217.73, + 217.494, + 216.906, + 215.997, + 167.228, 176.769, 152.636, 60.908, @@ -44821,18 +44821,18 @@ 33.107, 33.107, 63.025, - 73.049, - 114.018, - 167.548, - 157.922, - 158.919, - 169.372, - 174.469, - 179.806, - 187.526, - 197.285, - 208.971, - 175.641, + 77.101, + 130.397, + 196.571, + 196.768, + 204.254, + 218.135, + 223.292, + 225.078, + 226.164, + 225.921, + 224.086, + 177.069, 184.169, 160.818, 60.908, @@ -44845,18 +44845,18 @@ 31.876, 31.876, 61.75, - 55.331, - 79.64, - 123.344, - 177.575, - 182.283, - 190.459, - 198.841, - 205.661, - 212.949, - 222.913, - 233.302, - 170.254, + 59.408, + 94.981, + 150.939, + 215.389, + 228.355, + 240.384, + 249.033, + 252.516, + 253.184, + 253.203, + 249.482, + 171.821, 138.143, 133.964, 88.935, @@ -44869,18 +44869,18 @@ 31.876, 31.876, 25.024, - 7.139, - 42.295, - 35.999, - 102.182, - 114.174, - 156.939, - 160.337, - 172.008, - 179.11, - 184.31, - 159.057, - 119.965, + 11.341, + 59.544, + 67.021, + 143.645, + 162.408, + 208.513, + 211.633, + 219.652, + 219.726, + 214.568, + 174.958, + 121.352, 31.876, 31.876, 31.876, @@ -44893,18 +44893,18 @@ 33.107, 33.107, 62.98, - 72.919, - 127.087, - 211.671, - 226.123, - 246.379, - 246.466, - 242.8, - 244.101, - 247.915, - 248.872, - 249.31, - 204.442, + 77.099, + 144.043, + 242.05, + 266.569, + 293.178, + 296.285, + 292.059, + 289.674, + 286.624, + 277.767, + 264.51, + 205.641, 208.069, 185.641, 60.908, @@ -44917,18 +44917,18 @@ 33.107, 33.107, 62.98, - 72.982, - 123.293, - 207.163, - 210.261, - 215.724, - 227.436, - 235.624, - 236.385, - 244.05, - 248.984, - 249.607, - 205.033, + 77.099, + 140.057, + 237.064, + 249.984, + 261.871, + 276.517, + 284.12, + 281.135, + 282.241, + 277.499, + 264.47, + 205.977, 209.182, 186.043, 60.908, @@ -44941,18 +44941,18 @@ 33.107, 33.107, 62.98, - 73.194, - 114.655, - 168.479, - 161.132, - 170.957, - 173.901, - 179.86, - 186.15, - 192.197, - 201.642, - 211.882, - 175.026, + 77.101, + 130.381, + 196.545, + 198.756, + 215.249, + 221.582, + 227.663, + 231.054, + 230.628, + 230.232, + 226.497, + 175.797, 181.45, 155.446, 60.908, @@ -44965,18 +44965,18 @@ 33.107, 33.107, 62.98, - 72.99, - 114.052, - 167.608, - 161.073, - 171.908, - 175.205, - 178.051, - 182.167, - 187.952, - 195.762, - 206.601, - 172.559, + 77.098, + 130.38, + 196.555, + 199.556, + 216.533, + 222.828, + 225.391, + 226.333, + 225.781, + 223.913, + 220.944, + 173.231, 178.093, 154.003, 60.908, @@ -44989,18 +44989,18 @@ 33.107, 33.107, 62.98, - 73.812, - 116.017, - 172.924, - 158.194, - 164.576, - 180.857, - 184.465, - 195.657, - 209.228, - 193.341, - 204.72, - 173.852, + 77.105, + 130.371, + 196.498, + 196.752, + 203.823, + 218.522, + 224.1, + 223.808, + 222.589, + 221.613, + 218.955, + 174.32, 179.378, 154.294, 60.908, @@ -45013,17 +45013,17 @@ 31.876, 31.876, 61.75, - 55.571, - 79.553, - 120.855, - 160.103, - 157.324, - 155.608, - 165.767, - 177.435, - 187.498, - 195.948, - 207.546, + 59.39, + 94.949, + 148.316, + 196.72, + 196.804, + 197.759, + 207.067, + 213.627, + 214.632, + 214.514, + 213.564, 150.55, 116.098, 115.358, @@ -45037,17 +45037,17 @@ 31.876, 31.876, 28.45, - 7.524, - 44.044, - 31.807, - 79.62, - 73.11, - 110.069, - 124.62, - 118.668, - 130.767, - 129.793, - 109.554, + 11.344, + 59.518, + 59.749, + 113.031, + 113.165, + 148.598, + 148.387, + 148.488, + 148.279, + 148.298, + 112.568, 87.355, 31.876, 31.876, @@ -45061,17 +45061,17 @@ 33.107, 33.107, 66.636, - 73.473, - 115.157, - 169.505, - 160.525, - 169.031, - 181.285, - 192.173, - 198.488, - 201.825, - 205.525, - 211.204, + 77.238, + 130.361, + 196.52, + 197.115, + 211.992, + 227.586, + 238.742, + 241.782, + 238.47, + 232.273, + 224.124, 175.316, 176.551, 154.233, @@ -45085,17 +45085,17 @@ 33.107, 33.107, 66.407, - 74.814, - 116.593, - 169.253, - 159.98, - 153.764, - 151.594, - 153.79, - 156.969, - 163.556, - 173.228, - 186.715, + 77.112, + 130.362, + 196.518, + 196.713, + 196.844, + 197.952, + 200.326, + 200.255, + 200.127, + 199.898, + 199.512, 159.809, 169.604, 151.465, @@ -45109,17 +45109,17 @@ 33.107, 33.107, 66.577, - 73.438, - 115.087, - 168.561, - 159.627, - 159.87, - 163.503, - 166.056, - 169.576, - 176.131, - 185.966, - 199.139, + 77.149, + 130.36, + 196.525, + 197.424, + 204.405, + 211.263, + 213.988, + 213.866, + 213.411, + 212.674, + 211.559, 171.202, 173.369, 153.622, @@ -45133,17 +45133,17 @@ 33.107, 33.107, 66.452, - 73.44, - 114.73, - 167.709, - 161.244, - 161.924, - 168.127, - 177.655, - 183.469, - 201.472, - 210.378, - 225.888, + 77.105, + 130.369, + 196.672, + 200.724, + 208.112, + 217.618, + 226.992, + 229.172, + 229.536, + 228.948, + 226.633, 180.121, 185.293, 162.607, @@ -45157,17 +45157,17 @@ 33.107, 33.107, 66.407, - 73.788, - 126.89, - 182.745, - 169.912, - 214.392, - 199.733, - 206.362, - 247.994, - 243.795, - 222.187, - 240.543, + 77.105, + 130.289, + 196.494, + 209.995, + 237.108, + 249.87, + 256.245, + 257.365, + 257.696, + 250.472, + 240.723, 192.361, 192.849, 166.779, @@ -45181,17 +45181,17 @@ 31.876, 31.876, 65.176, - 55.358, - 78.101, - 117.688, - 155.724, - 159.008, - 169.196, - 217.612, - 210.627, - 225.005, - 223.608, - 216.065, + 59.385, + 94.937, + 148.335, + 196.914, + 206.711, + 220.134, + 223.985, + 225.673, + 225.831, + 224.892, + 222.654, 157.365, 118.957, 117.713, @@ -45205,17 +45205,17 @@ 31.876, 31.876, 28.45, - 7.343, - 42.942, - 29.557, - 72.813, - 69.545, - 110.274, - 120.2, - 127.898, - 134.582, - 143.575, - 106.198, + 11.338, + 59.507, + 59.755, + 113.316, + 116.332, + 159.926, + 169.162, + 172.769, + 172.408, + 170.443, + 118.174, 92.591, 31.876, 31.876, @@ -45229,17 +45229,17 @@ 31.876, 31.876, 28.45, - 7.499, - 43.487, - 30.466, - 74.48, - 83.445, - 126.852, - 124.625, - 127.56, - 131.267, - 136.282, - 102.791, + 11.338, + 59.5, + 59.741, + 113.752, + 129.041, + 175.134, + 172.368, + 171.542, + 168.379, + 163.149, + 114.705, 90.858, 31.876, 31.876, @@ -45253,17 +45253,17 @@ 33.107, 33.107, 66.407, - 73.311, - 114.389, - 167.637, - 162.027, - 167.722, - 166.114, - 167.451, - 171.443, - 177.896, - 186.852, - 199.809, + 77.094, + 130.35, + 196.522, + 200.625, + 211.67, + 212.127, + 212.881, + 213.456, + 213.47, + 212.746, + 211.357, 172.194, 172.33, 153.998, @@ -45277,17 +45277,17 @@ 33.107, 33.107, 66.407, - 73.472, - 114.896, - 168.462, - 158.747, - 168.537, - 181.909, - 175.194, - 178.717, - 184.99, - 194.658, - 205.456, + 77.095, + 130.346, + 196.509, + 196.717, + 205.826, + 221.148, + 221.802, + 221.367, + 220.319, + 219.349, + 215.962, 173.245, 171.656, 152.64, @@ -45301,17 +45301,17 @@ 33.107, 33.107, 66.407, - 73.571, - 115.016, - 168.177, - 158.693, - 157.448, - 162.752, - 167.823, - 173.186, - 180.046, - 189.363, - 202.362, + 77.094, + 130.341, + 196.506, + 196.943, + 201.593, + 209.485, + 214.005, + 215.548, + 215.54, + 214.522, + 212.864, 175.4, 173.341, 154.116, @@ -45325,17 +45325,17 @@ 33.107, 33.107, 66.407, - 73.49, - 114.887, - 168.161, - 158.359, - 153.019, - 151.569, - 153.277, - 158.398, - 165.99, - 176.089, - 190.298, + 77.093, + 130.335, + 196.504, + 196.75, + 197.502, + 198.921, + 200.201, + 201.465, + 201.837, + 201.433, + 201.04, 164.875, 171.12, 152.377, @@ -45349,17 +45349,17 @@ 31.876, 31.876, 68.602, - 55.816, - 79.513, - 120.207, - 159.059, - 153.631, - 151.64, - 155.48, - 167.728, - 174.622, - 183.623, - 196.815, + 59.38, + 94.907, + 148.283, + 196.703, + 196.826, + 196.889, + 199.535, + 208.001, + 208.794, + 208.157, + 207.154, 148.697, 115.496, 115.348, @@ -45373,17 +45373,17 @@ 31.876, 31.876, 31.876, - 7.889, - 44.614, - 32.763, - 82.099, - 75.626, - 104.467, - 109.827, - 115.859, - 114.039, - 127.429, - 103.481, + 11.333, + 59.476, + 59.699, + 112.97, + 113.098, + 148.653, + 148.592, + 148.508, + 148.545, + 148.32, + 112.692, 94.208, 31.876, 31.876, @@ -45397,17 +45397,17 @@ 33.107, 33.107, 69.951, - 74.058, - 116.757, - 170.638, - 161.011, - 155.155, - 153.596, - 155.851, - 161.527, - 169.765, - 180.169, - 194.674, + 77.156, + 130.341, + 196.48, + 196.673, + 196.801, + 198.114, + 200.03, + 203.024, + 204.31, + 203.917, + 203.279, 168.085, 170.085, 151.897, @@ -45421,17 +45421,17 @@ 33.107, 33.107, 70.124, - 73.967, - 115.766, - 169.503, - 160.125, - 157.528, - 160.78, - 165.67, - 172.347, - 180.549, - 190.768, - 204.241, + 77.141, + 130.327, + 196.48, + 196.908, + 200.789, + 207.249, + 211.859, + 214.869, + 216.023, + 215.291, + 213.545, 175.664, 172.564, 154.01, @@ -45445,17 +45445,17 @@ 33.107, 33.107, 69.833, - 73.896, - 115.323, - 168.631, - 160.79, - 157.693, - 155.215, - 165.353, - 179.54, - 186.344, - 193.93, - 203.289, + 77.091, + 130.323, + 196.486, + 198.763, + 201.96, + 202.145, + 211.37, + 221.34, + 221.073, + 217.847, + 212.346, 170.933, 171.946, 153.328, @@ -45469,17 +45469,17 @@ 33.107, 33.107, 69.833, - 73.884, - 115.159, - 172.74, - 178.39, - 171.874, - 169.835, - 170.918, - 175.565, - 182.524, - 191.957, - 206.358, + 77.09, + 130.322, + 201.025, + 216.767, + 216.442, + 216.963, + 217.09, + 217.361, + 217.331, + 216.065, + 215.315, 178.777, 173.309, 154.675, @@ -45493,17 +45493,17 @@ 33.107, 33.107, 69.833, - 74.166, - 115.709, - 184.807, - 193.336, - 209.719, - 206.832, - 204.044, - 207.503, - 215.344, - 215.624, - 215.363, + 77.091, + 130.622, + 212.301, + 230.217, + 253.038, + 253.374, + 250.494, + 250.026, + 250.704, + 239.824, + 223.445, 180.041, 173.903, 155.364, @@ -45517,17 +45517,17 @@ 31.876, 31.876, 68.602, - 56.726, - 80.21, - 120.81, - 159.323, - 153.464, - 150.979, - 151.905, - 167.974, - 182.533, - 191.99, - 205.191, + 59.378, + 94.895, + 148.261, + 196.683, + 196.816, + 196.887, + 196.94, + 209.289, + 217.084, + 215.669, + 212.705, 149.481, 115.382, 115.348, @@ -45541,17 +45541,17 @@ 31.876, 31.876, 31.876, - 8.897, - 45.033, - 32.462, - 76.081, - 70.612, - 103.88, - 104.852, - 108.464, - 115.161, - 125.565, - 105.241, + 11.333, + 59.496, + 59.686, + 113.029, + 113.158, + 148.65, + 148.657, + 148.612, + 148.514, + 148.34, + 112.649, 97.634, 31.876, 31.876, @@ -45565,17 +45565,17 @@ 33.107, 33.107, 69.963, - 74.987, - 115.892, - 169.068, - 159.269, - 153.031, - 150.256, - 151.94, - 170.213, - 182.803, - 192.848, - 204.54, + 77.258, + 130.353, + 196.467, + 196.677, + 196.814, + 196.89, + 197.936, + 212.241, + 217.542, + 216.294, + 212.716, 172.891, 168.588, 150.775, @@ -45589,17 +45589,17 @@ 33.107, 33.107, 70.01, - 75.05, - 115.899, - 169.118, - 159.555, - 153.566, - 152.019, - 155.95, - 166.053, - 176.044, - 186.256, - 200.551, + 77.18, + 130.308, + 196.462, + 196.67, + 196.805, + 197.866, + 200.898, + 207.069, + 209.934, + 209.148, + 208.066, 172.22, 170.275, 152.008, @@ -45613,17 +45613,17 @@ 33.107, 33.107, 70.007, - 75.491, - 117.066, - 170.801, - 161.103, - 156.018, - 159.136, - 164.864, - 172.398, - 189.717, - 194.503, - 203.088, + 77.165, + 130.313, + 196.451, + 196.649, + 198.114, + 203.983, + 208.954, + 208.426, + 207.835, + 207.536, + 206.592, 171.518, 169.838, 151.854, @@ -45637,17 +45637,17 @@ 33.107, 33.107, 69.971, - 79.023, - 117.143, - 170.787, - 160.677, - 154.294, - 151.522, - 153.295, - 158.075, - 166.397, - 178.085, - 192.418, + 80.564, + 130.316, + 196.452, + 196.652, + 196.793, + 196.91, + 197.806, + 198.435, + 198.287, + 198.048, + 197.752, 169.914, 169.806, 151.616, @@ -45661,17 +45661,17 @@ 33.107, 33.107, 70.385, - 79.329, - 116.835, - 169.656, - 158.963, - 154.37, - 155.325, - 156.109, - 159.938, - 167.359, - 179.31, - 194.968, + 80.833, + 130.313, + 196.455, + 196.67, + 199.141, + 203.741, + 204.468, + 204.344, + 204.228, + 203.818, + 202.753, 171.497, 170.531, 151.882, @@ -45685,17 +45685,17 @@ 31.876, 31.876, 69.127, - 61.482, - 79.955, - 119.583, - 157.464, - 151.048, - 149.675, - 152.524, - 157.133, - 164.472, - 175.721, - 191.678, + 63.21, + 94.889, + 148.246, + 196.687, + 196.833, + 198.06, + 199.937, + 200.515, + 200.283, + 199.921, + 199.427, 152.707, 115.704, 115.348, @@ -45709,17 +45709,17 @@ 31.876, 31.876, 31.876, - 13.145, - 44.686, - 31.326, - 74.165, - 68.591, - 108.674, - 115.396, - 120.393, - 123.746, - 131.462, - 107.75, + 14.753, + 59.515, + 59.674, + 113.036, + 113.901, + 156.506, + 162.201, + 162.64, + 158.399, + 154.489, + 114.81, 97.638, 31.876, 31.876, @@ -45733,17 +45733,17 @@ 33.107, 33.107, 70.311, - 79.381, - 115.977, - 168.968, - 160.372, - 168.4, - 182.941, - 192.805, - 202.877, - 214.242, - 218.15, - 222.105, + 80.814, + 130.296, + 196.447, + 197.883, + 212.4, + 229.522, + 238.618, + 244.49, + 248.366, + 240.598, + 228.644, 187.854, 181.884, 158.514, @@ -45757,17 +45757,17 @@ 33.107, 33.107, 69.889, - 79.221, - 116.215, - 169.416, - 166.133, - 179.02, - 190.047, - 200.779, - 215.614, - 204.893, - 207.117, - 209.993, + 80.523, + 130.291, + 196.523, + 203.145, + 221.934, + 235.311, + 245.077, + 243.358, + 234.891, + 224.456, + 216.099, 181.486, 173.903, 153.024, @@ -45781,17 +45781,17 @@ 33.107, 33.107, 69.899, - 79.318, - 116.521, - 170.092, - 182.333, - 180.287, - 177.043, - 177.028, - 180.659, - 187.354, - 198.45, - 217.499, + 80.532, + 130.287, + 196.683, + 209.585, + 221.596, + 221.216, + 220.913, + 220.986, + 220.783, + 220.341, + 219.557, 176.705, 171.378, 152.881, @@ -45805,17 +45805,17 @@ 33.107, 33.107, 69.929, - 79.516, - 116.812, - 169.869, - 159.138, - 158.089, - 170.357, - 179.274, - 158.609, - 175.442, - 179.859, - 198.376, + 80.556, + 130.286, + 196.431, + 196.648, + 196.765, + 198.573, + 200.229, + 200.398, + 200.08, + 199.831, + 202.717, 170.482, 169.389, 150.876, @@ -45829,17 +45829,17 @@ 33.107, 33.107, 70.588, - 80.294, - 117.321, - 170.294, - 160.022, - 153.596, - 152.623, - 154.991, - 158.987, - 166.253, - 177.629, - 197.321, + 81.01, + 130.317, + 196.427, + 196.636, + 196.905, + 198.471, + 200.101, + 200.522, + 200.387, + 200.02, + 203.009, 171.222, 169.922, 151.357, @@ -45853,17 +45853,17 @@ 31.876, 31.876, 69.102, - 62.344, - 80.631, - 120.39, - 157.91, - 151.05, - 148.183, - 149.132, - 153.505, - 161.627, - 173.676, - 194.253, + 63.189, + 94.885, + 148.216, + 196.658, + 196.815, + 196.896, + 196.908, + 196.857, + 196.736, + 196.533, + 199.67, 150.775, 115.348, 115.348, @@ -45877,17 +45877,17 @@ 31.876, 31.876, 31.876, - 14.027, - 46.191, - 32.836, - 75.502, - 68.893, - 101.565, - 102.425, - 106.708, - 114.39, - 126.638, - 111.335, + 14.751, + 59.944, + 59.73, + 112.994, + 113.145, + 148.65, + 148.663, + 148.613, + 148.498, + 148.293, + 116.011, 97.634, 31.876, 31.876, @@ -45901,17 +45901,17 @@ 33.107, 33.107, 33.107, - 56.584, - 64.301, - 104.676, - 160.441, - 153.852, - 151.043, - 153.379, - 158.901, - 166.785, - 178.262, - 198.058, + 57.104, + 77.252, + 130.474, + 196.619, + 196.768, + 196.91, + 198.432, + 199.819, + 199.838, + 199.541, + 202.457, 219.223, 169.857, 169.179, @@ -45925,17 +45925,17 @@ 33.107, 33.107, 33.107, - 56.436, - 64.677, - 105.037, - 161.107, - 154.923, - 158.469, - 169.19, - 173.92, - 180.727, - 190.273, - 201.261, + 56.872, + 77.369, + 130.47, + 196.611, + 196.754, + 202.703, + 212.556, + 213.297, + 212.938, + 211.327, + 205.515, 219.514, 169.83, 169.361, @@ -45949,17 +45949,17 @@ 33.107, 33.107, 33.107, - 56.158, - 64.567, - 105.425, - 161.851, - 156.713, - 161.399, - 167.995, - 171.913, - 178.7, - 189.235, - 206.884, + 56.531, + 77.197, + 130.463, + 196.6, + 197.479, + 205.011, + 211.12, + 211.285, + 210.757, + 209.882, + 210.936, 220.906, 170.663, 169.767, @@ -45973,17 +45973,17 @@ 33.107, 33.107, 33.107, - 56.434, - 64.773, - 105.614, - 168.139, - 177.792, - 184.884, - 193.325, - 195.873, - 197.33, - 202.254, - 217.451, + 56.675, + 77.153, + 130.492, + 202.979, + 218.94, + 228.524, + 235.974, + 234.515, + 228.563, + 221.915, + 220.889, 232.774, 174.978, 171.446, @@ -45997,17 +45997,17 @@ 33.107, 33.107, 33.107, - 56.044, - 65.078, - 106.115, - 164.609, - 172.699, - 183.403, - 199.274, - 193.746, - 198.778, - 207.356, - 219.734, + 56.256, + 77.125, + 130.454, + 197.895, + 211.961, + 226.058, + 231.418, + 232.742, + 230.496, + 227.265, + 223.246, 230.926, 173.203, 172.218, @@ -46022,16 +46022,16 @@ 31.876, 31.876, 54.955, - 47.14, - 69.988, - 114.067, - 171.624, - 178.563, - 179.951, - 185.496, - 197.566, - 209.655, - 220.457, + 59.409, + 95.028, + 149.41, + 214.04, + 223.906, + 224.72, + 225.996, + 230.291, + 229.981, + 223.754, 232.247, 154.424, 118.032, @@ -46046,16 +46046,16 @@ 31.876, 31.876, 18.171, - 1.126, - 36.855, - 26.245, - 71.979, - 69.106, - 105.157, - 120.812, - 118.671, - 130.898, - 155.143, + 11.384, + 59.6, + 59.795, + 113.091, + 113.167, + 148.609, + 148.402, + 148.918, + 148.801, + 155.33, 133.062, 97.634, 31.876, @@ -46070,16 +46070,16 @@ 33.107, 33.107, 56.589, - 66.962, - 115.22, - 163.023, - 155.841, - 152.799, - 153.254, - 157.053, - 164.501, - 176.369, - 199.724, + 77.245, + 130.414, + 196.577, + 196.732, + 196.81, + 196.826, + 196.782, + 196.67, + 196.471, + 203.055, 216.707, 168.489, 168.489, @@ -46094,16 +46094,16 @@ 33.107, 33.107, 56.765, - 71.875, - 114.983, - 162.855, - 156.256, - 163.298, - 175.289, - 185.234, - 187.897, - 197.414, - 208.75, + 77.194, + 130.413, + 196.57, + 196.765, + 199.347, + 206.882, + 211.159, + 210.706, + 210.082, + 208.932, 219.624, 170.533, 169.439, @@ -46118,16 +46118,16 @@ 33.107, 33.107, 56.956, - 75.75, - 107.062, - 174.233, - 155.454, - 152.206, - 152.518, - 156.567, - 164.352, - 176.695, - 202.342, + 77.264, + 130.438, + 196.476, + 196.731, + 196.813, + 196.833, + 196.954, + 196.967, + 196.751, + 203.285, 216.952, 168.553, 168.489, @@ -46142,16 +46142,16 @@ 33.107, 33.107, 58.108, - 68.012, - 108.348, - 163.241, - 155.881, - 152.876, - 153.218, - 157.062, - 165.093, - 177.136, - 200.67, + 78.727, + 131.831, + 197.427, + 197.1, + 197.26, + 197.091, + 196.775, + 196.851, + 196.613, + 203.297, 217.18, 168.997, 168.978, @@ -46166,16 +46166,16 @@ 33.107, 33.107, 61.214, - 65.539, - 104.508, - 159.231, - 152.089, - 149.153, - 150.059, - 154.288, - 162.27, - 175.184, - 199.907, + 77.857, + 130.459, + 196.603, + 196.769, + 196.852, + 196.867, + 196.818, + 196.698, + 196.484, + 203.05, 216.707, 168.489, 168.489, @@ -46190,16 +46190,16 @@ 31.876, 31.876, 59.146, - 47.975, - 70.346, - 112.929, - 154.091, - 151.219, - 152.494, - 157.129, - 164.824, - 180.631, - 203.235, + 59.59, + 95.003, + 148.361, + 196.739, + 196.846, + 197.447, + 197.657, + 197.522, + 197.234, + 203.784, 217.405, 151.021, 115.348, @@ -46214,16 +46214,16 @@ 31.876, 31.876, 21.597, - 6.284, - 43.357, - 24.826, - 80.502, - 75.838, - 125.78, - 131.715, - 140.998, - 131.934, - 154.33, + 11.376, + 59.661, + 59.785, + 112.976, + 113.063, + 148.322, + 148.234, + 148.075, + 148.188, + 154.794, 133.062, 97.634, 31.876, @@ -46238,16 +46238,16 @@ 33.107, 33.107, 60.25, - 67.466, - 118.033, - 163.521, - 167.844, - 165.801, - 184.743, - 157.617, - 165.732, - 177.979, - 201.686, + 77.613, + 130.589, + 196.547, + 196.585, + 196.638, + 196.38, + 197.075, + 197.316, + 197.072, + 203.611, 217.258, 168.778, 168.489, @@ -46262,16 +46262,16 @@ 33.107, 33.107, 60.08, - 66.535, - 107.296, - 165.7, - 177.068, - 195.119, - 210.124, - 215.954, - 225.719, - 226.806, - 227.318, + 77.136, + 130.414, + 199.183, + 217.769, + 231.912, + 240.733, + 243.285, + 238.591, + 231.532, + 227.369, 233.055, 175.466, 172.643, @@ -46286,16 +46286,16 @@ 33.107, 33.107, 59.575, - 66.938, - 107.275, - 164.526, - 161.617, - 167.774, - 173.23, - 178.964, - 186.884, - 198.669, - 219.089, + 77.106, + 130.411, + 198.561, + 202.392, + 211.45, + 216.161, + 217.723, + 217.929, + 217.526, + 221.094, 223.676, 172.458, 171.222, @@ -46310,16 +46310,16 @@ 31.876, 31.876, 21.597, - 7.112, - 43.864, - 36.604, - 73.404, - 70.021, - 105.884, - 109.702, - 117.363, - 135.502, - 154.326, + 11.369, + 59.533, + 59.681, + 113.043, + 113.13, + 148.576, + 148.533, + 148.417, + 148.134, + 154.794, 133.062, 97.634, 31.876, @@ -46334,16 +46334,16 @@ 33.107, 33.107, 60.472, - 67.44, - 106.678, - 161.525, - 154.082, - 150.772, - 152.068, - 156.966, - 165.036, - 177.295, - 203.332, + 77.745, + 130.667, + 196.557, + 196.724, + 196.827, + 197.483, + 198.072, + 197.873, + 197.492, + 203.846, 216.75, 168.489, 168.489, @@ -46358,16 +46358,16 @@ 31.876, 31.876, 58.961, - 55.612, - 71.876, - 114.145, - 155.454, - 152.076, - 152.432, - 156.255, - 163.915, - 176.251, - 200.733, + 59.822, + 95.23, + 148.337, + 196.707, + 196.796, + 196.817, + 196.774, + 196.658, + 196.455, + 203.034, 216.707, 150.775, 115.348, @@ -46382,16 +46382,16 @@ 31.876, 31.876, 21.597, - 7.18, - 36.286, - 26.359, - 73.203, - 69.745, - 105.413, - 109.296, - 117.117, - 128.849, - 152.629, + 11.365, + 59.544, + 59.751, + 113.044, + 113.133, + 148.581, + 148.536, + 148.418, + 148.223, + 154.814, 133.062, 97.634, 31.876, @@ -46406,16 +46406,16 @@ 33.107, 33.107, 60.177, - 72.777, - 107.648, - 163.682, - 159.525, - 165.24, - 176.005, - 183.409, - 192.086, - 202.479, - 220.5, + 77.18, + 130.39, + 196.586, + 199.024, + 207.171, + 217.268, + 221.34, + 222.663, + 221.72, + 222.835, 229.509, 173.341, 171.073, @@ -46430,16 +46430,16 @@ 33.107, 33.107, 63.859, - 74.006, - 116.644, - 173.474, - 164.016, - 164.884, - 167.317, - 162.232, - 168.463, - 179.615, - 202.555, + 77.491, + 130.371, + 196.448, + 196.597, + 197.182, + 198.04, + 198.171, + 197.987, + 197.832, + 204.299, 217.569, 168.598, 168.489, @@ -46454,16 +46454,16 @@ 33.107, 33.107, 64.403, - 74.025, - 116.107, - 164.711, - 157.273, - 154.852, - 157.95, - 162.164, - 169.752, - 181.239, - 204.633, + 77.528, + 130.367, + 196.517, + 196.677, + 198.106, + 201.033, + 201.722, + 201.439, + 201.022, + 206.949, 219.182, 169.432, 168.57, @@ -46478,16 +46478,16 @@ 33.107, 33.107, 64.31, - 69.226, - 108.665, - 164.135, - 157.178, - 155.878, - 157.088, - 160.726, - 168.558, - 191.661, - 205.765, + 77.633, + 130.382, + 196.516, + 196.817, + 199.246, + 200.144, + 200.007, + 199.822, + 199.446, + 205.813, 217.926, 168.863, 168.489, @@ -46502,16 +46502,16 @@ 33.107, 33.107, 64.044, - 76.601, - 121.748, - 182.939, - 195.415, - 191.897, - 194.567, - 194.159, - 190.506, - 192.468, - 201.181, + 77.544, + 130.352, + 196.373, + 196.165, + 196.241, + 196.184, + 196.193, + 196.268, + 196.225, + 203.027, 216.707, 168.489, 168.489, @@ -46526,15 +46526,15 @@ 31.876, 31.876, 63.269, - 53.001, - 74.975, - 123.022, - 165.048, - 166.006, - 163.443, - 173.031, - 186.974, - 194.905, + 60.482, + 95.715, + 148.502, + 196.59, + 196.623, + 196.664, + 196.54, + 196.326, + 196.176, 203.002, 216.707, 150.787, @@ -46550,16 +46550,16 @@ 31.876, 31.876, 25.024, - 9.015, - 55.727, - 55.701, - 105.591, - 89.422, - 125.451, - 120.307, - 126.877, - 131.523, - 155.151, + 11.358, + 61.317, + 60.904, + 113.905, + 114.093, + 149.416, + 149.453, + 149.335, + 149.262, + 155.898, 133.933, 98.635, 31.876, @@ -46574,16 +46574,16 @@ 33.107, 33.107, 65.086, - 71.285, - 130.78, - 164.357, - 175.279, - 170.012, - 167.114, - 182.61, - 195.823, - 177.247, - 202.714, + 78.493, + 131.074, + 196.596, + 196.488, + 196.571, + 196.62, + 196.404, + 196.157, + 196.431, + 203.008, 216.707, 168.489, 168.489, @@ -46598,16 +46598,16 @@ 33.107, 33.107, 64.307, - 70.275, - 108.39, - 162.902, - 155.847, - 158.272, - 162.649, - 161.3, - 168.235, - 180.01, - 207.629, + 77.665, + 130.379, + 196.516, + 197.224, + 203.579, + 207.725, + 202.496, + 201.235, + 199.848, + 207.968, 217.122, 168.489, 168.489, @@ -46622,16 +46622,16 @@ 33.107, 33.107, 63.609, - 69.832, - 109.187, - 164.573, - 157.372, - 153.862, - 162.836, - 157.935, - 175.603, - 182.94, - 205.458, + 77.195, + 130.364, + 196.499, + 196.664, + 197.037, + 197.348, + 197.402, + 197.137, + 196.971, + 207.0, 217.225, 168.988, 168.64, @@ -46646,16 +46646,16 @@ 33.107, 33.107, 63.636, - 70.417, - 109.167, - 164.125, - 156.819, - 153.13, - 153.453, - 169.35, - 165.176, - 177.268, - 204.727, + 77.338, + 130.36, + 196.501, + 196.665, + 196.764, + 196.786, + 196.582, + 196.624, + 196.428, + 206.45, 216.707, 168.489, 168.489, @@ -46670,16 +46670,16 @@ 33.107, 33.107, 64.106, - 70.663, - 108.764, - 163.599, - 155.793, - 152.875, - 153.886, - 157.735, - 165.731, - 178.399, - 206.17, + 77.587, + 130.371, + 196.502, + 196.696, + 197.692, + 198.33, + 198.277, + 198.14, + 197.956, + 207.918, 217.903, 169.328, 168.531, @@ -46694,16 +46694,16 @@ 31.876, 31.876, 66.204, - 53.24, - 73.211, - 115.087, - 159.027, - 157.72, - 152.786, - 164.098, - 164.493, - 176.443, - 204.47, + 60.063, + 95.039, + 148.288, + 196.63, + 196.7, + 196.796, + 196.646, + 196.633, + 196.439, + 206.454, 216.707, 150.775, 115.348, @@ -46718,16 +46718,16 @@ 31.876, 31.876, 28.45, - 4.912, - 38.943, - 27.831, - 73.268, - 69.079, - 104.111, - 133.532, - 138.175, - 128.727, - 156.533, + 11.34, + 59.692, + 59.706, + 113.018, + 113.123, + 148.583, + 148.199, + 148.116, + 148.213, + 158.232, 133.062, 97.634, 31.876, @@ -46742,16 +46742,16 @@ 33.392, 33.37, 68.291, - 72.357, - 110.191, - 171.434, - 174.028, - 153.287, - 194.459, - 183.226, - 191.418, - 186.993, - 201.795, + 78.395, + 130.868, + 196.455, + 196.498, + 196.76, + 196.186, + 196.393, + 196.25, + 196.3, + 203.018, 216.707, 168.501, 168.921, @@ -46766,16 +46766,16 @@ 34.096, 34.422, 68.957, - 72.437, - 109.763, - 163.779, - 155.856, - 151.692, - 151.821, - 155.886, - 163.907, - 176.143, - 200.966, + 78.67, + 130.783, + 196.496, + 196.669, + 196.778, + 196.805, + 196.762, + 196.641, + 196.441, + 203.028, 216.707, 168.489, 168.489, @@ -46790,16 +46790,16 @@ 34.072, 34.376, 68.876, - 72.167, - 109.312, - 163.83, - 155.894, - 152.02, - 152.28, - 156.085, - 164.029, - 176.185, - 200.797, + 78.35, + 130.49, + 196.492, + 196.668, + 196.774, + 196.799, + 196.759, + 196.639, + 196.44, + 203.03, 216.707, 168.489, 168.489, @@ -46814,16 +46814,16 @@ 33.8, 34.142, 68.678, - 72.253, - 119.539, - 165.187, - 158.059, - 154.989, - 154.734, - 158.011, - 165.257, - 176.935, - 200.983, + 77.992, + 130.357, + 196.479, + 196.644, + 196.738, + 196.766, + 196.731, + 196.62, + 196.43, + 203.028, 216.707, 168.489, 168.489, @@ -46838,16 +46838,16 @@ 33.216, 33.336, 68.178, - 72.662, - 118.642, - 165.003, - 167.744, - 166.887, - 168.483, - 191.573, - 173.493, - 176.797, - 202.739, + 77.773, + 130.341, + 196.477, + 196.551, + 196.642, + 196.811, + 196.45, + 196.706, + 196.627, + 203.162, 216.707, 168.489, 168.489, @@ -46862,16 +46862,16 @@ 31.876, 31.876, 66.533, - 54.517, - 74.17, - 115.761, - 155.686, - 151.849, - 152.819, - 156.4, - 164.266, - 176.583, - 201.504, + 60.085, + 94.939, + 148.268, + 196.667, + 197.278, + 198.416, + 198.302, + 198.11, + 197.898, + 204.418, 217.299, 150.775, 115.348, @@ -46886,16 +46886,16 @@ 31.876, 31.876, 28.45, - 5.658, - 38.785, - 27.737, - 74.553, - 74.638, - 116.605, - 117.19, - 125.509, - 139.665, - 159.595, + 11.335, + 59.482, + 59.693, + 114.304, + 118.249, + 160.097, + 157.176, + 157.934, + 160.262, + 160.091, 134.408, 98.117, 31.876, @@ -46910,16 +46910,16 @@ 33.107, 33.107, 67.493, - 73.258, - 125.774, - 165.833, - 170.874, - 187.959, - 188.437, - 197.794, - 191.635, - 196.546, - 213.49, + 77.392, + 130.308, + 196.474, + 202.19, + 220.803, + 231.41, + 233.966, + 223.925, + 216.847, + 216.295, 220.746, 171.488, 170.531, @@ -46934,16 +46934,16 @@ 33.107, 33.107, 67.138, - 71.901, - 109.866, - 165.756, - 171.272, - 186.722, - 190.229, - 191.209, - 193.355, - 201.395, - 219.809, + 77.173, + 130.336, + 197.523, + 210.884, + 230.187, + 233.628, + 230.971, + 225.788, + 222.033, + 222.538, 229.639, 175.028, 173.267, @@ -46958,16 +46958,16 @@ 33.107, 33.107, 66.557, - 72.083, - 110.514, - 166.906, - 174.129, - 187.99, - 199.455, - 202.476, - 202.043, - 208.102, - 218.298, + 77.094, + 130.332, + 197.814, + 211.771, + 228.989, + 241.008, + 240.94, + 233.165, + 227.603, + 220.477, 221.588, 171.722, 170.467, @@ -46982,16 +46982,16 @@ 33.107, 33.107, 66.762, - 75.106, - 120.071, - 180.878, - 177.524, - 184.781, - 192.607, - 181.097, - 187.948, - 196.599, - 211.973, + 77.108, + 130.331, + 198.028, + 210.371, + 227.495, + 226.127, + 222.071, + 221.445, + 217.787, + 214.156, 220.959, 171.645, 170.803, @@ -47006,16 +47006,16 @@ 33.107, 33.107, 66.962, - 72.694, - 111.628, - 166.551, - 163.66, - 175.173, - 163.974, - 167.29, - 174.632, - 186.668, - 207.099, + 77.185, + 130.329, + 196.962, + 201.954, + 207.152, + 207.048, + 206.989, + 206.849, + 206.901, + 209.865, 219.978, 170.186, 169.241, @@ -47030,16 +47030,16 @@ 31.876, 31.876, 66.192, - 55.346, - 75.752, - 117.8, - 158.57, - 155.448, - 155.487, - 176.063, - 172.183, - 191.209, - 204.421, + 59.903, + 94.924, + 148.245, + 196.97, + 198.047, + 198.248, + 198.571, + 198.635, + 198.225, + 204.635, 217.67, 150.775, 115.348, @@ -47054,16 +47054,16 @@ 31.876, 31.876, 31.876, - 6.968, - 41.204, - 29.277, - 74.683, - 72.043, - 108.267, - 109.805, - 119.841, - 127.995, - 153.956, + 11.333, + 59.888, + 59.67, + 112.989, + 114.627, + 151.099, + 149.442, + 148.526, + 148.223, + 154.8, 133.062, 97.634, 31.876, @@ -47078,16 +47078,16 @@ 33.107, 33.107, 71.776, - 73.466, - 110.204, - 164.265, - 156.632, - 165.605, - 190.777, - 190.786, - 187.055, - 195.703, - 204.975, + 78.238, + 130.563, + 196.473, + 197.322, + 210.446, + 226.77, + 218.25, + 209.532, + 205.011, + 205.36, 217.83, 169.216, 168.544, @@ -47102,16 +47102,16 @@ 31.876, 31.876, 31.876, - 6.662, - 39.686, - 27.856, - 74.279, - 81.972, - 127.72, - 132.247, - 135.934, - 139.221, - 154.408, + 11.333, + 59.801, + 59.683, + 114.228, + 118.638, + 167.125, + 173.223, + 169.538, + 161.366, + 158.615, 133.08, 97.634, 31.876, @@ -47126,16 +47126,16 @@ 33.107, 33.107, 70.91, - 73.596, - 111.669, - 166.187, - 166.785, - 163.716, - 165.644, - 170.544, - 176.704, - 186.874, - 202.592, + 77.856, + 130.648, + 196.455, + 196.548, + 196.628, + 196.625, + 196.567, + 196.469, + 196.304, + 203.011, 216.707, 168.489, 168.489, @@ -47150,16 +47150,16 @@ 33.107, 33.107, 71.064, - 76.832, - 123.881, - 186.661, - 177.166, - 166.818, - 161.928, - 172.269, - 183.154, - 175.787, - 201.863, + 77.947, + 130.406, + 196.318, + 196.454, + 196.594, + 196.666, + 196.543, + 196.38, + 196.449, + 203.024, 216.707, 168.489, 168.489, @@ -47174,16 +47174,16 @@ 33.107, 33.107, 71.135, - 77.314, - 117.814, - 174.147, - 177.031, - 186.641, - 187.308, - 193.583, - 190.094, - 190.776, - 202.773, + 77.816, + 130.398, + 196.406, + 196.454, + 196.342, + 196.331, + 196.205, + 196.276, + 196.252, + 203.007, 216.707, 168.489, 168.489, @@ -47198,16 +47198,16 @@ 31.876, 31.876, 69.848, - 59.158, - 94.666, - 138.502, - 191.162, - 188.689, - 193.222, - 190.052, - 175.279, - 193.106, - 199.634, + 60.155, + 95.101, + 148.103, + 196.256, + 196.306, + 196.213, + 196.79, + 198.787, + 196.783, + 203.047, 216.707, 150.775, 115.348, @@ -47222,16 +47222,16 @@ 31.876, 31.876, 31.876, - 7.862, - 57.795, - 46.999, - 109.352, - 103.321, - 138.588, - 139.969, - 142.297, - 142.575, - 154.484, + 11.334, + 60.331, + 59.818, + 112.572, + 112.691, + 148.122, + 148.096, + 148.05, + 148.034, + 154.791, 133.062, 97.634, 31.876, @@ -47246,16 +47246,16 @@ 33.107, 33.107, 70.664, - 74.062, - 113.101, - 167.27, - 158.466, - 154.015, - 164.276, - 168.254, - 163.32, - 180.964, - 197.491, + 77.597, + 130.566, + 196.45, + 196.628, + 196.741, + 196.644, + 196.596, + 196.651, + 196.383, + 203.075, 216.707, 168.489, 168.489, @@ -47264,15 +47264,15 @@ 33.107, 33.107 ], - "lifecycle_emissions_tonnes_SO2_bau": 0.62, + "lifecycle_emissions_tonnes_SO2_bau": 0.69, "distance_to_emissions_region_meters": 0.0, - "annual_emissions_tonnes_NOx_bau": 0.13, - "annual_emissions_tonnes_CO2": 392.46, - "lifecycle_emissions_tonnes_CO2": 8445.72 + "annual_emissions_tonnes_NOx_bau": 0.14, + "annual_emissions_tonnes_CO2": 450.18, + "lifecycle_emissions_tonnes_CO2": 9687.77 }, "ElectricTariff": { "lifecycle_demand_cost_after_tax_bau": 0.0, - "year_one_energy_cost_before_tax": 204839.32, + "year_one_energy_cost_before_tax": 236160.25, "lifecycle_fixed_cost_after_tax_bau": 0.0, "year_one_min_charge_adder_before_tax": 0.0, "lifecycle_export_benefit_after_tax_bau": -0.0, @@ -47280,12 +47280,12 @@ "lifecycle_demand_cost_after_tax": 0.0, "lifecycle_export_benefit_after_tax": -0.0, "year_one_demand_cost_before_tax_bau": 0.0, - "year_one_bill_before_tax_bau": 235258.65, - "lifecycle_energy_cost_after_tax_bau": 2.25428694e6, + "year_one_bill_before_tax_bau": 262460.32, + "lifecycle_energy_cost_after_tax_bau": 2.51493778e6, "lifecycle_min_charge_adder_after_tax_bau": 0.0, "year_one_export_benefit_before_tax": -0.0, - "year_one_bill_before_tax": 204839.32, - "year_one_energy_cost_before_tax_bau": 235258.65, + "year_one_bill_before_tax": 236160.25, + "year_one_energy_cost_before_tax_bau": 262460.32, "lifecycle_min_charge_adder_after_tax": 0.0, "year_one_fixed_cost_before_tax": 0.0, "lifecycle_coincident_peak_cost_after_tax": 0.0, @@ -47294,7 +47294,7 @@ "year_one_min_charge_adder_before_tax_bau": 0.0, "year_one_coincident_peak_cost_before_tax_bau": 0.0, "lifecycle_coincident_peak_cost_after_tax_bau": 0.0, - "lifecycle_energy_cost_after_tax": 1.96280396e6, + "lifecycle_energy_cost_after_tax": 2.26292624e6, "year_one_coincident_peak_cost_before_tax": 0.0, "year_one_fixed_cost_before_tax_bau": 0.0 }, @@ -47307,16 +47307,16 @@ 32.3881481528, 32.7585418392, 32.7247305327, - 11.631968239999999, - 60.890888507, - 59.896175282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 151.35747656499998, + 12.043118239999998, + 63.128918507, + 66.917735282, + 123.645849561, + 126.225699561, + 162.515268716, + 161.883738716, + 159.550788716, + 155.475678716, + 152.98926656499998, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -47331,16 +47331,16 @@ 33.107087900699995, 33.107087900699995, 71.8692608705, - 78.28920324699999, - 130.500685081, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 78.69639324699999, + 132.737605081, + 203.24598942799997, + 207.41361942799998, + 210.04656942799997, + 210.93687942799997, + 210.22005942799998, + 207.92139942799997, + 203.84598942799997, + 199.834977277, 216.706946524, 168.489065812, 168.491911227, @@ -47355,16 +47355,16 @@ 33.107087900699995, 33.107087900699995, 71.5474906692, - 78.26686025209999, - 131.05008718500002, - 196.489404114, - 196.17454278, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 78.67285025209999, + 133.41042718500003, + 203.668824114, + 207.68614277999998, + 210.46098942799998, + 211.39677942799997, + 210.79533942799998, + 208.425129428, + 204.24456942799998, + 201.39032727699998, 216.706946524, 168.517535318, 168.721294419, @@ -47379,16 +47379,16 @@ 33.107087900699995, 33.107087900699995, 71.6578533614, - 78.3050777224, - 130.877471161, - 196.153381979, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 78.5983277224, + 133.180211161, + 203.421601979, + 207.65796942799997, + 210.28935942799998, + 211.16373942799999, + 210.52758942799997, + 208.20192942799997, + 204.11991942799997, + 201.373377277, 216.706946524, 168.489065812, 168.489065812, @@ -47403,16 +47403,16 @@ 33.107087900699995, 33.107087900699995, 71.4065050174, - 78.2664819707, - 131.46352154800002, - 197.254662643, - 197.160753117, - 197.043498337, - 197.044937423, - 197.072864309, - 197.073442684, - 196.775958587, - 200.051890453, + 78.6682119707, + 133.71550154800002, + 204.324342643, + 208.33599311700002, + 210.80161833699998, + 211.652837423, + 208.62553430900002, + 205.35356268400002, + 204.60025858699998, + 201.020500453, 217.360114968, 169.264710745, 169.393233922, @@ -47427,16 +47427,16 @@ 32.8406835913, 33.0638860086, 71.1972270942, - 61.6177173172, - 95.99359452760001, - 148.080553475, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 61.9824873172, + 98.23759452760001, + 155.064373475, + 204.69744942799997, + 205.76373942799998, + 207.74661942799997, + 210.02625942799997, + 207.87468942799998, + 203.99877942799998, + 201.477507277, 216.706946524, 150.775396235, 115.34805707999999, @@ -47451,16 +47451,16 @@ 32.0314953702, 32.061228484, 32.1144179076, - 11.394463582, - 60.090767321899996, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 151.35747656499998, + 11.658283582000001, + 62.2660973219, + 66.2364108282, + 123.426639561, + 126.013749561, + 162.347898716, + 161.837418716, + 159.645288716, + 155.716908716, + 153.328836565, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -47475,16 +47475,16 @@ 33.107087900699995, 33.107087900699995, 71.586747502, - 78.2986747341, - 130.899023297, - 196.16425036799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 78.5651047341, + 133.17320329700001, + 203.37790036799998, + 207.76455942799998, + 210.60558942799997, + 211.55538942799998, + 210.97407942799998, + 208.752759428, + 204.585219428, + 201.870147277, 216.706946524, 168.489065812, 168.489065812, @@ -47499,16 +47499,16 @@ 33.107087900699995, 33.107087900699995, 71.6172383343, - 78.03440939240001, - 130.343657661, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 78.4405193924, + 132.726317661, + 203.25852942799997, + 207.43674942799998, + 210.13848942799999, + 211.04676942799998, + 210.51669942799998, + 208.356099428, + 204.42687942799998, + 201.978387277, 216.706946524, 168.489065812, 168.489065812, @@ -47523,16 +47523,16 @@ 33.107087900699995, 33.107087900699995, 71.2988329368, - 77.8893119707, - 130.28899307, - 196.14903942799998, - 196.164496099, - 196.82837796799998, - 197.430362685, - 197.35320629, - 197.362004999, - 197.363378166, - 200.45341295499998, + 78.25927197070001, + 132.49198307, + 203.20119942799997, + 205.929316099, + 207.62732796799997, + 210.21765268500002, + 207.33327629000001, + 206.62120499899999, + 202.76853816599998, + 201.374652955, 216.75762088200003, 168.489065812, 168.489065812, @@ -47547,16 +47547,16 @@ 33.107087900699995, 33.107087900699995, 71.1700965213, - 78.0193159306, - 130.66143588399999, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 78.1784659306, + 131.59077588399998, + 200.197239428, + 206.867019428, + 209.55465942799998, + 207.91548942799997, + 207.398529428, + 208.04199942799997, + 203.48334942799997, + 202.028007277, 216.706946524, 168.489065812, 168.489065812, @@ -47571,16 +47571,16 @@ 33.107087900699995, 33.107087900699995, 71.1449318269, - 77.7601428015, - 130.247500205, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 78.10226280149999, + 132.54160020499998, + 203.26500942799998, + 207.43779942799998, + 210.122199428, + 211.029729428, + 210.42930942799998, + 208.321629428, + 204.46977942799998, + 202.252497277, 216.706946524, 168.489065812, 168.489065812, @@ -47595,16 +47595,16 @@ 31.876305895599998, 31.876305895599998, 69.8722327627, - 60.0085199322, - 94.8336175778, - 147.931158716, - 196.14903942799998, - 196.968173234, - 199.793361312, - 203.700022938, - 206.165263021, - 202.355519228, - 199.60268809500002, + 60.3230699322, + 97.1164075778, + 154.999128716, + 207.27324942799999, + 210.725033234, + 214.497261312, + 217.94282293799998, + 218.394883021, + 210.728579228, + 202.28078809500002, 217.960109224, 150.775396235, 115.34805707999999, @@ -47619,16 +47619,16 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.649874269, - 116.15815995700001, - 152.82162664700002, - 152.512297012, - 152.51120991099998, - 152.186941767, - 149.98047352, + 11.6064287988, + 61.657570828199994, + 66.6127308282, + 124.13276426899999, + 128.237839957, + 164.36067664700002, + 163.359517012, + 163.14935991099998, + 159.109921767, + 153.00786352, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -47643,16 +47643,16 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 60.1736496061, - 59.3807093051, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, + 11.7314987988, + 62.4629496061, + 66.2127893051, + 121.454649561, + 123.906009561, + 156.317178716, + 161.912268716, + 153.76465871599999, + 148.845528716, + 148.531968716, 133.061726657, 97.6558853336, 31.876305895599998, @@ -47667,16 +47667,16 @@ 33.107087900699995, 33.107087900699995, 72.0552251792, - 78.40006082000001, - 130.505530501, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.71725082, + 132.877930501, + 203.17863942799997, + 207.408909428, + 210.11931942799998, + 211.12209942799998, + 210.68628942799998, + 208.642539428, + 204.75486942799998, + 199.17339942799998, 216.706946524, 168.489065812, 168.489065812, @@ -47691,16 +47691,16 @@ 33.107087900699995, 33.107087900699995, 72.1128977055, - 78.68464310530001, - 131.441398795, - 197.11892923, - 197.118411478, - 196.66252146, - 196.575429753, - 196.619474239, - 196.723018727, - 196.745728506, - 196.856785065, + 78.98245310530001, + 133.741648795, + 204.08795923, + 208.121691478, + 210.30169146, + 208.65129975300002, + 210.849944239, + 209.049448727, + 205.274578506, + 199.975675065, 217.647917183, 169.580816349, 169.609419563, @@ -47715,16 +47715,16 @@ 33.1579791685, 33.2161229216, 72.404215929, - 78.576089041, - 130.520758032, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.970709041, + 132.942838032, + 201.76263942799997, + 205.76856942799998, + 207.86886942799998, + 208.315089428, + 205.25862942799998, + 204.44718942799997, + 200.26338942799998, + 196.78314942799997, 216.706946524, 168.489065812, 168.489065812, @@ -47739,16 +47739,16 @@ 33.107087900699995, 33.107087900699995, 71.3500988695, - 77.7997703793, - 130.24902361899998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.2360603793, + 131.627613619, + 200.53671942799997, + 203.103669428, + 203.338179428, + 211.01202942799998, + 210.62196942799997, + 204.20490942799998, + 202.36089942799998, + 196.77993942799998, 216.706946524, 168.489065812, 168.489065812, @@ -47763,16 +47763,16 @@ 32.2652049286, 32.304003877599996, 70.6306158834, - 60.5720361275, - 95.145194353, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 60.9544461275, + 97.651664353, + 155.236488716, + 207.70470942799997, + 210.44577942799998, + 203.95596942799997, + 198.04230942799998, + 198.82227942799997, + 196.43100942799998, + 196.55508942799997, 216.706946524, 150.775396235, 115.34805707999999, @@ -47787,16 +47787,16 @@ 32.411915279999995, 32.5718722321, 32.830846147500004, - 11.862927628, - 60.3458659042, - 59.3763606699, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, + 12.373587628, + 62.985475904199994, + 65.8281906699, + 122.458929561, + 124.261119561, + 160.623738716, + 158.502948716, + 156.301368716, + 155.427738716, + 151.611978716, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -47811,16 +47811,16 @@ 33.244252711899996, 33.107087900699995, 71.7314978994, - 78.2629102537, - 130.4392594, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.6039202537, + 132.9837394, + 203.61741942799998, + 207.75189942799997, + 210.46734942799998, + 211.51302942799998, + 211.04649942799998, + 209.12952942799998, + 205.43841942799997, + 199.86705942799998, 216.706946524, 168.489065812, 168.489065812, @@ -47835,16 +47835,16 @@ 33.2520486233, 33.273657609000004, 71.6231581158, - 78.0930433037, - 130.405503491, - 196.14903942799998, - 196.14903942799998, - 196.203690973, - 196.465865361, - 196.450117514, - 196.46148162699998, - 196.45448933, - 196.441068226, + 78.4506733037, + 132.946533491, + 203.47746942799998, + 205.30644942799998, + 208.05243097299999, + 208.023635361, + 207.521107514, + 206.637991627, + 202.98026933, + 197.797698226, 216.721073515, 168.489065812, 168.489065812, @@ -47859,16 +47859,16 @@ 33.107087900699995, 33.107087900699995, 71.5362609355, - 77.703662855, - 130.21748913800002, - 196.14903942799998, - 198.205401826, - 200.98691344399998, - 200.638048615, - 209.922277516, - 217.42475023, - 214.442492111, - 204.885303761, + 78.246362855, + 132.86030913800002, + 200.47332942799997, + 204.74591182600003, + 207.95402344399997, + 208.120108615, + 216.379447516, + 220.04939023, + 215.848082111, + 205.441113761, 216.413796675, 170.606738842, 170.494808514, @@ -47884,15 +47884,15 @@ 33.107087900699995, 67.0071306369, 77.276646023, - 130.21748913800002, - 196.14903942799998, - 198.06841146699998, - 211.988908794, - 224.25545541900001, - 231.092049931, - 235.619532999, - 236.631583137, - 229.23189379299998, + 131.91764913800003, + 200.19309942799998, + 201.25621146699999, + 217.145548794, + 224.42684541900002, + 246.791889931, + 249.316242999, + 246.390883137, + 233.241663793, 235.345027798, 180.246863585, 171.697026845, @@ -47907,16 +47907,16 @@ 33.107087900699995, 33.107087900699995, 66.5248898027, - 77.0870656164, - 130.21748913800002, - 196.25679578799998, - 203.953713533, - 218.61405435600003, - 231.595841622, - 241.11680897500003, - 240.36462524, - 228.049204196, - 212.72523596, + 77.65877561639999, + 133.107869138, + 203.05212578799998, + 204.77547353300002, + 230.50734435600003, + 243.985661622, + 251.796298975, + 240.77802524, + 237.368344196, + 216.19314595999998, 224.624227846, 179.8832421, 173.852535803, @@ -47931,16 +47931,16 @@ 31.876305895599998, 31.876305895599998, 65.3926614137, - 59.4355644643, - 94.79014998310001, - 147.931158716, - 196.14903942799998, - 205.886200615, - 224.427636912, - 226.259266228, - 221.12949507, - 212.537610689, - 201.855559118, + 59.9494644643, + 97.96663998310001, + 156.429048716, + 209.27832942799998, + 221.873920615, + 241.48266691199998, + 242.894176228, + 235.80819506999998, + 223.221630689, + 206.581639118, 215.368693224, 151.00139183000002, 115.34805707999999, @@ -47955,16 +47955,16 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 59.5100241079, - 59.3628108282, - 112.55430949800001, - 115.063261661, - 151.47199886299998, - 151.44693642599998, - 151.405754078, - 150.47927928899998, - 149.161321205, + 11.6829287988, + 62.5132041079, + 67.78816082819999, + 125.50095949800001, + 130.799971661, + 168.31114886299997, + 167.83929642599998, + 165.780044078, + 161.01689928899998, + 153.934561205, 129.635408808, 97.63438750239999, 31.876305895599998, @@ -47979,16 +47979,16 @@ 33.107087900699995, 33.107087900699995, 67.5450257743, - 77.7208237283, - 130.280385737, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.1010137283, + 133.27195573699998, + 204.473019428, + 208.78479942799999, + 211.33842942799998, + 212.282769428, + 208.63479942799998, + 208.02354942799997, + 202.54167942799998, + 198.054519428, 213.280628675, 168.489065812, 168.489065812, @@ -48003,16 +48003,16 @@ 33.107087900699995, 33.107087900699995, 68.0150536493, - 78.0793898935, - 130.689903838, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.7426298935, + 133.74225383799998, + 204.30672942799998, + 206.824209428, + 208.91103942799998, + 209.588709428, + 208.78791942799998, + 207.196539428, + 204.062559428, + 198.74793942799997, 213.280628675, 168.489065812, 168.489065812, @@ -48028,15 +48028,15 @@ 33.107087900699995, 68.1338724794, 78.1798964587, - 130.835761533, - 196.163213788, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 131.64354153300002, + 201.74705378800002, + 205.16532942799998, + 211.92657942799997, + 213.13023942799998, + 212.747469428, + 210.75969942799998, + 206.95491942799998, + 200.43495942799998, 213.280628675, 168.489065812, 168.489065812, @@ -48051,16 +48051,16 @@ 33.107087900699995, 33.107087900699995, 67.5896753091, - 77.9164500934, - 130.731751386, - 196.235381735, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.6507000934, + 134.165401386, + 204.468101735, + 208.477239428, + 210.981189428, + 212.125419428, + 211.86282942799997, + 210.16278942799997, + 206.57325942799997, + 200.79363942799998, 213.280628675, 168.489065812, 168.489065812, @@ -48075,16 +48075,16 @@ 33.107087900699995, 33.107087900699995, 67.7296707432, - 77.9865691304, - 130.824829985, - 196.411751442, - 196.174549125, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.5089891304, + 134.19340998500002, + 205.266521442, + 207.529519125, + 209.47452942799998, + 209.64465942799998, + 212.621679428, + 210.64104942799997, + 207.084519428, + 201.59394942799997, 213.280628675, 168.603925621, 168.804078193, @@ -48099,16 +48099,16 @@ 31.876305895599998, 32.006453887300005, 67.6467927111, - 60.8130595417, - 95.1768633386, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 61.2533395417, + 98.5815633386, + 156.718758716, + 209.31294942799997, + 211.91457942799997, + 212.93778942799997, + 212.47827942799998, + 210.63978942799997, + 207.129549428, + 201.708159428, 209.854310826, 150.775396235, 115.34805707999999, @@ -48123,16 +48123,16 @@ 31.876305895599998, 31.949074679299997, 28.6677997673, - 11.527322911599999, - 60.1920667719, - 59.3831663918, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, + 12.000872911599998, + 63.503586771900004, + 67.9947563918, + 125.449389561, + 128.009349561, + 164.490078716, + 164.03677871600001, + 162.199848716, + 158.731848716, + 153.360408716, 126.20909095800002, 97.63438750239999, 31.876305895599998, @@ -48147,16 +48147,16 @@ 33.107087900699995, 33.107087900699995, 68.12779095740001, - 77.9975592761, - 130.50797853699999, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.8172192761, + 133.708558537, + 202.805409428, + 206.91525942799998, + 208.95237942799997, + 208.88700942799997, + 207.53727942799998, + 207.09423942799998, + 203.12091942799998, + 198.545829428, 209.854310826, 168.489065812, 168.489065812, @@ -48171,16 +48171,16 @@ 33.107087900699995, 33.107087900699995, 67.7074061905, - 77.9992270473, - 130.748590253, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.5020870473, + 134.21854025300001, + 204.74592942799998, + 208.97880942799998, + 211.56903942799997, + 212.73822942799998, + 210.05013942799997, + 208.10508942799999, + 205.20507942799998, + 199.947969428, 209.854310826, 168.489065812, 168.489065812, @@ -48195,16 +48195,16 @@ 33.107087900699995, 33.107087900699995, 67.92357773559999, - 78.0207813288, - 130.535294491, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.8622813288, + 133.944734491, + 203.562219428, + 206.937039428, + 209.85297942799997, + 208.38234942799997, + 207.92337942799998, + 205.71078942799997, + 204.62925942799998, + 199.66512942799997, 209.854310826, 168.489065812, 168.489065812, @@ -48219,16 +48219,16 @@ 33.107087900699995, 33.107087900699995, 64.0195564568, - 77.8352435364, - 130.784001432, - 196.352904597, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.6875435364, + 134.088141432, + 203.196504597, + 204.68709942799998, + 204.098829428, + 208.40700942799998, + 209.16030942799998, + 204.707259428, + 203.42310942799998, + 198.515559428, 209.854310826, 168.489065812, 168.489065812, @@ -48243,15 +48243,15 @@ 33.107087900699995, 33.107087900699995, 64.81245927900001, - 78.3615355134, - 130.61230677499998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.01023623400002, - 199.86985418, - 200.646854654, + 79.0108255134, + 134.12410677499997, + 203.59635942799997, + 205.881879428, + 208.653729428, + 200.98599942799999, + 202.36781623400003, + 203.02885418, + 203.276294654, 199.78652478299998, 211.430508402, 168.631881565, @@ -48267,16 +48267,16 @@ 31.876305895599998, 31.876305895599998, 62.81905509520001, - 59.7291277597, - 94.79014998310001, - 148.019917728, - 204.522812163, - 215.37247928399998, - 214.77536819699998, - 214.515024648, - 214.43453553999998, - 214.087041562, - 212.30369935299998, + 60.4462477597, + 98.15176998310001, + 150.670357728, + 210.011702163, + 227.028049284, + 226.19156819699998, + 227.167044648, + 225.44330553999998, + 222.850851562, + 213.90653935299997, 218.694119197, 153.011108362, 116.124006159, @@ -48292,15 +48292,15 @@ 31.876305895599998, 25.0236701967, 11.3183987988, - 59.3631549997, - 59.3628108282, - 112.77551652999999, - 113.732726257, - 150.610435343, - 152.674072002, - 155.234199814, - 156.368329325, - 154.38493177499998, + 63.2983449997, + 68.5828908282, + 126.43544653, + 130.048136257, + 168.125755343, + 169.794442002, + 170.535429814, + 168.04540932499998, + 160.39093177499998, 128.387966216, 97.68391383459999, 31.876305895599998, @@ -48315,16 +48315,16 @@ 33.107087900699995, 33.107087900699995, 63.4402921551, - 77.1266633563, - 130.21748913800002, - 202.63093589300001, - 217.35409585600001, - 229.141184156, - 239.390775975, - 247.53079649800003, - 241.725008403, - 235.700200333, - 225.731920159, + 78.0201233563, + 134.45576913800002, + 210.01390589300001, + 230.945055856, + 245.34205415600002, + 256.741815975, + 264.66274649800005, + 256.96470840300003, + 247.329970333, + 226.210270159, 224.907089411, 172.00815785700001, 170.841763735, @@ -48339,16 +48339,16 @@ 33.107087900699995, 33.107087900699995, 63.3886767617, - 77.1151677293, - 130.21748913800002, - 196.92401081199998, - 209.575602727, - 227.695821445, - 225.322024656, - 221.24939576, - 221.138436227, - 220.119985759, - 216.414685936, + 77.7565977293, + 134.47940913800002, + 206.55848081199997, + 217.556082727, + 244.352091445, + 243.176914656, + 238.81712576, + 236.857056227, + 229.776745759, + 222.76784593600001, 215.65498269600002, 171.59169243, 170.476878971, @@ -48363,16 +48363,16 @@ 33.107087900699995, 33.107087900699995, 63.5366435952, - 77.25414296379999, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.633272627, - 197.408745694, - 197.371467368, - 197.294939403, - 197.174283402, + 77.86740296379999, + 134.601149138, + 206.129829428, + 210.64365942799998, + 213.336039428, + 214.95145262699998, + 215.363895694, + 213.380277368, + 209.768969403, + 204.00012340199999, 207.114032444, 168.634719254, 168.489065812, @@ -48387,16 +48387,16 @@ 33.107087900699995, 33.107087900699995, 63.5575164019, - 77.5041385894, - 130.38834538700002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.6040585894, + 134.79747538700002, + 206.070009428, + 210.26982942799998, + 212.755089428, + 213.80313942799998, + 213.332979428, + 211.45911942799998, + 208.056039428, + 202.75323942799997, 206.427992976, 168.489065812, 168.489065812, @@ -48411,16 +48411,16 @@ 33.107087900699995, 33.107087900699995, 64.1606403238, - 77.8477088498, - 130.64483764599998, - 196.20193607200002, - 196.14903942799998, - 196.219897117, - 196.33581827100002, - 196.367590778, - 196.257550288, - 196.28637174, - 196.476275917, + 78.3751088498, + 134.991567646, + 205.92919607200002, + 210.104559428, + 212.712937117, + 213.98034827100003, + 213.67666077799998, + 211.720480288, + 208.35285174, + 203.056775917, 206.81844063999998, 168.94659268, 169.072930275, @@ -48435,16 +48435,16 @@ 31.876305895599998, 31.876305895599998, 64.0594869676, - 60.879956550799996, - 95.6258011435, - 147.96851417800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 61.48625655079999, + 100.1231311435, + 157.840794178, + 210.35055942799997, + 212.85162942799997, + 213.87951942799998, + 213.485019428, + 211.54983942799998, + 206.22720942799998, + 197.78688942799997, 206.427992976, 150.775396235, 115.34805707999999, @@ -48459,16 +48459,16 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.3183987988, - 60.1643169492, - 59.4808028609, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, + 12.5413187988, + 64.3704969492, + 66.8176328609, + 122.689209561, + 122.158209561, + 154.643118716, + 159.876198716, + 159.877338716, + 157.273188716, + 152.593578716, 122.78277310899999, 97.63438750239999, 31.876305895599998, @@ -48484,16 +48484,16 @@ 31.876305895599998, 21.5973523472, 11.3183987988, - 60.6867069034, - 60.111117251799996, - 112.90513791000001, - 113.087367848, - 148.547544398, - 148.163376645, - 147.931158716, - 147.931158716, - 147.931158716, - 122.82129345799999, + 61.5882669034, + 60.828117251799995, + 113.85172791000001, + 116.27945784799999, + 162.913464398, + 160.757796645, + 163.683948716, + 160.319988716, + 154.86019871599999, + 123.09693345799998, 97.9005165071, 31.876305895599998, 31.876305895599998, @@ -48507,17 +48507,17 @@ 33.7228417669, 33.9055215817, 62.0983558869, - 78.6502998613, - 130.723927118, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 206.427992976, + 79.3970298613, + 135.672997118, + 206.43213942799997, + 210.60096942799998, + 213.09120942799998, + 214.20330942799998, + 213.90573942799998, + 212.18643942799997, + 208.74384942799998, + 203.42442942799997, + 206.84580297600002, 168.489065812, 168.489065812, 150.775396235, @@ -48531,17 +48531,17 @@ 33.4071003996, 33.4662546745, 61.6644347284, - 78.0945208698, - 130.348206897, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 206.427992976, + 79.03787086979999, + 135.374616897, + 206.29479942799998, + 210.27015942799997, + 212.839359428, + 214.07568942799998, + 213.91083942799997, + 212.24823942799998, + 208.92357942799998, + 203.58708942799998, + 206.946332976, 168.489065812, 168.489065812, 150.775396235, @@ -48555,17 +48555,17 @@ 33.107087900699995, 33.107087900699995, 61.0692464553, - 77.9462129769, - 130.461418432, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 206.427992976, + 79.0329329769, + 134.025838432, + 200.246769428, + 199.129359428, + 208.38549942799997, + 210.84147942799999, + 210.141279428, + 207.485109428, + 205.20429942799998, + 200.782479428, + 206.503562976, 168.489065812, 168.489065812, 150.775396235, @@ -48579,17 +48579,17 @@ 33.107087900699995, 33.107087900699995, 61.0984343479, - 77.787086009, - 130.496033491, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 206.427992976, + 78.62153600900001, + 136.101353491, + 207.728229428, + 212.21070942799997, + 215.005629428, + 216.280509428, + 216.02439942799998, + 214.11222942799998, + 210.47646942799997, + 204.62025942799997, + 206.69421297600002, 168.489065812, 168.489065812, 150.775396235, @@ -48603,17 +48603,17 @@ 31.876305895599998, 31.876305895599998, 59.8517699823, - 60.062865302, - 94.82717838559999, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 60.896325302, + 100.40699838559999, + 159.262998716, + 211.648359428, + 213.90180942799998, + 214.67322942799998, + 214.04595942799997, + 212.397189428, + 209.41671942799996, + 204.246399428, + 203.279475127, 150.775396235, 115.34805707999999, 115.34805707999999, @@ -48627,17 +48627,17 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 11.3183987988, - 59.703709606, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.93620738599998, - 147.948270556, - 147.938892316, - 119.356455259, + 12.220828798800001, + 65.275339606, + 70.5781308282, + 128.008449561, + 130.649319561, + 167.228328716, + 162.748338716, + 151.497657386, + 149.09247055600002, + 149.788182316, + 120.039525259, 97.63438750239999, 31.876305895599998, 31.876305895599998, @@ -48651,17 +48651,17 @@ 33.107087900699995, 33.107087900699995, 61.0298549706, - 77.8109769132, - 130.305787712, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 78.8495769132, + 136.008427712, + 207.34320942799997, + 211.473399428, + 214.06434942799999, + 215.22180942799997, + 214.89201942799997, + 213.12087942799997, + 209.73042942799998, + 204.24507942799997, + 203.965035127, 168.489065812, 168.489065812, 150.775396235, @@ -48675,17 +48675,17 @@ 33.1785797869, 33.3424234438, 58.028736127200006, - 77.975893735, - 130.299124234, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 78.129433735, + 136.344454234, + 208.07463942799998, + 209.68767942799997, + 211.16595942799998, + 216.41763942799997, + 216.09147942799999, + 214.13928942799998, + 197.611629428, + 197.90733942799997, + 203.093625127, 168.489065812, 168.489065812, 150.775396235, @@ -48699,17 +48699,17 @@ 33.107087900699995, 33.2521630321, 58.042177290299996, - 78.2060774905, - 130.56787609300002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 79.3054874905, + 136.83550609300002, + 208.36344942799997, + 212.673699428, + 215.39349942799998, + 216.594549428, + 216.30663942799998, + 214.409739428, + 210.831909428, + 196.394409428, + 203.652705127, 168.489065812, 168.489065812, 150.775396235, @@ -48723,16 +48723,16 @@ 33.107087900699995, 33.107087900699995, 58.0257150158, - 78.05306823580001, - 130.35759901, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 78.97691823580001, + 135.68304901, + 202.44936942799998, + 204.947889428, + 208.66506942799998, + 198.55533942799997, + 209.05779942799998, + 204.78312942799997, + 198.95085942799997, + 200.11212942799997, 203.001675127, 168.489065812, 168.489065812, @@ -48747,16 +48747,16 @@ 33.107087900699995, 33.107087900699995, 56.9500601412, - 77.61949115479999, - 130.394033534, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 79.38898115479999, + 135.623183534, + 204.295569428, + 206.989869428, + 209.99070942799997, + 208.75905942799997, + 208.310619428, + 205.06881942799998, + 202.48809942799997, + 199.06782942799998, 203.001675127, 168.489065812, 168.489065812, @@ -48770,18 +48770,18 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 56.0447219094, - 59.8350307272, - 94.8165564567, - 147.931158716, - 196.14903942799998, - 196.595994009, - 199.569620044, - 213.60017615, - 218.36980896, - 211.581660214, - 206.833941583, - 205.98557045, + 56.083451909400004, + 61.7553307272, + 100.1372664567, + 157.359288716, + 209.74605942799997, + 211.597524009, + 214.582160044, + 230.97629615, + 232.06540896, + 220.225110214, + 210.72098158300003, + 206.14070045000003, 151.285513646, 115.34805707999999, 115.34805707999999, @@ -48794,18 +48794,18 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 18.171034497799997, - 11.3183987988, - 59.4909936895, - 59.3628108282, - 113.40626539899999, - 121.98941789, - 170.016168476, - 168.96158651300001, - 168.52161522, - 168.308800641, - 159.66469601100002, - 119.845607278, + 18.355354497799997, + 12.725998798800001, + 65.9349936895, + 68.9130108282, + 126.620635399, + 136.98566789, + 186.224838476, + 182.162216513, + 180.47592522, + 181.72270064100002, + 167.94193601100002, + 121.143827278, 97.63438750239999, 31.876305895599998, 31.876305895599998, @@ -48818,18 +48818,18 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.508181930300005, - 77.48383839990001, - 130.537368587, - 196.296636819, - 196.17632945, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.098047194, + 56.745331930300004, + 78.97564839990001, + 137.093928587, + 208.01226681900002, + 211.55345945, + 208.994799428, + 214.975179428, + 214.722399428, + 210.183369428, + 209.58264942799997, + 200.32248942799998, + 204.428997194, 168.77940147799998, 168.94912337600002, 151.31211313999998, @@ -48842,18 +48842,18 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 57.7852711938, - 78.3719172648, - 131.037752539, - 196.286331152, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 57.8879911938, + 80.4267072648, + 136.464842539, + 204.69620115200001, + 211.614879428, + 214.048239428, + 211.74807942799998, + 214.97208942799998, + 213.09405942799998, + 209.634909428, + 204.540459428, + 204.45829512699999, 168.489065812, 168.51333617699999, 150.902469304, @@ -48866,18 +48866,18 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.915665853300005, - 77.8414264732, - 130.634571088, - 196.195041108, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 54.06014585330001, + 79.5672964732, + 137.751921088, + 208.815801108, + 210.19242942799997, + 211.94730942799998, + 211.33455942799998, + 211.49274942799997, + 211.135899428, + 207.46107942799998, + 205.21536942799997, + 203.274225127, 168.489065812, 168.489065812, 150.775396235, @@ -48890,18 +48890,18 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.6830151167, - 77.453759359, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 53.8248251167, + 79.219169359, + 137.67980913800002, + 209.31915942799998, + 213.201999428, + 215.536689428, + 216.41487942799998, + 215.93583942799998, + 214.08606942799997, + 210.650049428, + 203.404359428, + 200.765757277, 168.489065812, 168.489065812, 150.775396235, @@ -48914,18 +48914,18 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.2597248226, - 77.4364556858, - 130.34158928, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 53.4253248226, + 79.4200256858, + 137.53531927999998, + 208.89210942799997, + 212.56593942799998, + 214.653279428, + 215.12634942799997, + 214.27257942799997, + 212.76687942799998, + 206.895759428, + 203.00754942799998, + 201.359067277, 168.489065812, 168.489065812, 150.775396235, @@ -48938,18 +48938,18 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 52.4525318321, - 59.9131122177, - 95.08037359960001, - 147.935374791, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 52.6148018321, + 61.8260622177, + 101.49302359960001, + 160.716004791, + 212.661339428, + 214.99581942799998, + 215.89551942799997, + 215.540469428, + 213.607539428, + 210.239049428, + 205.13145942799997, + 201.586137277, 150.775396235, 115.34805707999999, 115.34805707999999, @@ -48962,18 +48962,18 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.7447166483, - 60.0912310458, - 59.4430739376, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, - 80.5027982551, + 14.980486648300001, + 62.4684010458, + 65.9326739376, + 125.873799561, + 127.075539561, + 163.189848716, + 165.150738716, + 163.080078716, + 161.770908716, + 157.51456871599999, + 119.142729561, + 81.81307825510001, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -48986,18 +48986,18 @@ 33.107087900699995, 33.107087900699995, 70.5802090928, - 81.05085418280001, - 130.526544585, - 196.153837181, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 151.35747656499998, + 81.30378418280002, + 132.70376458500002, + 203.991997181, + 209.60040942799998, + 213.39966942799998, + 215.76816942799996, + 216.68787942799997, + 216.099189428, + 214.142709428, + 210.691959428, + 205.46691942799998, + 153.655926565, 168.489065812, 150.775396235, 60.9083742719, @@ -49010,18 +49010,18 @@ 33.107087900699995, 33.107087900699995, 71.1137200688, - 81.39595118119999, - 130.757780406, - 196.243651309, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 151.35747656499998, + 81.7057311812, + 133.104680406, + 204.175231309, + 209.444379428, + 213.237189428, + 215.60094942799998, + 216.649509428, + 216.196719428, + 214.22811942799999, + 210.83499942799997, + 205.67202942799997, + 153.943536565, 168.489065812, 150.775396235, 60.9083742719, @@ -49034,18 +49034,18 @@ 33.107087900699995, 33.107087900699995, 71.0562858942, - 81.3424759457, - 130.632809154, - 196.188991176, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 151.35747656499998, + 81.6806659457, + 133.044629154, + 204.278521176, + 209.528109428, + 212.887239428, + 215.067939428, + 215.96802942799997, + 215.66649942799998, + 213.97566942799997, + 210.70059942799998, + 205.66977942799997, + 154.02366656499998, 168.489065812, 150.775396235, 60.9083742719, @@ -49058,18 +49058,18 @@ 33.107087900699995, 33.107087900699995, 71.76560936519999, - 78.4826619564, - 131.041182503, - 196.242532697, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 151.35747656499998, + 78.8137419564, + 133.51483250299998, + 204.521032697, + 209.90118942799998, + 213.63999942799998, + 215.939619428, + 216.74949942799998, + 216.28083942799998, + 214.20648942799997, + 210.742809428, + 205.686849428, + 153.953316565, 168.489065812, 150.775396235, 60.9083742719, @@ -49082,18 +49082,18 @@ 33.107087900699995, 33.107087900699995, 71.74980254120001, - 78.4288490458, - 130.901346581, - 196.171280005, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 151.35747656499998, + 78.89294904580001, + 133.667076581, + 204.297290005, + 209.12616942799997, + 212.50761942799997, + 214.411419428, + 215.63328942799998, + 215.485119428, + 213.89367942799998, + 210.79101942799997, + 205.939449428, + 154.283346565, 168.489065812, 150.775396235, 60.9083742719, @@ -49106,18 +49106,18 @@ 31.876305895599998, 31.876305895599998, 69.9624117576, - 60.4105228384, - 95.2770673523, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 133.643806988, + 60.7667128384, + 97.9777873523, + 156.633738716, + 210.296979428, + 214.058889428, + 216.49212942799997, + 217.480539428, + 217.02072942799998, + 215.162049428, + 210.02238942799997, + 203.30742942799998, + 135.715246988, 115.34805707999999, 115.34805707999999, 79.9207179249, @@ -49130,18 +49130,18 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 60.1240905286, - 59.545155538399996, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, - 80.5027982551, + 11.767138798800001, + 63.089830528600004, + 68.5343255384, + 127.078779561, + 130.768359561, + 168.449658716, + 169.182798716, + 168.512688716, + 166.658478716, + 163.262718716, + 122.885199561, + 83.84212825510001, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -49154,18 +49154,18 @@ 33.107087900699995, 33.107087900699995, 71.43221119629999, - 78.187572419, - 130.78345406, - 196.163299253, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 151.35747656499998, + 78.606702419, + 133.81087406, + 205.223959253, + 210.687939428, + 214.35369942799997, + 216.58701942799996, + 217.30053942799998, + 216.496119428, + 214.41351942799997, + 211.08846942799997, + 206.286069428, + 154.620216565, 168.489065812, 150.775396235, 60.9083742719, @@ -49178,18 +49178,18 @@ 33.107087900699995, 33.107087900699995, 71.7159433771, - 78.4268722933, - 131.017864554, - 196.264492607, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 79.06515229329999, + 134.058004554, + 202.986472607, + 209.141379428, + 211.82562942799998, + 212.27850942799998, + 212.790099428, + 212.53710942799998, + 209.16345942799998, + 210.84093942799998, + 206.06142942799997, + 150.982938716, 168.489065812, 150.775396235, 60.9083742719, @@ -49202,18 +49202,18 @@ 33.107087900699995, 33.107087900699995, 71.3879845974, - 78.21212106380001, - 131.075392913, - 196.470925933, - 196.57758595800001, - 196.751599543, - 196.812189101, - 196.486026979, - 196.14903942799998, - 196.14903942799998, - 196.523430535, - 196.719905142, - 148.432496653, + 78.71168106380001, + 134.214472913, + 205.231855933, + 210.32358595800002, + 214.007269543, + 216.33408910100002, + 216.956676979, + 216.25797942799997, + 214.32927942799998, + 211.27026053499998, + 206.40426514199999, + 151.18916665299997, 169.242880395, 151.67589048099998, 60.9083742719, @@ -49226,18 +49226,18 @@ 34.1789560652, 34.3747106047, 69.00169124979999, - 79.3557816356, - 131.638029917, - 196.606521632, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 80.0734116356, + 135.169719917, + 205.455351632, + 209.72997942799998, + 212.70366942799998, + 214.633659428, + 215.86890942799997, + 215.866749428, + 214.293489428, + 211.026579428, + 206.07237942799998, + 150.980868716, 168.489065812, 150.775396235, 60.9083742719, @@ -49250,18 +49250,18 @@ 33.107087900699995, 33.107087900699995, 68.21642204620001, - 78.3989099349, - 130.930941746, - 196.204946071, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 79.0539899349, + 134.449221746, + 203.835806071, + 207.32817942799997, + 212.58696942799997, + 212.73597942799998, + 213.04683942799997, + 212.001429428, + 211.521819428, + 210.49518942799997, + 202.96116942799998, + 149.767578716, 168.489065812, 150.808750933, 60.9083742719, @@ -49274,18 +49274,18 @@ 31.876305895599998, 31.876305895599998, 66.8440449977, - 60.6076698436, - 95.5680688657, - 148.01155333900002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 130.21748913800002, + 61.3108998436, + 99.1833088657, + 155.73784333900002, + 208.72587942799998, + 213.59817942799998, + 215.623479428, + 216.21525942799997, + 215.56890942799998, + 209.14893942799998, + 208.80687942799997, + 203.33841942799998, + 132.98585913800002, 115.34805707999999, 115.34805707999999, 79.9553430496, @@ -49298,18 +49298,18 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 60.5321356663, - 59.486635535299996, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 148.018309945, - 148.200657609, - 148.203054509, - 112.503819561, - 77.07648040560001, + 12.0413687988, + 64.2551356663, + 68.5706355353, + 126.383019561, + 130.175739561, + 167.927388716, + 168.899838716, + 166.124689945, + 166.595367609, + 163.306554509, + 122.453949561, + 80.1072604056, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -49322,18 +49322,18 @@ 33.107087900699995, 33.107087900699995, 67.6264595813, - 77.8566780292, - 130.489887153, - 196.14903942799998, - 196.402553546, - 200.494899341, - 203.30571437, - 203.94135238, - 204.00905869599998, - 203.777380634, - 203.43856747, - 199.28204728100002, - 149.21901546499998, + 78.5623080292, + 134.303997153, + 205.886529428, + 211.386863546, + 219.205329341, + 224.42031437, + 209.54652238, + 217.569268696, + 217.83322063399999, + 213.02533747, + 203.05706728100003, + 152.428385465, 168.632610177, 150.775396235, 60.9083742719, @@ -49346,18 +49346,18 @@ 33.107087900699995, 33.107087900699995, 67.5429693398, - 77.8681814861, - 130.692450796, - 196.166776212, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 78.6630914861, + 134.704950796, + 206.047156212, + 211.00728942799998, + 214.37322942799997, + 216.48114942799998, + 217.534089428, + 217.111989428, + 215.18853942799998, + 211.684359428, + 200.21214942799998, + 151.382568716, 168.489065812, 150.775396235, 60.9083742719, @@ -49370,18 +49370,18 @@ 33.107087900699995, 33.107087900699995, 67.5439011054, - 77.8857028486, - 130.52697697, - 196.14903942799998, - 196.14903942799998, - 198.16010106000002, - 209.80598506599998, - 212.590360589, - 212.222339394, - 211.506874221, - 204.62159573, - 199.257282455, - 149.057584116, + 78.7539028486, + 134.75991697, + 205.813749428, + 210.37671942799997, + 215.51867106000003, + 226.95656506599997, + 230.401030589, + 229.210169394, + 227.908444221, + 219.05792573, + 208.886682455, + 152.351464116, 168.583890605, 150.775396235, 60.9083742719, @@ -49394,18 +49394,18 @@ 33.107087900699995, 33.107087900699995, 67.4918707848, - 77.7858665515, - 130.37667724099998, - 196.14903942799998, - 196.183094256, - 202.842484243, - 210.603406798, - 212.876054392, - 213.813349506, - 214.178306346, - 213.11263029900002, - 209.111571645, - 152.067681302, + 78.56868655150001, + 134.06130724099998, + 204.05490942799997, + 210.233384256, + 220.606384243, + 229.87036679800002, + 228.94828439199998, + 231.24934950600002, + 232.583666346, + 227.067010299, + 215.50238164499999, + 153.657291302, 170.01510849299999, 151.615747781, 60.9083742719, @@ -49418,18 +49418,18 @@ 33.107087900699995, 33.107087900699995, 63.477519776099996, - 77.39138612869999, - 130.227501781, - 196.14903942799998, - 196.746960038, - 208.35276582100002, - 224.000193577, - 231.861590331, - 230.335189074, - 223.453335651, - 216.782484919, - 211.378847953, - 152.75204642600002, + 78.0474261287, + 134.726181781, + 206.92926942799997, + 212.67519003799998, + 227.895335821, + 245.82750357700002, + 254.492780331, + 252.311149074, + 243.451605651, + 233.249964919, + 222.779177953, + 157.12964642600002, 169.595140774, 151.139541776, 60.9083742719, @@ -49442,18 +49442,18 @@ 31.876305895599998, 31.876305895599998, 62.392231850600005, - 59.6779024401, - 94.79286643350001, - 147.95669786, - 207.725064742, - 223.768674607, - 229.697709064, - 228.67483806299998, - 230.947199067, - 235.035397045, - 231.799085876, - 221.201280838, - 136.32372186799998, + 60.390822440099996, + 99.1755964335, + 158.24183786, + 223.009104742, + 242.656014607, + 250.905189064, + 250.82506806299997, + 252.787529067, + 254.950777045, + 248.147435876, + 221.347980838, + 136.39866186799998, 116.044688571, 115.34805707999999, 79.9207179249, @@ -49466,18 +49466,18 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.3183987988, - 59.9407608, - 59.4820598248, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, - 77.07648040560001, + 12.1038887988, + 64.6990008, + 70.5823298248, + 128.874009561, + 132.549219561, + 170.336508716, + 171.122898716, + 170.537028716, + 168.381948716, + 164.819238716, + 124.140429561, + 81.46998040560001, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -49490,18 +49490,18 @@ 33.107087900699995, 33.107087900699995, 64.4407085945, - 78.117248274, - 130.82005590999998, - 196.200098597, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 78.819098274, + 135.57973590999998, + 207.08562859699998, + 211.947519428, + 215.319729428, + 217.29876942799999, + 217.865409428, + 213.849819428, + 215.39268942799998, + 212.056659428, + 207.29604942799998, + 152.324838716, 165.062747963, 150.775396235, 60.9083742719, @@ -49514,18 +49514,18 @@ 33.107087900699995, 33.107087900699995, 64.43753969810001, - 78.05178733749999, - 130.719671857, - 196.165078791, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 78.9836173375, + 135.454181857, + 205.220578791, + 208.50228942799998, + 213.40527942799997, + 215.55108942799998, + 216.70776942799998, + 216.524259428, + 214.92606942799998, + 211.65030942799999, + 206.97684942799998, + 152.002548716, 165.062747963, 150.775396235, 60.9083742719, @@ -49538,18 +49538,18 @@ 33.107087900699995, 33.107087900699995, 64.3562861956, - 77.98430602030001, - 130.61645131, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 79.1230760203, + 135.75911131, + 204.41082942799997, + 209.44023942799998, + 214.84410942799997, + 217.114059428, + 218.10396942799997, + 217.687929428, + 215.809899428, + 212.471799428, + 207.485199428, + 152.253468716, 165.062747963, 150.775396235, 60.9083742719, @@ -49562,18 +49562,18 @@ 33.107087900699995, 33.107087900699995, 64.3032653825, - 77.9533844458, - 130.701375157, - 196.173022344, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 79.1212844458, + 136.098915157, + 207.649012344, + 212.59368942799998, + 216.13308942799998, + 218.35350942799997, + 219.27159942799997, + 218.70960942799996, + 216.633309428, + 206.24127942799998, + 207.42696942799998, + 152.177388716, 165.062747963, 150.775396235, 60.9083742719, @@ -49586,18 +49586,18 @@ 33.107087900699995, 33.107087900699995, 60.6103889724, - 77.7926245176, - 130.502304339, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 79.05808451760001, + 136.183434339, + 207.80538942799998, + 212.76981942799998, + 216.358869428, + 218.496309428, + 219.19854942799998, + 218.496309428, + 216.36564942799998, + 212.77053942799998, + 207.533379428, + 152.377068716, 165.062747963, 150.775396235, 60.9083742719, @@ -49610,18 +49610,18 @@ 31.876305895599998, 31.876305895599998, 59.1811872471, - 59.955503983999996, - 94.9912977134, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.265368911, - 196.506192408, - 196.49067970599998, - 130.47509904600003, + 61.112813984, + 100.5955377134, + 159.528768716, + 212.43813942799997, + 215.70435942799998, + 217.509489428, + 217.96521942799998, + 217.28466942799997, + 215.60243891099998, + 212.746962408, + 207.94815970599998, + 135.07712904600004, 111.993546315, 115.34805707999999, 79.9207179249, @@ -49634,18 +49634,18 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 11.3183987988, - 59.4743430821, - 59.3628108282, - 114.801467514, - 127.111918332, - 170.778469331, - 169.32481911600001, - 169.09996261799998, - 169.54155976200002, - 168.198412937, - 121.50404441100001, - 78.5098687808, + 12.6274487988, + 64.9688130821, + 70.3861008282, + 130.37977751399998, + 145.973128332, + 191.788339331, + 191.151889116, + 190.43665261799998, + 188.88027976200001, + 184.036882937, + 132.69011441100002, + 82.9717087808, 28.4499880461, 31.876305895599998, 31.876305895599998, @@ -49658,18 +49658,18 @@ 33.107087900699995, 33.107087900699995, 60.012407788800004, - 77.3584927326, - 130.23484697499998, - 196.14903942799998, - 197.143987421, - 201.23133633, - 201.129998938, - 201.031443628, - 201.048516817, - 200.906419448, - 200.772095372, - 200.632188501, - 149.65864062900002, + 78.5977927326, + 135.81718697499997, + 207.35667942799998, + 212.887717421, + 220.30536633, + 222.399878938, + 223.254603628, + 222.852756817, + 220.683259448, + 216.954155372, + 210.846708501, + 153.97966062900002, 165.73295948799998, 150.775396235, 60.9083742719, @@ -49682,18 +49682,18 @@ 33.107087900699995, 33.107087900699995, 60.308516406, - 77.54928423989999, - 130.332374481, - 196.14903942799998, - 196.14903942799998, - 197.539878976, - 201.95085475099998, - 199.589977224, - 199.63254673100002, - 199.696299767, - 199.511179584, - 199.257373456, - 149.97139324199998, + 78.59571423989999, + 136.08772448099998, + 207.75978942799998, + 212.43405942799998, + 217.280628976, + 223.90806475099998, + 222.509017224, + 221.96859673100002, + 220.030479767, + 216.407869584, + 211.297543456, + 155.045653242, 165.94027216900002, 150.895940876, 60.9083742719, @@ -49706,18 +49706,18 @@ 33.107087900699995, 33.107087900699995, 60.1719545604, - 77.4851956347, - 130.323675398, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 198.365853457, - 216.63141563399998, - 226.265681182, - 244.41223213400002, - 253.54038198599997, - 195.648067335, + 77.49707563470001, + 136.089885398, + 204.29175942799998, + 212.73204942799998, + 200.61711942799997, + 208.60860942799997, + 221.579613457, + 239.238905634, + 243.675971182, + 255.70627213400002, + 255.39474198599999, + 195.72519733500002, 198.018011367, 171.932761304, 60.9083742719, @@ -49730,18 +49730,18 @@ 33.107087900699995, 33.107087900699995, 59.6326017304, - 77.0947079016, - 130.21748913800002, - 199.339865715, - 214.993447319, - 225.715495685, - 232.996527788, - 238.132531877, - 235.867509171, - 233.141644852, - 231.555463355, - 225.39639650400002, - 168.288585353, + 78.66868790160001, + 136.331099138, + 207.516335715, + 231.58938731900002, + 245.78804568500001, + 255.181797788, + 257.760721877, + 258.033729171, + 244.83480485200002, + 237.529153355, + 231.16881650400003, + 169.431555353, 174.865144519, 152.22057897000002, 60.9083742719, @@ -49754,17 +49754,17 @@ 33.107087900699995, 33.107087900699995, 59.9689370248, - 77.2925724499, - 130.21748913800002, - 196.579306575, - 210.429176104, - 225.410534213, - 237.529126752, - 238.533548757, - 233.14282317, - 227.391823607, - 222.101171124, - 217.145714256, + 77.3046024499, + 136.32710913800003, + 208.52821657500002, + 215.319776104, + 226.039754213, + 239.548396752, + 239.493098757, + 236.82499317000003, + 231.04741360699998, + 229.102061124, + 219.571514256, 160.436578452, 167.277039323, 151.573968991, @@ -49778,18 +49778,18 @@ 31.876305895599998, 31.876305895599998, 55.532393595900004, - 59.7429393677, - 94.8449741716, - 147.931158716, - 196.14903942799998, - 196.382000419, - 196.899723596, - 196.89500119500002, - 196.921385217, - 196.950968596, - 196.918497159, - 196.89130778400002, - 130.828738951, + 61.569249367699996, + 101.2395641716, + 160.592568716, + 213.591309428, + 217.130660419, + 219.735903596, + 220.37333119500002, + 219.653765217, + 217.584248596, + 214.186887159, + 209.20132778400003, + 136.29584895099998, 111.972841031, 115.34805707999999, 79.9207179249, @@ -49801,19 +49801,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 18.171034497799997, - 11.3183987988, - 59.7073256058, - 59.367115282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.976340529, - 148.20490892499998, - 148.19971616700002, - 148.18710169, - 112.582242386, - 77.07648040560001, + 18.2305844978, + 12.7869587988, + 65.9176856058, + 71.278435282, + 128.655369561, + 131.283159561, + 168.195438716, + 169.228160529, + 169.334688925, + 167.748376167, + 164.70234169, + 124.345872386, + 82.2752104056, 28.4499880461, 31.876305895599998, 31.876305895599998, @@ -49825,19 +49825,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.7529950041, - 77.37721047170001, - 130.22736765099998, - 196.14903942799998, - 196.14903942799998, - 198.054533072, - 204.739852733, - 206.972089766, - 207.341094644, - 208.796492593, - 209.018336621, - 209.094902184, - 156.666650262, + 56.8275750041, + 78.78262047170001, + 136.410067651, + 207.907929428, + 212.16561942799999, + 217.024973072, + 225.381382733, + 227.985769766, + 227.974074644, + 227.855732593, + 225.067796621, + 220.696352184, + 161.852660262, 163.13113847999998, 151.564485868, 60.9083742719, @@ -49849,19 +49849,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.725609064699995, - 77.41233202149999, - 130.25999712799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 56.813539064699995, + 78.7059020215, + 136.44467712799997, + 207.81930942799997, + 211.721679428, + 214.365039428, + 216.10605942799998, + 217.202709428, + 217.136079428, + 215.50305942799997, + 212.41158942799998, + 207.916899428, + 153.399378716, 161.63643011300002, 150.775396235, 60.9083742719, @@ -49873,19 +49873,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.8660492169, - 77.5584156264, - 130.360630346, - 196.14903942799998, - 196.14903942799998, - 196.15082622399999, - 196.159964547, - 196.160089035, - 196.159509775, - 196.158968991, - 196.170330828, - 196.178042928, - 147.94515057, + 57.026579216900004, + 79.3724256264, + 136.652710346, + 207.914289428, + 209.90871942799998, + 212.376866224, + 216.987104547, + 217.628179035, + 217.222839775, + 215.47116899099998, + 212.401440828, + 204.914612928, + 153.32124057000001, 161.638727569, 150.775396235, 60.9083742719, @@ -49897,19 +49897,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.8789047047, - 77.5123838136, - 130.281982113, - 196.14903942799998, - 196.14903942799998, - 196.295356812, - 197.83903837900002, - 199.67303939299998, - 199.65827551200002, - 199.63868270199998, - 199.541264219, - 199.375135402, - 149.36392729000002, + 57.0226047047, + 78.9259238136, + 136.68944211299998, + 208.114329428, + 212.20419942799998, + 215.076616812, + 218.12494837900002, + 220.110299393, + 219.13277551200002, + 217.400332702, + 214.547804219, + 210.01736540200002, + 154.20997729, 162.36046872499998, 150.775396235, 60.9083742719, @@ -49921,19 +49921,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.6369737333, - 77.43190444759999, - 130.345390963, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 56.7500137333, + 79.06930444759999, + 136.662580963, + 207.74787942799998, + 211.85301942799998, + 215.15406942799999, + 216.70737942799997, + 216.840699428, + 215.748549428, + 213.64749942799997, + 211.21293942799997, + 207.37065942799998, + 153.339678716, 161.63643011300002, 150.775396235, 60.9083742719, @@ -49945,19 +49945,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 55.7579016906, - 59.9174466996, - 95.1066786309, - 147.937223662, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 130.21748913800002, + 55.8776616906, + 61.4191266996, + 101.5863786309, + 159.792353662, + 211.87161942799997, + 214.53129942799998, + 215.995149428, + 216.528099428, + 216.13467942799997, + 214.64784942799997, + 211.81863942799998, + 207.708969428, + 135.77840913800003, 108.495421381, 115.392130624, 80.1688104385, @@ -49969,19 +49969,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.7447166483, - 11.3183987988, - 60.583017842299995, - 59.9404950543, - 112.73723106899999, - 113.03284801, - 148.218058347, - 148.151057123, - 148.116366357, - 147.931158716, - 147.931158716, - 112.503819561, - 77.09816657569999, + 14.8617466483, + 12.8711387988, + 67.0488578423, + 71.5530450543, + 128.43662106899998, + 131.89936801, + 168.99002834700002, + 169.718237123, + 169.258536357, + 167.276538716, + 164.011368716, + 124.386999561, + 82.74509657569999, 25.0236701967, 31.876305895599998, 31.876305895599998, @@ -49993,19 +49993,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 54.8654374642, - 78.57890808260001, - 131.19027322899998, - 196.981727939, - 196.865073265, - 196.823789922, - 196.75645409499998, - 196.30759594199998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 148.03059144899999, + 55.0212274642, + 80.4533980826, + 138.078363229, + 209.37334793899998, + 213.355203265, + 216.381269922, + 218.27356409499998, + 218.50693594199998, + 218.15079942799997, + 216.28881942799998, + 213.13074942799997, + 208.69287942799997, + 154.112731449, 161.993373463, 151.23928744699998, 60.9083742719, @@ -50017,19 +50017,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 54.8976338979, - 78.50646010060001, - 131.086637446, - 196.45754832400002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 55.1224538979, + 80.64480010060001, + 138.056087446, + 208.452418324, + 212.64786942799998, + 213.17586942799997, + 207.28563942799997, + 209.312649428, + 210.55911942799997, + 201.55824942799998, + 201.186489428, + 199.41252942799997, + 148.763928716, 161.63643011300002, 150.775396235, 60.9083742719, @@ -50042,18 +50042,18 @@ 33.107087900699995, 33.107087900699995, 53.9600285541, - 77.8500546683, - 130.570682424, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 80.0858046683, + 136.52799242400002, + 204.767799428, + 206.62143942799997, + 201.743349428, + 209.818569428, + 213.82551942799998, + 212.49570942799997, + 206.22003942799998, + 208.13772942799997, + 204.309789428, + 153.949908716, 161.63643011300002, 150.775396235, 60.9083742719, @@ -50065,19 +50065,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.560880430299996, - 77.6579880893, - 130.554610609, - 196.203536545, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 53.771120430299995, + 79.4807880893, + 137.660590609, + 208.924076545, + 213.22623942799999, + 216.42111942799997, + 218.442669428, + 219.198489428, + 207.67248942799998, + 211.161699428, + 202.638249428, + 199.977699428, + 148.563318716, 161.63643011300002, 150.775396235, 60.9083742719, @@ -50089,19 +50089,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.612561748, - 77.6087953524, - 130.446797726, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 53.863451747999996, + 79.65878535239999, + 137.884097726, + 209.179869428, + 213.37545942799997, + 216.42786942799998, + 218.16543942799998, + 218.465769428, + 217.670919428, + 215.61555942799998, + 212.58723942799998, + 208.07580942799999, + 153.778158716, 161.63643011300002, 150.775396235, 60.9083742719, @@ -50113,19 +50113,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 52.191674090700005, - 59.830854716800005, - 95.03936882629999, - 147.93482591199998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.161610059, - 130.526926236, + 52.47913409070001, + 62.08706471680001, + 102.38990882629999, + 160.80338591199998, + 213.15699942799998, + 216.352329428, + 217.836309428, + 217.85520942799997, + 216.80445942799997, + 214.69422942799997, + 211.845339428, + 207.979960059, + 136.52239623600002, 108.91066667199999, 115.77113264900001, 80.47840571260001, @@ -50137,19 +50137,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.7447166483, - 11.3183987988, - 60.549187599, - 59.925032397799995, - 112.688986544, - 112.53554485400001, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, - 77.07648040560001, + 15.074326648300001, + 13.647358798800001, + 67.960837599, + 72.6852023978, + 129.349156544, + 131.90345485400002, + 168.683058716, + 168.730818716, + 168.055878716, + 166.458228716, + 163.723158716, + 123.878919561, + 82.50366040560002, 21.5973523472, 31.876305895599998, 31.876305895599998, @@ -50161,19 +50161,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.634671228500004, - 77.8864331253, - 130.861886623, - 196.458464546, - 196.306585945, - 196.333510549, - 196.264470785, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.942512767, + 53.9683912285, + 80.1939131253, + 138.101936623, + 208.641344546, + 212.309365945, + 215.47816054900002, + 217.352580785, + 218.01024942799998, + 217.56108942799997, + 215.67084942799997, + 212.416089428, + 208.61454942799998, + 154.316312767, 158.33658941899998, 150.978757199, 60.9083742719, @@ -50185,19 +50185,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.571072625199996, - 77.8744770073, - 130.573548641, - 196.15257518, - 196.14903942799998, - 196.14903942799998, - 196.15216346199998, - 198.754471801, - 201.94448699900002, - 207.130912639, - 208.934079787, - 208.488702689, - 153.61149733, + 50.87707262519999, + 80.0321670073, + 138.091368641, + 209.15694518, + 213.08184942799997, + 215.88960942799997, + 217.218643462, + 219.59031180099998, + 221.88092699900002, + 226.103002639, + 225.276399787, + 220.557102689, + 159.81654733, 158.601014037, 150.775396235, 60.9083742719, @@ -50209,19 +50209,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.1052280358, - 77.5338514326, - 130.31813333399998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.77941121, - 200.69336030000002, - 200.520240385, - 200.2912059, - 148.456874414, + 50.4514580358, + 79.7976214326, + 137.75339333399998, + 208.80525942799997, + 212.617179428, + 215.28690942799997, + 216.57174942799998, + 216.574299428, + 217.91238121, + 219.65027030000002, + 216.715980385, + 212.15587589999998, + 154.392584414, 158.244194051, 150.775396235, 60.9083742719, @@ -50233,19 +50233,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.93390842749999, - 77.4503649272, - 130.27648511700002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, + 50.27371842749999, + 79.7030349272, + 137.58502511700001, + 208.60272942799998, + 212.40612942799999, + 215.15607942799997, + 216.53253942799998, + 216.84825942799998, + 216.00717942799997, + 214.494429428, + 211.68231942799997, + 207.581469428, + 153.715188716, 158.210112264, 150.775396235, 60.9083742719, @@ -50257,20 +50257,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.828462230700005, - 77.43784348759999, - 130.321078958, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, - 158.210112264, + 50.22227223070001, + 79.81816348759999, + 137.526598958, + 208.06161942799997, + 211.66011942799997, + 214.60101942799997, + 216.45498942799998, + 217.264029428, + 216.87528942799997, + 215.26395942799996, + 212.24994942799998, + 207.970179428, + 153.909918716, + 158.31751226400002, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50281,20 +50281,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 48.693269129200004, - 59.7695684835, - 94.88771804779999, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 130.21748913800002, - 105.069103531, + 49.114679129200006, + 62.2823684835, + 102.5463880478, + 160.241538716, + 211.163679428, + 214.372929428, + 215.098839428, + 218.69040942799998, + 218.113689428, + 212.40420942799997, + 210.98211942799998, + 206.801379428, + 135.604019138, + 105.253243531, 115.34805707999999, 79.9415925372, 31.876305895599998, @@ -50305,20 +50305,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 11.3183987988, - 59.8893778607, - 59.5032164709, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, - 77.07648040560001, - 21.5973523472, + 11.9119787988, + 14.3875787988, + 67.0268578607, + 71.6910164709, + 129.611859561, + 132.46338956099999, + 169.872108716, + 156.71719871599998, + 158.491368716, + 168.684318716, + 165.444558716, + 120.690999561, + 83.35137040560001, + 21.6798823472, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -50329,20 +50329,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.4154439479, - 77.8227444836, - 130.567774377, - 196.156451577, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, - 158.210112264, + 51.139733947900005, + 81.05614448360001, + 138.817654377, + 203.97658157700002, + 213.89883942799997, + 217.09413942799998, + 219.034719428, + 217.17228942799997, + 207.212469428, + 198.62745942799998, + 210.67866942799998, + 204.705129428, + 154.995918716, + 158.521662264, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50353,20 +50353,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.2058322095, - 77.4777599748, - 130.294380795, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, - 158.210112264, + 50.7002622095, + 80.2956299748, + 138.64068079499998, + 209.87163942799998, + 209.44614942799998, + 216.86589942799998, + 218.46489942799997, + 218.85615942799998, + 211.807299428, + 212.34009942799997, + 212.68122942799997, + 208.137249428, + 153.969078716, + 158.292912264, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50377,20 +50377,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.0936706977, - 77.4794568403, - 130.26867731800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.15525649900002, - 196.825187239, - 198.90027945900002, - 198.835306673, - 198.734066315, - 150.35768535, - 158.210112264, + 50.6628606977, + 80.3724168403, + 138.03168731800002, + 208.765929428, + 212.568849428, + 215.44998942799998, + 217.39230942799998, + 218.14612649900002, + 218.385677239, + 218.49252945900002, + 215.236396673, + 210.421856315, + 156.12857535, + 158.32987226400002, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50401,20 +50401,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.0631114866, - 77.49608825669999, - 130.305164684, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 200.225885314, - 206.229275013, - 207.606306251, - 207.954920404, - 208.084594469, - 207.578090294, - 154.118366598, - 159.07100752699998, + 50.8375614866, + 80.83517825669999, + 138.516824684, + 209.27616942799997, + 213.17277942799998, + 216.35754942799997, + 222.394415314, + 229.09857501300002, + 229.776666251, + 228.319100404, + 225.175834469, + 220.118300294, + 160.618736598, + 159.33515752699998, 150.791728013, 60.9083742719, 33.107087900699995, @@ -50425,20 +50425,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.8569745988, - 77.338521344, - 130.219209996, - 196.14903942799998, - 196.14903942799998, - 197.828151042, - 208.134538079, - 212.850492306, - 213.086594652, - 214.821710605, - 214.594478543, - 213.75952085699998, - 161.982440476, - 161.32307681999998, + 50.5249545988, + 80.455761344, + 138.340539996, + 209.319729428, + 213.25899942799998, + 218.017521042, + 230.218708079, + 235.617552306, + 235.341554652, + 235.303100605, + 231.98097854300002, + 226.74706085699998, + 169.006460476, + 161.71835682, 151.38688413900002, 60.9083742719, 33.107087900699995, @@ -50449,20 +50449,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 48.4434598924, - 59.6218192564, - 94.8027478982, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.180343196, - 207.960483041, - 217.830511338, - 219.65319248, - 219.551494774, - 218.985104924, - 144.665002811, - 103.82859948299999, + 49.0130698924, + 62.6579692564, + 103.1070178982, + 161.451468716, + 213.66345942799998, + 216.90177942799997, + 218.835323196, + 231.23721304100002, + 240.503941338, + 240.45036248, + 237.21531477399998, + 232.106594924, + 151.851862811, + 104.406699483, 115.584317649, 79.9207179249, 31.876305895599998, @@ -50473,20 +50473,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 11.3183987988, - 59.5065690773, - 59.3645316857, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 148.000771639, - 148.210461287, - 148.20669786300002, - 112.720122394, - 77.07648040560001, - 18.171034497799997, + 11.8457087988, + 14.4686087988, + 68.5670790773, + 74.00513168570001, + 131.108769561, + 133.88136956099999, + 171.011058716, + 171.437418716, + 170.700571639, + 169.16924128699998, + 166.10838786300002, + 126.169842394, + 84.49617040560001, + 18.793864497799998, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -50497,20 +50497,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.7895479058, - 77.3942673429, - 130.24728628600002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.746755995, - 201.759356748, - 202.245136614, - 202.483299617, - 202.612062219, - 154.940486222, - 155.554645927, + 50.4693779058, + 80.63126734289999, + 138.970476286, + 210.111189428, + 214.09791942799998, + 217.02771942799998, + 218.88072942799997, + 221.167755995, + 224.59250674799998, + 223.27303661399998, + 220.324899617, + 215.910882219, + 162.140696222, + 156.107785927, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50521,20 +50521,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.6885461325, - 77.33648799390001, - 130.229600338, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.36190431900002, - 198.49325912, - 199.81926359599998, - 199.646147366, - 198.024134344, - 148.331363783, - 154.788894809, + 50.5495461325, + 80.8630179939, + 138.940340338, + 210.151389428, + 214.34259942799997, + 217.412679428, + 219.27390942799997, + 217.47794431900002, + 203.53922912000002, + 215.504553596, + 217.429277366, + 210.936464344, + 155.099813783, + 155.288514809, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50545,20 +50545,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.5813275468, - 77.1790148883, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.28730661999998, - 198.161360062, - 198.992214967, - 198.884087975, - 197.737318135, - 148.27119254000002, - 154.79920583, + 50.3893775468, + 80.5836548883, + 138.73301913800003, + 209.79696942799998, + 213.68340942799998, + 216.65100942799998, + 218.54202942799998, + 219.36027661999998, + 220.851620062, + 219.815454967, + 212.857127975, + 208.619728135, + 153.98631254000003, + 155.06179583, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50569,20 +50569,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.6591107149, - 77.3025385336, - 130.22567315900002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.72467506200002, - 198.261287129, - 198.171269175, - 147.955834564, - 154.783794414, + 50.392280714900004, + 80.6309185336, + 138.73631315900002, + 209.96892942799997, + 214.197249428, + 217.35603942799997, + 219.31572942799997, + 220.07916942799997, + 219.37485942799998, + 219.14194506200002, + 216.47854712900002, + 211.874339175, + 155.630884564, + 155.589774414, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50593,20 +50593,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.8128265019, - 77.3992110956, - 130.274918147, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.160239042, - 196.17555013900002, - 196.159714729, - 147.931158716, - 154.783794414, + 50.363386501899996, + 80.59175109559999, + 138.965378147, + 210.03012942799998, + 213.66699942799997, + 216.04602942799997, + 217.400049428, + 217.77348942799998, + 217.403289428, + 215.754559042, + 212.95545013900002, + 208.918504729, + 155.429898716, + 155.747244414, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50617,20 +50617,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 48.900622168800005, - 59.9098599894, - 95.0843032402, - 147.944626134, - 196.27504496400002, - 196.19231120199998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 130.21748913800002, - 101.642785682, + 49.439932168800006, + 63.127839989399995, + 103.8437932402, + 161.876506134, + 213.95611496400002, + 216.54044120199998, + 217.91190942799997, + 218.136699428, + 217.22727942799997, + 215.13216942799997, + 212.50551942799999, + 208.89501942799998, + 137.699909138, + 102.57878568199999, 115.355332177, 80.138469693, 31.876305895599998, @@ -50641,20 +50641,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 11.3183987988, - 60.157885004, - 59.6421941966, - 112.51610058, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, - 77.07648040560001, - 18.171034497799997, + 11.8717187988, + 14.495608798800001, + 68.665645004, + 73.1376641966, + 129.72851058, + 132.173439561, + 168.805698716, + 168.749118716, + 167.701548716, + 166.605528716, + 164.463948716, + 125.161359561, + 84.30912040560001, + 19.041994497799998, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -50665,20 +50665,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.45798307, - 77.7313203631, - 130.440920261, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, - 154.783794414, + 51.002273069999994, + 80.8735503631, + 138.666920261, + 209.073579428, + 212.84214942799997, + 215.74617942799998, + 217.61943942799996, + 218.393259428, + 217.96629942799999, + 216.26709942799997, + 213.337119428, + 209.11920942799998, + 155.368398716, + 155.785854414, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50689,20 +50689,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.2551124193, - 77.58419259050001, - 130.344800935, - 196.14903942799998, - 196.14903942799998, - 196.233426663, - 199.045433367, - 204.549587268, - 207.591909444, - 208.041346094, - 208.02209384, - 207.67318356200002, - 158.623670737, - 156.989177689, + 50.7532324193, + 80.76932259050001, + 138.799880935, + 209.30187942799998, + 212.75637942799997, + 215.36799666299999, + 219.579923367, + 225.57943726800002, + 228.07296944400002, + 227.109016094, + 224.56715384, + 220.22341356200002, + 165.823790737, + 157.947737689, 150.810815219, 60.9083742719, 33.107087900699995, @@ -50713,20 +50713,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.702268497199995, - 77.2719529628, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 197.681903797, - 205.84635675799998, - 209.933076677, - 210.068881047, - 210.18589879700002, - 210.081094017, - 209.824833982, - 159.52764829, - 156.471643835, + 50.303318497199996, + 80.4560329628, + 138.40877913800003, + 209.022999428, + 212.72487942799998, + 217.189553797, + 227.13267675799997, + 232.015446677, + 231.73629104699998, + 230.22415879700003, + 227.305174017, + 223.000893982, + 167.33043829, + 157.715443835, 150.931600333, 60.9083742719, 33.107087900699995, @@ -50737,20 +50737,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.704944417600004, - 77.28838273209999, - 130.22743284999999, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.07617308899998, - 202.03039296699998, - 201.884976274, - 151.017815438, - 154.94086753300002, + 50.2207644176, + 80.5555927321, + 137.36320285, + 209.842209428, + 213.78450942799998, + 212.71074942799999, + 218.50125942799997, + 219.03603942799998, + 218.496579428, + 219.776863089, + 219.63739296699998, + 215.323866274, + 158.861555438, + 156.15292753300002, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50761,20 +50761,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.7503722909, - 77.3085853116, - 130.222242637, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, - 154.783794414, + 50.425342290900005, + 80.7830653116, + 139.16149263699998, + 210.226359428, + 214.26768942799998, + 217.253559428, + 219.09576942799998, + 219.74754942799999, + 219.28269942799997, + 217.49040942799996, + 214.37736942799998, + 210.08706942799998, + 156.202938716, + 156.234594414, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50785,20 +50785,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 48.8298676258, - 59.828594497400005, - 95.0057563564, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 130.21748913800002, - 98.21646783259999, + 49.6735576258, + 63.533624497400005, + 103.9969963564, + 162.049098716, + 214.23087942799998, + 217.378029428, + 219.14883942799997, + 219.781329428, + 219.180669428, + 217.330659428, + 214.28142942799997, + 209.891649428, + 138.167309138, + 99.49902783259999, 115.34805707999999, 79.9207179249, 31.876305895599998, @@ -50809,20 +50809,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 11.3183987988, - 59.806102751400005, - 59.4445452715, - 112.503819561, - 112.503819561, - 148.38507412799999, - 165.691539622, - 163.671427984, - 155.631271809, - 155.494886198, - 113.852711973, - 77.1460542668, - 14.7447166483, + 12.1358387988, + 14.9520887988, + 68.51546275140001, + 72.91571527149999, + 129.618339561, + 132.430569561, + 169.85166412799998, + 187.628259622, + 185.232517984, + 175.632571809, + 172.83539619799998, + 127.18234197299999, + 85.05771426679999, + 16.1860366483, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -50833,20 +50833,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.3183987988, - 11.3183987988, - 59.366352012899995, - 59.4725317235, - 130.245979237, - 133.337040793, - 164.72580183899998, - 166.231081353, - 168.32986040199998, - 168.61535254600003, - 168.263952271, - 129.571516958, - 86.9186616743, - 14.7447166483, + 11.9727887988, + 14.779198798800001, + 67.9617720129, + 72.7880317235, + 147.193759237, + 152.973750793, + 185.806681839, + 187.643761353, + 189.26410040199997, + 188.04566254600002, + 185.03200227099998, + 142.36624695799998, + 94.3874616743, + 16.040236648300002, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -50857,20 +50857,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.3648395472, - 77.07648040560001, - 130.21748913800002, - 196.794990458, - 209.92061263600002, - 232.99335249700002, - 250.697039723, - 259.229171334, - 259.907548286, - 253.107579114, - 245.48607038100002, - 239.73800756900002, - 183.280820922, - 178.80755473000002, + 50.0811195472, + 80.59332040560001, + 138.644489138, + 209.868120458, + 226.672012636, + 252.62070249700002, + 272.048099723, + 281.218631334, + 276.964948286, + 272.961639114, + 262.407660381, + 251.07458756900002, + 190.176020922, + 180.12419473000003, 168.73154143, 60.9083742719, 33.107087900699995, @@ -50881,20 +50881,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.2751940344, - 77.07648040560001, - 130.769415961, - 225.184631885, - 233.92178305000002, - 239.912971529, - 242.730511354, - 244.48330470899998, - 245.169892398, - 244.14255393699997, - 242.185531133, - 237.633080541, - 181.836139218, - 176.856476258, + 50.2008740344, + 80.47863040560001, + 139.356345961, + 238.446641885, + 250.74848305, + 259.570501529, + 264.20418135399996, + 266.56765470899995, + 266.814682398, + 264.196323937, + 259.317931133, + 250.760720541, + 189.494749218, + 178.345466258, 166.82110053099998, 60.9083742719, 33.107087900699995, @@ -50905,20 +50905,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 199.019196553, - 208.747372345, - 216.152042184, - 222.770777819, - 224.227535165, - 224.44969187499998, - 223.834765705, - 221.99360928599998, - 168.051969454, - 160.76237558100001, + 50.1903740344, + 80.4727804056, + 137.26847913800003, + 204.061689428, + 214.016346553, + 226.396612345, + 231.81207218400002, + 234.050867819, + 228.173945165, + 238.243661875, + 230.300245705, + 235.10576928599997, + 175.182639454, + 161.914825581, 151.862205698, 60.9083742719, 33.107087900699995, @@ -50929,20 +50929,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.5290913978, - 77.1269998394, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.164142943, - 196.167138802, - 196.16519401899998, - 147.93428967100002, - 151.35747656499998, + 50.3329413978, + 80.5262098394, + 138.510899138, + 209.43087942799997, + 212.86626942799998, + 215.54388942799997, + 217.509489428, + 216.375159428, + 211.83078942799997, + 213.233362943, + 211.60663880200002, + 205.84271401899997, + 153.133859671, + 152.249526565, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50953,20 +50953,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 48.9023620871, - 59.8045195204, - 94.8543815667, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 130.21748913800002, - 98.21646783259999, + 49.605652087100005, + 63.0401695204, + 101.7921215667, + 154.738488716, + 209.78796942799997, + 212.37012942799998, + 214.87707942799997, + 215.16351942799997, + 214.632849428, + 205.78047942799998, + 205.047969428, + 203.09967942799997, + 133.41215913800002, + 99.41997783259998, 115.34805707999999, 79.9207179249, 31.876305895599998, @@ -50977,20 +50977,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.3183987988, - 11.3183987988, - 59.6088089945, - 59.3734944145, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, - 77.07648040560001, - 14.7447166483, + 12.0745187988, + 14.8853087988, + 68.0019089945, + 72.3362544145, + 129.101469561, + 131.631969561, + 168.080478716, + 167.917488716, + 167.227068716, + 166.059888716, + 163.793898716, + 124.579569561, + 84.51525040560001, + 16.4184166483, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51001,20 +51001,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.7318350392, - 77.3409393869, - 130.255861004, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, - 151.35747656499998, + 50.4294850392, + 80.7384093869, + 138.594091004, + 209.04498942799998, + 212.69868942799997, + 215.49543942799997, + 217.30716942799998, + 218.09523942799999, + 217.722849428, + 216.10692942799997, + 213.27294942799998, + 209.43114942799997, + 155.983278716, + 153.38433656499998, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51025,20 +51025,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.772800823, - 77.37252703680001, - 130.29223159699998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, - 151.35747656499998, + 50.427940823, + 79.52403703680001, + 135.617921597, + 200.46279942799998, + 201.42483942799998, + 212.86974942799998, + 210.968199428, + 218.406249428, + 218.31237942799999, + 212.29872942799997, + 213.74976942799998, + 209.28129942799998, + 155.50498871599999, + 152.58177656499998, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51049,20 +51049,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.9944536396, - 77.4641839816, - 130.322899733, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.185333041, - 196.389387833, - 197.055380913, - 197.046235807, - 197.018032987, - 148.07105889, - 151.35747656499998, + 50.781083639600006, + 81.0532939816, + 139.150489733, + 209.986899428, + 213.99633942799997, + 216.960219428, + 218.87181942799998, + 219.626583041, + 219.370587833, + 218.24078091299998, + 215.23682580699997, + 210.968332987, + 156.48098889, + 153.463536565, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51073,20 +51073,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.7064615735, - 77.31771869219999, - 130.237537983, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.025047316, - 201.020359953, - 204.074108629, - 205.54522987800001, - 205.463307948, - 205.203848757, - 156.30500814500002, - 152.426585133, + 50.3892615735, + 81.11343869219999, + 139.728907983, + 210.91632942799998, + 215.10495942799997, + 218.16432942799997, + 220.950497316, + 225.633319953, + 227.993108629, + 227.651329878, + 224.48564794799998, + 220.147628757, + 165.665398145, + 155.083805133, 150.817551839, 60.9083742719, 33.107087900699995, @@ -51097,20 +51097,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.7929491309, - 77.3830991576, - 130.400749038, - 196.166303499, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 147.931158716, - 151.35747656499998, + 50.4027891309, + 81.20479915760001, + 140.07586903799998, + 211.216973499, + 215.29938942799998, + 218.26521942799997, + 219.79200942799997, + 219.11499942799998, + 219.65406942799999, + 217.81395942799998, + 214.78326942799998, + 210.67155942799997, + 157.054668716, + 154.047846565, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51121,20 +51121,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 48.479515012099995, - 59.5794109365, - 94.8130455645, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.79826956600002, - 198.890735699, - 198.858844831, - 198.796860009, - 130.21748913800002, - 98.21646783259999, + 49.071385012099995, + 63.249040936499995, + 103.9241655645, + 162.094158716, + 213.91152942799997, + 216.43776942799997, + 217.893879428, + 218.119509428, + 218.916259566, + 218.048255699, + 215.442724831, + 212.067750009, + 138.69908913800003, + 100.62429783259999, 115.34805707999999, 79.9207179249, 31.876305895599998, @@ -51145,20 +51145,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.3183987988, - 11.3183987988, - 59.641109308500006, - 59.4015317411, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, - 77.07648040560001, - 14.7447166483, + 11.9682887988, + 14.902648798800001, + 68.48960930850001, + 73.1078417411, + 129.799209561, + 132.233109561, + 168.964848716, + 169.290828716, + 168.911358716, + 167.646138716, + 165.157158716, + 126.059139561, + 85.5842104056, + 17.1408766483, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51169,20 +51169,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.6415090678, - 77.2601048303, - 130.22286698399998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.155715801, - 196.18931707500002, - 197.66656656700002, - 199.05427168300002, - 198.983630938, - 198.892607001, - 148.20683604799999, - 151.360809169, + 50.257319067800005, + 80.7244448303, + 138.789606984, + 209.54016942799998, + 213.34035942799997, + 216.280509428, + 218.185345801, + 219.028287075, + 220.20571656700002, + 219.97210168300003, + 217.036640938, + 213.045407001, + 157.09301604799998, + 153.931209169, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51193,20 +51193,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.585431396, - 77.20630534520001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.149636268, - 196.150238524, - 197.659945373, - 200.84347609699998, - 201.490918508, - 201.338250801, - 150.177807287, - 151.42405216699999, + 50.199621396, + 80.94346534520001, + 139.10384913800002, + 210.33534942799997, + 213.619959428, + 216.50691942799997, + 219.098796268, + 219.820898524, + 220.805305373, + 222.29668609699996, + 219.919018508, + 215.72076080099998, + 159.167247287, + 154.003062167, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51217,20 +51217,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.4963981059, - 77.1163905661, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.269898156, - 199.28922228300002, - 200.796103445, - 202.943408933, - 205.06240945, - 204.646332435, - 153.141698738, - 148.568797099, + 50.237008105899996, + 80.7571905661, + 139.27643913800003, + 210.20991942799998, + 214.064019428, + 216.99081942799998, + 218.93870815600002, + 222.648332283, + 223.636573445, + 224.021618933, + 223.15963945, + 218.805192435, + 161.979038738, + 151.118467099, 150.85270266700002, 60.9083742719, 33.107087900699995, @@ -51241,20 +51241,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.5613889993, - 77.21301796370001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.152390148, - 196.16686195199998, - 196.174758943, - 196.178531207, - 196.15932139799997, - 147.931158716, - 147.931158716, + 50.2335989993, + 80.83485796370002, + 139.12670913800002, + 209.85318942799998, + 213.221319428, + 215.43078942799997, + 216.37611942799998, + 216.685020148, + 216.76354195199997, + 215.832678943, + 213.390581207, + 209.75601139799997, + 156.315888716, + 150.248838716, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51265,20 +51265,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.5410628892, - 77.1507888873, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.803716009, - 200.19400483, - 202.902323153, - 205.447420709, - 205.798253708, - 205.620224941, - 156.979590882, - 153.359594506, + 50.249482889199996, + 80.6816388873, + 138.78368913800003, + 209.19690942799997, + 212.93853942799998, + 215.76879942799997, + 218.214716009, + 222.35308483, + 224.673803153, + 225.637390709, + 222.949853708, + 219.059624941, + 164.771160882, + 154.675154506, 151.034739169, 60.9083742719, 33.107087900699995, @@ -51289,20 +51289,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 48.1211424232, - 59.3646613891, - 94.79014998310001, - 147.931158716, - 196.213731674, - 202.168396973, - 210.862357493, - 218.75975280400002, - 220.405044761, - 220.212566594, - 220.088864906, - 219.06068244699998, - 145.249045754, - 97.8953757223, + 48.7851324232, + 62.8409713891, + 103.4733799831, + 161.564448716, + 213.706341674, + 222.573136973, + 233.104837493, + 241.74014280400002, + 242.947374761, + 241.08794659400002, + 238.071734906, + 233.18228244699998, + 154.094095754, + 100.4719257223, 115.63158102499999, 79.9207179249, 31.876305895599998, @@ -51313,20 +51313,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.3183987988, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 149.71114284700002, - 153.297353437, - 156.690339896, - 159.856513199, - 159.60553237899998, - 114.438157652, - 77.1511687438, - 11.3183987988, + 12.0806087988, + 14.8990787988, + 68.10214082819999, + 72.93331082819999, + 129.670059561, + 132.115509561, + 170.602602847, + 174.613643437, + 177.73272989600002, + 179.652463199, + 176.908572379, + 128.087317652, + 85.68100874379999, + 13.7137187988, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51337,20 +51337,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.5178048603, - 77.1298393762, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 198.107898184, - 200.179298825, - 200.20103789, - 200.16840614, - 200.012198806, - 199.816401683, - 148.516243992, - 148.31687390800002, + 50.2533748603, + 80.66899937619999, + 138.94916913800003, + 209.704239428, + 213.17793942799997, + 215.42157942799997, + 218.680998184, + 221.20605882499999, + 221.01806789, + 219.81279614, + 217.129598806, + 213.323301683, + 156.975133992, + 150.749693908, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51361,20 +51361,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.6306004576, - 77.1773663048, - 130.21748913800002, - 196.14903942799998, - 196.82188035299998, - 200.552594931, - 201.647265904, - 209.18507909800002, - 212.585573745, - 212.686273817, - 212.221348775, - 211.607959624, - 162.18962270100002, - 153.444934929, + 50.5242404576, + 80.83067630480001, + 138.72653913800002, + 209.213019428, + 213.40300035299998, + 219.79228493099998, + 222.685215904, + 230.99390909800002, + 234.038903745, + 232.407793817, + 229.401718775, + 225.13855962399998, + 170.65223270100003, + 155.925664929, 151.363440978, 60.9083742719, 33.107087900699995, @@ -51385,20 +51385,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.550876543, - 77.16856156200001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.65855165000002, - 202.825906618, - 208.09305847, - 209.75882562799998, - 209.605143121, - 209.10791208, - 208.62943906700002, - 159.81948737500002, - 151.708268814, + 50.286566543, + 80.67784156200001, + 138.67208913800002, + 209.26971942799997, + 212.81334942799998, + 215.90013165000002, + 223.576306618, + 229.55016847, + 231.00215562799997, + 229.391163121, + 226.28906208, + 222.012829067, + 168.25710737500003, + 154.193048814, 151.080756455, 60.9083742719, 33.107087900699995, @@ -51409,20 +51409,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.553783677700004, - 77.1515586995, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 199.52608520700002, - 208.382806469, - 209.241326376, - 212.070727487, - 213.809270845, - 213.321271345, - 212.36936841099998, - 160.83537235, - 150.573397549, + 50.241983677700006, + 80.60416869950001, + 138.79046913800002, + 209.44101942799998, + 213.163659428, + 219.31060520700004, + 229.966906469, + 231.533636376, + 233.953117487, + 234.104150845, + 230.907751345, + 226.11890841099998, + 169.54413235, + 153.239797549, 151.183617123, 60.9083742719, 33.107087900699995, @@ -51433,20 +51433,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.164802608, - 199.965212831, - 209.221085085, - 217.153142062, - 221.344622531, - 223.227359875, - 222.00974276899998, - 220.987014887, - 168.195820533, - 158.349098754, + 49.8883940344, + 80.40246040560001, + 138.650309138, + 209.281869428, + 212.862472608, + 219.422642831, + 230.459015085, + 239.163962062, + 243.029792531, + 243.38159987499998, + 239.486122769, + 234.73796488699998, + 176.980390533, + 161.088968754, 151.965881156, 60.9083742719, 33.107087900699995, @@ -51457,20 +51457,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 48.0444120293, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 197.076757879, - 220.11482698400002, - 227.99843393, - 225.890193528, - 227.218821783, - 229.101726023, - 230.396151673, - 228.918386951, - 148.919713595, - 98.3362257412, + 48.631752029299996, + 62.6656608282, + 103.14559998310001, + 160.937298716, + 213.597697879, + 238.87502698400002, + 248.81399393, + 247.666353528, + 248.730831783, + 249.174996023, + 247.269021673, + 242.071316951, + 157.466443595, + 100.5951357412, 115.770391238, 79.9207179249, 31.876305895599998, @@ -51481,20 +51481,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.3183987988, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 148.444914382, - 151.528265514, - 153.509296822, - 154.27226794700002, - 116.134150001, - 77.4279195279, - 11.3183987988, + 12.0000887988, + 14.512078798800001, + 66.8514708282, + 71.1673608282, + 128.966919561, + 131.658399561, + 168.535608716, + 169.781544382, + 170.253305514, + 171.374806822, + 169.22024794700002, + 126.00721000099999, + 85.0462695279, + 13.5860387988, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51505,20 +51505,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.3909178153, - 77.0847718258, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.40556587499998, - 203.590668126, - 210.65301110000001, - 217.16009691600001, - 220.45638094400002, - 219.77880525700002, - 218.214678814, - 162.13742505599998, - 150.91529852899998, + 50.0808278153, + 80.3423818258, + 137.89907913800002, + 208.265109428, + 211.834149428, + 216.08451587499997, + 224.40625812599998, + 231.6672311, + 238.74632691600002, + 241.069890944, + 237.61569525700003, + 232.319658814, + 171.130465056, + 153.696118529, 151.327943899, 60.9083742719, 33.107087900699995, @@ -51529,20 +51529,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.4274024508, - 77.0961666505, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.523873764, - 206.876025752, - 213.393533255, - 213.408879414, - 213.210321787, - 212.888950137, - 212.374070619, - 160.05937927, - 149.150456404, + 50.0925324508, + 80.29914665049999, + 138.13745913800003, + 208.31706942799997, + 211.831479428, + 214.856723764, + 226.94017575200002, + 234.123143255, + 233.72229941400002, + 225.222351787, + 220.460380137, + 224.938010619, + 168.01081926999998, + 151.48778640400002, 151.00708229, 60.9083742719, 33.107087900699995, @@ -51553,20 +51553,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.4461931366, - 77.09546752189999, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 197.44049993, - 203.253277069, - 210.038562651, - 213.520860138, - 213.50370311900002, - 213.01239644700001, - 212.00784806500002, - 159.366985237, - 149.784876893, + 50.0914031366, + 80.31923752189999, + 138.221579138, + 208.78011942799998, + 212.36358942799998, + 216.43739993, + 224.034547069, + 231.632232651, + 234.785550138, + 233.271933119, + 230.08503644700002, + 225.39048806500003, + 167.80829523699998, + 152.33883689299998, 151.256145403, 60.9083742719, 33.107087900699995, @@ -51577,20 +51577,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.574882119099996, - 77.1157433029, - 130.21748913800002, - 207.431471727, - 223.365771448, - 232.903695074, - 239.547354607, - 246.190132666, - 247.906106257, - 245.96335820800002, - 242.132781456, - 237.94717518299998, - 181.548368702, - 173.593711821, + 50.256872119099995, + 80.4785333029, + 138.75482913800002, + 220.918121727, + 240.836541448, + 253.42702507400003, + 261.990144607, + 269.354542666, + 270.619616257, + 267.022878208, + 260.327961456, + 252.19627518299998, + 190.674698702, + 176.513131821, 168.608823255, 60.9083742719, 33.107087900699995, @@ -51601,20 +51601,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.2751940344, - 77.07648040560001, - 130.25067926100002, - 207.85081778, - 217.26213820700002, - 223.56269920300002, - 229.092331283, - 235.037879362, - 242.05331272200002, - 246.172915248, - 244.18285925900003, - 238.525237772, - 182.78948476099998, - 171.361968963, + 50.0095040344, + 80.50776040560001, + 138.99435926100003, + 221.50183778, + 234.38400820700002, + 243.008849203, + 250.093531283, + 256.82519936200003, + 263.716102722, + 266.615755248, + 262.04137925900005, + 252.685717772, + 191.848164761, + 174.236598963, 165.668991833, 60.9083742719, 33.107087900699995, @@ -51625,20 +51625,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 48.1210575705, - 59.3628108282, - 94.8118948046, - 159.012916816, - 222.973135169, - 235.00978803, - 241.257444328, - 245.908522589, - 247.46482248799998, - 248.76613390899996, - 248.16184958200003, - 242.809073349, - 161.45313887999998, - 112.347594462, + 48.6889575705, + 62.550640828199995, + 103.1431648046, + 172.014766816, + 239.353975169, + 254.13127803, + 262.299834328, + 267.885922589, + 269.245482488, + 269.16556390899996, + 265.893019582, + 257.035313349, + 170.75280887999998, + 115.480914462, 120.306294849, 80.0698222023, 31.876305895599998, @@ -51649,20 +51649,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, - 77.07648040560001, - 11.3183987988, + 11.7569387988, + 14.4641387988, + 67.9652208282, + 72.88576082819999, + 129.593619561, + 132.002619561, + 169.148958716, + 169.932918716, + 169.668318716, + 168.363048716, + 165.804168716, + 126.711699561, + 86.3945704056, + 14.4027887988, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51673,20 +51673,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.4633806074, - 77.1144726716, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.90608601099999, - 200.371978518, - 205.464592019, - 207.833233909, - 207.50212513600002, - 158.791187081, - 158.090866646, + 49.9010206074, + 80.2647726716, + 138.85172913800002, + 209.80344942799996, + 213.53934942799998, + 216.26406942799997, + 218.09379942799998, + 220.60879601099998, + 222.752128518, + 226.388032019, + 226.101583909, + 221.99677513600002, + 168.289547081, + 161.318506646, 154.363492149, 60.9083742719, 33.107087900699995, @@ -51697,20 +51697,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.4024275843, - 77.08747914339999, - 130.21748913800002, - 196.14903942799998, - 202.659567101, - 215.286011346, - 219.114592488, - 223.709773563, - 227.366341777, - 230.987704514, - 230.679029747, - 228.82723375, - 174.841074526, - 165.658719641, + 49.8322075843, + 80.23516914339999, + 138.774239138, + 209.53440942799998, + 219.308157101, + 234.20950134600002, + 239.557492488, + 244.853323563, + 248.267251777, + 250.642954514, + 247.97816974699998, + 242.61385375, + 183.948504526, + 168.732009641, 160.18981846, 60.9083742719, 33.107087900699995, @@ -51721,20 +51721,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, - 77.07648040560001, - 11.3183987988, + 11.7443687988, + 14.382268798800002, + 67.5652608282, + 72.06757082819999, + 128.155299561, + 130.709859561, + 164.40352871599998, + 168.737508716, + 167.734248716, + 166.425078716, + 163.921158716, + 125.377359561, + 85.0652704056, + 13.5560387988, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51745,20 +51745,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 198.51112987599998, - 204.372853624, - 207.61630156700002, - 210.365357497, - 210.267593367, - 209.75937426299998, - 160.739653468, - 156.510389926, + 49.905104034400004, + 80.10312040560001, + 137.82647913800002, + 208.236909428, + 211.66272942799998, + 214.29084942799997, + 218.310679876, + 224.850673624, + 225.72928156700002, + 229.50679749699998, + 226.861643367, + 222.588814263, + 168.622693468, + 158.64053992599997, 151.86065946, 60.9083742719, 33.107087900699995, @@ -51769,20 +51769,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.035799791, - 201.130880637, - 203.756194126, - 204.203785777, - 204.056879809, - 155.472493892, - 155.034471202, + 50.1421040344, + 80.4918004056, + 137.70575913800002, + 208.10595942799998, + 211.57368942799997, + 214.28223942799997, + 216.129909428, + 215.254289791, + 219.133940637, + 222.833734126, + 220.686745777, + 216.75470980900002, + 163.122583892, + 156.929931202, 152.202488214, 60.9083742719, 33.107087900699995, @@ -51793,20 +51793,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 48.0444120293, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 203.236026824, - 221.443677708, - 233.622024226, - 235.428287406, - 234.317687036, - 232.517585698, - 152.999537237, - 104.729892838, + 48.647982029299996, + 62.33278082819999, + 102.6173299831, + 160.627938716, + 212.577699428, + 215.50326942799998, + 224.443776824, + 243.413877708, + 255.418734226, + 255.739457406, + 251.888327036, + 246.367655698, + 161.858117237, + 107.483352838, 116.39220425100001, 79.9769903236, 31.876305895599998, @@ -51817,20 +51817,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 151.009808908, - 155.178833062, - 165.41584995099998, - 175.78421826299999, - 177.28073912500003, - 139.533377391, - 92.6905622606, - 11.3183987988, + 11.7764987988, + 14.1744887988, + 67.34305082819999, + 72.3891408282, + 129.375579561, + 132.302949561, + 172.70835890799998, + 177.683153062, + 187.557619951, + 196.348288263, + 195.150329125, + 153.76723739099998, + 101.8339622606, + 14.2243187988, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51841,20 +51841,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 132.51701107899999, - 227.932825275, - 233.2009047, - 238.444409734, - 244.55266942600002, - 249.96750258699998, - 254.21004745300002, - 256.429014085, - 252.66224382000001, - 246.725655024, - 188.38567372999998, - 176.96275431, + 49.8111440344, + 79.97841040560002, + 140.346441079, + 240.521485275, + 249.4560747, + 257.379869734, + 265.36576942600004, + 271.573892587, + 275.628757453, + 276.306144085, + 269.62544382, + 259.771185024, + 196.20649372999998, + 178.88221431, 171.210388531, 60.9083742719, 33.107087900699995, @@ -51865,20 +51865,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 135.144043455, - 225.77481532099998, - 239.46615572599998, - 250.321061945, - 253.77367299399998, - 256.93103755, - 259.507133452, - 265.078174618, - 265.586623399, - 260.42514038, - 202.139884198, - 189.066650774, + 49.941434034400004, + 79.4922004056, + 141.918793455, + 231.71409532099997, + 253.78947572599998, + 265.833761945, + 268.19008299399997, + 272.90435755, + 275.051843452, + 274.087654618, + 278.24383339900004, + 270.53415038, + 206.043964198, + 189.829340774, 179.807210874, 60.9083742719, 33.107087900699995, @@ -51889,20 +51889,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 134.28379401700002, - 231.695083237, - 243.193356183, - 252.10155286699998, - 254.387308065, - 255.961949667, - 256.626944646, - 256.264604521, - 251.79160569899997, - 245.26762352799997, - 188.75174045699998, - 178.352761176, + 49.9647440344, + 80.19987040560001, + 142.195214017, + 244.64488323700002, + 260.177946183, + 272.282762867, + 276.483718065, + 278.737319667, + 279.112514646, + 277.287434521, + 270.03286569899996, + 259.69318352799996, + 198.038210457, + 181.291531176, 171.283026297, 60.9083742719, 33.107087900699995, @@ -51913,20 +51913,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 211.23908958700002, - 232.470292413, - 246.265915652, - 252.17832197400003, - 256.08146431800003, - 258.22294110800004, - 255.60240524699998, - 250.25797472500003, - 243.03301319000002, - 186.204435564, - 174.822509981, + 49.706144034400005, + 79.86069040560001, + 138.224429138, + 224.25944958700003, + 249.203182413, + 265.800745652, + 273.55131197400004, + 278.217774318, + 280.13218110800005, + 276.12798524699997, + 268.129454725, + 257.13433319, + 195.238125564, + 177.652649981, 167.839345221, 60.9083742719, 33.107087900699995, @@ -51937,20 +51937,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.402852764, - 201.740682252, - 216.087658494, - 227.005223029, - 230.25332756900002, - 232.185540215, - 232.932134591, - 231.782662445, - 229.605481891, - 175.452165057, - 166.045102262, + 49.6625240344, + 79.73331040560001, + 138.109469138, + 209.23316276399999, + 218.138592252, + 235.145848494, + 247.917743029, + 251.886087569, + 253.562970215, + 252.892604591, + 249.098302445, + 243.193501891, + 184.065765057, + 168.601972262, 157.498943054, 60.9083742719, 33.107087900699995, @@ -51961,20 +51961,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 48.0444120293, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 197.011273909, - 208.38258476000001, - 222.002580391, - 228.98635741799998, - 230.127560359, - 230.893977282, - 230.557336876, - 229.648433632, - 154.54361594699998, - 108.17339278, + 48.2287320293, + 61.540720828199994, + 101.3257699831, + 157.820748716, + 209.634493909, + 217.72635476000002, + 234.174060391, + 241.457117418, + 244.766900359, + 249.024357282, + 246.366706876, + 242.53778363200001, + 162.44879594699998, + 110.23913278, 117.925389548, 79.98958878010001, 31.876305895599998, @@ -51985,20 +51985,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 153.10111000999999, - 166.748035888, - 172.190280123, - 175.2667148, - 175.70644242100002, - 131.745717012, - 85.030178999, - 11.3183987988, + 11.5696787988, + 13.8880487988, + 66.5674008282, + 71.21371082819999, + 127.906239561, + 130.809699561, + 173.21005000999997, + 187.636465888, + 192.703410123, + 194.4322748, + 192.209802421, + 144.400467012, + 92.788418999, + 13.3553687988, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -52009,20 +52009,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 202.945197723, - 213.982929682, - 222.366401174, - 227.200866104, - 230.92211177599998, - 229.320721881, - 227.31953359800002, - 174.26605257900002, - 165.956915189, + 49.7059340344, + 79.56516040560001, + 137.54699913800002, + 208.36662942799998, + 212.095719428, + 221.773107723, + 234.68838968199998, + 243.850181174, + 248.446656104, + 250.72961177599998, + 246.532261881, + 240.80972359800003, + 182.75719257900002, + 168.363815189, 159.963594889, 60.9083742719, 33.107087900699995, @@ -52033,20 +52033,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 203.88397515699998, - 216.17298098999999, - 222.03543019699998, - 226.849038215, - 230.570067103, - 233.743434272, - 234.735157519, - 233.656757384, - 178.472279243, - 169.52983837300002, + 49.6459640344, + 79.5767404056, + 137.859209138, + 208.79442942799997, + 220.238685157, + 235.35216099, + 243.08817019699998, + 248.66791821500001, + 252.03230710300002, + 253.750824272, + 252.112297519, + 247.238327384, + 187.005149243, + 171.90307837300003, 165.776130203, 60.9083742719, 33.107087900699995, @@ -52057,20 +52057,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 201.821330607, - 209.155283071, - 210.627552256, - 211.739259015, - 213.089694515, - 212.865389803, - 164.367933464, - 165.270173545, + 49.628804034400005, + 79.54878040560001, + 137.88905913800002, + 208.901139428, + 212.73936942799997, + 215.648079428, + 223.263710607, + 231.36431307100003, + 232.511892256, + 232.07142901499998, + 230.649894515, + 226.623719803, + 173.100543464, + 167.805083545, 156.431284627, 60.9083742719, 33.107087900699995, @@ -52081,20 +52081,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 200.24183387, - 210.204124251, - 220.94691696200002, - 229.230108403, - 232.650753614, - 232.530456982, - 231.178952613, - 179.512530579, - 175.37605656399998, + 49.6093640344, + 79.47786040560001, + 137.74766913800002, + 208.72110942799998, + 212.55225942799999, + 219.69296387, + 231.645064251, + 243.230466962, + 251.251668403, + 253.223943614, + 250.410156982, + 245.291222613, + 188.558550579, + 178.02736656399998, 167.429539322, 60.9083742719, 33.107087900699995, @@ -52105,20 +52105,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 199.023039631, - 225.266952197, - 243.45838207999998, - 249.860076027, - 253.991814019, - 255.84234189300003, - 257.64775935200004, - 252.883995512, - 246.71937167000002, - 187.99900734, - 179.22585124399998, + 49.6055840344, + 79.4283604056, + 137.77490913800003, + 211.599549631, + 241.687722197, + 262.89220208, + 271.228806027, + 276.169404019, + 277.78983189300004, + 278.01631935200004, + 270.484935512, + 260.63886167000004, + 196.78573734, + 181.757581244, 170.68963433899998, 60.9083742719, 33.107087900699995, @@ -52129,20 +52129,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 48.0444120293, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 206.63643677, - 227.8489237, - 237.995869863, - 239.963467122, - 238.772488676, - 241.930557927, - 242.358316184, - 237.808918622, - 158.041681816, - 115.52675909999999, + 48.3995820293, + 61.7368308282, + 102.12556998310001, + 160.323888716, + 222.81288676999998, + 246.9474937, + 258.966619863, + 261.625027122, + 260.223868676, + 261.829227927, + 259.507786184, + 251.11367862199998, + 166.250251816, + 117.6130491, 122.21843333400001, 80.18843100389999, 31.876305895599998, @@ -52153,20 +52153,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.892515892, - 117.94339670400001, - 167.722285204, - 172.82210774, - 173.263235339, - 174.594267792, - 175.510048576, - 136.112376243, - 89.65841230710001, - 14.7447166483, + 11.715388798800001, + 13.6231187988, + 66.3853908282, + 71.1184608282, + 128.343895892, + 136.214806704, + 187.860835204, + 193.64609774000002, + 193.765175339, + 193.58255779200002, + 191.688448576, + 148.627326243, + 96.9221023071, + 15.0071266483, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -52178,19 +52178,19 @@ 33.107087900699995, 33.107087900699995, 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 198.047909566, - 214.49129672, - 233.206584325, - 242.629312801, - 253.158676724, - 256.10643828900004, - 261.91151189, - 254.94311629700002, - 245.72838583700002, - 186.72170917699998, - 180.415485503, + 77.1426304056, + 132.020099138, + 200.048999566, + 216.33995672, + 249.045864325, + 259.096582801, + 272.788756724, + 257.83641828900005, + 267.38120189, + 259.670306297, + 246.338135837, + 192.563879177, + 181.542705503, 171.613422552, 60.9083742719, 33.107087900699995, @@ -52201,20 +52201,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 215.787732234, - 236.99824096600003, - 248.90298726999998, - 252.92537574000002, - 255.16398840000002, - 257.39300289100004, - 263.773429763, - 255.632693527, - 244.397283231, - 184.366588806, - 179.21734757800002, + 49.660364034400004, + 79.32747040560001, + 137.014019138, + 227.337102234, + 252.20659096600002, + 267.05355727, + 272.98346574000004, + 276.04545840000003, + 278.00741289100006, + 282.99487976300003, + 272.23934352699996, + 257.266713231, + 192.163378806, + 181.02808757800003, 171.492411004, 60.9083742719, 33.107087900699995, @@ -52225,20 +52225,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 201.307092358, - 215.766990115, - 224.35857765, - 231.989410614, - 237.209641541, - 238.721288475, - 238.981726328, - 238.617993855, - 185.54340008600002, - 179.348337526, + 49.587074034400004, + 79.17426040560001, + 137.20130913800003, + 208.147899428, + 217.061712358, + 234.462330115, + 244.98555765, + 253.413970614, + 258.464131541, + 258.453578475, + 256.015006328, + 251.571333855, + 193.37088008600003, + 181.102947526, 172.159764422, 60.9083742719, 33.107087900699995, @@ -52249,20 +52249,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 197.973082358, - 215.06683228100002, - 234.943346634, - 240.69714164500002, - 245.610259044, - 247.861867455, - 246.80909848500002, - 246.47621815699998, - 242.70267854600002, - 185.312357151, - 179.67006900599998, + 49.5852740344, + 79.1551204056, + 137.18105913800002, + 209.964292358, + 230.79463228100002, + 253.45637663399998, + 261.096181645, + 266.887279044, + 268.88577745500004, + 266.411368485, + 263.484418157, + 255.770888546, + 193.25593715099998, + 181.43274900599997, 171.138305608, 60.9083742719, 33.107087900699995, @@ -52273,20 +52273,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 200.076090795, - 218.873318407, - 229.900402698, - 234.34472134400002, - 236.159745697, - 236.691037495, - 235.999349847, - 233.902121946, - 178.036217358, - 172.733325946, + 49.6036340344, + 79.1487304056, + 137.00960913800003, + 207.806049428, + 215.497650795, + 237.219248407, + 250.133782698, + 255.348441344, + 256.984575697, + 256.020787495, + 252.618449847, + 246.615491946, + 185.62312735799998, + 174.27670594600002, 166.76309449099998, 60.9083742719, 33.107087900699995, @@ -52297,20 +52297,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 48.0444120293, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 199.655343511, - 206.85320947699998, - 211.10089623899998, - 215.490421452, - 219.22264848799998, - 222.122301755, - 223.85647475800002, - 223.805942016, - 153.031170699, - 115.627368927, + 48.376872029299996, + 61.4638908282, + 101.6359099831, + 159.676128716, + 215.194563511, + 225.22664947699997, + 231.30184623899999, + 236.47569145199998, + 239.98519848799998, + 241.435791755, + 240.49876475800002, + 236.505272016, + 160.602270699, + 117.12088892700001, 130.113434233, 85.30424118020001, 31.876305895599998, @@ -52321,20 +52321,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 11.3183987988, - 59.3628108282, - 62.3919785046, - 140.444433589, - 152.291150684, - 191.306501134, - 191.961793506, - 192.963635627, - 193.539438698, - 194.48771971600002, - 150.667724709, - 102.387591028, - 14.7447166483, + 11.6101787988, + 13.3429187988, + 66.15703082819999, + 74.2150985046, + 155.976183589, + 170.576900684, + 211.453061134, + 212.84545350599998, + 213.418895627, + 212.590728698, + 210.95837971600002, + 163.413704709, + 110.026701028, + 16.2051766483, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -52345,20 +52345,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 196.606360197, - 213.278930666, - 232.102469146, - 242.140826798, - 248.18800051899998, - 250.38668526099997, - 252.649983578, - 249.52164358, - 243.347697829, - 184.766717108, - 178.747057371, + 49.564934034400004, + 79.09134040560001, + 136.97753913800003, + 208.27951019699998, + 228.695180666, + 250.367309146, + 262.282526798, + 269.116420519, + 271.148725261, + 271.901823578, + 266.08023357999997, + 256.007787829, + 192.246857108, + 180.06180737100001, 170.841428332, 60.9083742719, 33.107087900699995, @@ -52369,20 +52369,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 198.10345167900002, - 207.673670216, - 223.222729938, - 234.88423109200002, - 242.899069762, - 248.245539111, - 251.074898525, - 249.38464332799998, - 244.515518904, - 186.36206009600002, - 178.580979822, + 49.5438440344, + 79.07112040560001, + 136.83830913800003, + 209.61745167900003, + 222.861260216, + 241.242439938, + 254.72479109200003, + 263.45986976200004, + 268.383579111, + 269.642498525, + 265.181833328, + 256.653698904, + 193.33406009600003, + 179.604969822, 169.94208084, 60.9083742719, 33.107087900699995, @@ -52394,19 +52394,19 @@ 33.107087900699995, 33.107087900699995, 49.2751940344, - 77.07648040560001, - 130.235275081, - 218.864201968, - 232.494445964, - 242.581642834, - 244.842756187, - 245.48299102500002, - 248.01113909500003, - 248.511461904, - 245.71026219099997, - 238.919659907, - 180.276337524, - 175.28735467200002, + 78.5881504056, + 130.490095081, + 228.953561968, + 247.847815964, + 258.975652834, + 262.613256187, + 264.097091025, + 268.38563909500004, + 267.455711904, + 261.873932191, + 251.35027990700002, + 187.492267524, + 176.334594672, 166.737806111, 60.9083742719, 33.107087900699995, @@ -52417,20 +52417,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.2751940344, - 77.07648040560001, - 130.21748913800002, - 206.462730039, - 229.76959041, - 239.865664321, - 243.145179087, - 247.359008679, - 246.42478595300003, - 243.687279571, - 240.958873208, - 237.73880066299998, - 181.97404455400002, - 175.930004402, + 49.5442040344, + 79.06968040560001, + 136.744679138, + 217.879950039, + 244.92259041, + 257.927014321, + 263.205729087, + 268.267628679, + 267.018495953, + 262.879989571, + 257.414503208, + 250.45850066299997, + 189.46141455400002, + 177.08566440200002, 167.16109362, 60.9083742719, 33.107087900699995, @@ -52441,20 +52441,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.701511883799995, - 77.07648040560001, - 130.21748913800002, - 200.437422385, - 214.18176867, - 224.273322172, - 230.940908631, - 236.220093856, - 240.015304072, - 241.841477187, - 238.227335365, - 230.178481485, - 171.20633052399998, - 168.198490459, + 52.914331883799996, + 78.8763904056, + 136.83536913800003, + 212.083482385, + 229.46724867, + 242.373612172, + 250.77951863100003, + 256.862013856, + 260.47215407199997, + 260.882897187, + 254.59629536499997, + 242.667211485, + 178.43411052399998, + 169.195990459, 153.666559551, 60.9083742719, 33.107087900699995, @@ -52465,20 +52465,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 51.4707298788, - 59.3628108282, - 94.79014998310001, - 147.978034179, - 205.468955747, - 218.49767389, - 227.229182138, - 232.24615873800002, - 233.910550304, - 233.86849648, - 233.95996775600003, - 231.77609641700002, - 152.13205328799998, - 110.158049705, + 51.6905098788, + 61.304470828199996, + 101.28895998310001, + 159.433714179, + 220.658165747, + 236.50049388999997, + 247.130522138, + 252.86881873800002, + 250.007860304, + 252.62722648, + 249.90658775600002, + 243.830696417, + 158.83420328799997, + 110.89679970499999, 116.30817116600001, 79.9207179249, 31.876305895599998, @@ -52489,20 +52489,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.7447166483, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.93363560400002, - 147.945701747, - 147.946068317, - 112.503819561, - 77.07648040560001, - 18.171034497799997, + 14.9717266483, + 13.6112087988, + 65.9532408282, + 70.8597108282, + 127.924809561, + 131.029449561, + 168.490248716, + 169.417638716, + 169.009895604, + 167.505641747, + 164.626278317, + 125.373639561, + 84.44340040560002, + 19.087024497799998, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -52513,20 +52513,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.9392622408, - 77.1586450919, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.443261672, - 205.053782122, - 207.282620793, - 207.84255783, - 207.89964324500002, - 207.338286329, - 157.846324732, - 156.284720286, + 53.1505222408, + 79.0087450919, + 137.10545913800001, + 208.565079428, + 212.70102942799997, + 215.93286942799998, + 219.248611672, + 227.604332122, + 229.497950793, + 228.36999783000002, + 225.41883324500003, + 220.752096329, + 165.622474732, + 157.344890286, 150.987757527, 60.9083742719, 33.107087900699995, @@ -52537,20 +52537,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.701511883799995, - 77.07648040560001, - 130.21748913800002, - 213.144647139, - 230.485891577, - 242.716587107, - 251.733084346, - 262.45676211200004, - 266.49918636700005, - 261.164576704, - 255.949224801, - 251.442758452, - 194.600932716, - 192.131304567, + 52.84443188379999, + 78.72777040560001, + 136.939349138, + 225.286097139, + 246.645541577, + 261.871287107, + 272.919174346, + 284.48249211200005, + 288.13746636700006, + 281.184656704, + 273.083394801, + 264.58299845199997, + 202.181962716, + 193.060494567, 181.044227236, 60.9083742719, 33.107087900699995, @@ -52561,20 +52561,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.701511883799995, - 77.07648040560001, - 142.775377473, - 244.177454971, - 264.142494918, - 273.85553180899996, - 278.821258856, - 285.245745984, - 284.106871014, - 284.65698144199996, - 281.371027436, - 276.33769317900004, - 207.109134832, - 193.52264762000001, + 52.844311883799996, + 78.70929040560002, + 149.509627473, + 256.238894971, + 280.11929491800004, + 292.67324180899993, + 299.683018856, + 307.041735984, + 305.628391014, + 304.64379144199995, + 298.537117436, + 289.61926317900003, + 214.806654832, + 194.52500762000003, 178.574507339, 60.9083742719, 33.107087900699995, @@ -52585,20 +52585,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.701511883799995, - 77.07648040560001, - 148.494748956, - 247.63853491700002, - 254.142094443, - 262.298393132, - 271.572523809, - 276.509490425, - 274.84005135300004, - 272.284041502, - 266.743929143, - 256.935630163, - 192.92947617599998, - 184.71336431, + 52.827991883799996, + 78.6393304056, + 155.115658956, + 259.588914917, + 270.089914443, + 281.269703132, + 292.594003809, + 298.46529042500003, + 296.432731353, + 292.33457150199996, + 283.88280914300003, + 270.122790163, + 200.50780617599997, + 185.64360431, 169.919176283, 60.9083742719, 33.107087900699995, @@ -52609,20 +52609,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.701511883799995, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 200.554253253, - 212.385372613, - 218.475326246, - 222.991469118, - 225.947250501, - 228.50013127, - 227.127732792, - 224.908784956, - 168.706952167, - 165.69591908299998, + 52.812001883799994, + 78.58419040560001, + 136.73138913800003, + 207.92184942799997, + 216.322433253, + 231.176682613, + 239.30666624600002, + 244.748789118, + 247.37268050100002, + 248.39427127, + 244.179072792, + 237.964724956, + 176.156852167, + 166.407729083, 153.520969881, 60.9083742719, 33.107087900699995, @@ -52633,20 +52633,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 51.4707298788, - 59.3628108282, - 94.79014998310001, - 152.339458204, - 227.638994347, - 243.959975827, - 252.28690496500002, - 253.59464090699998, - 254.99289348199997, - 257.097873946, - 257.583229106, - 250.14100358800002, - 165.641262614, - 124.45453935399999, + 51.6007798788, + 60.862870828199995, + 101.18110998310001, + 164.156518204, + 243.622244347, + 263.032835827, + 273.376334965, + 275.443160907, + 276.54534348199996, + 276.990843946, + 274.54729910599997, + 263.093893588, + 172.950522614, + 125.12899935399999, 130.630793055, 83.15965708750001, 31.876305895599998, @@ -52657,20 +52657,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.7447166483, - 11.3183987988, - 60.72796262, - 77.1283620441, - 147.939846965, - 153.42384229, - 194.493972621, - 200.21558435600002, - 202.45883372699998, - 203.368208853, - 204.306936944, - 155.125266366, - 104.457596541, - 18.171034497799997, + 14.858446648300001, + 12.7712387988, + 66.85915262, + 88.4389320441, + 163.168086965, + 171.56133229, + 214.479642621, + 220.94588435600002, + 222.868253727, + 222.110528853, + 220.240026944, + 167.283666366, + 111.225086541, + 18.664204497799997, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -52681,20 +52681,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.701511883799995, - 77.07648040560001, - 135.08033524299998, - 230.797553964, - 244.901382472, - 254.135814852, - 260.696843975, - 266.335066029, - 267.412556261, - 267.082138944, - 266.63971736599996, - 258.933503299, - 196.162923618, - 192.562497612, + 52.8142518838, + 78.48051040560001, + 141.086275243, + 241.95716396400002, + 259.839252472, + 271.958514852, + 280.43987397499995, + 286.88902602900004, + 287.74004626100003, + 285.891298944, + 282.6886073659999, + 271.021493299, + 202.803303618, + 192.99371761199998, 176.892321334, 60.9083742719, 33.107087900699995, @@ -52705,20 +52705,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.701511883799995, - 77.07648040560001, - 132.643853001, - 229.491391001, - 242.61454611, - 255.498333518, - 263.99179050000004, - 268.161392203, - 270.94158039300004, - 267.413087887, - 257.741731673, - 246.91225324200002, - 182.494371244, - 180.360303323, + 52.79937188379999, + 78.4394704056, + 138.546713001, + 240.43929100100002, + 256.90240611, + 270.198603518, + 283.6356405, + 288.524972203, + 287.97702039300003, + 281.278607887, + 271.447741673, + 257.485993242, + 187.62083124400002, + 180.55758332300002, 165.45110018, 60.9083742719, 33.107087900699995, @@ -52729,20 +52729,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.701511883799995, - 77.07648040560001, - 131.674739071, - 226.868552347, - 239.269311769, - 248.396968868, - 258.70154377899996, - 264.85577931, - 263.559768548, - 264.27837381, - 264.213201421, - 258.23537086, - 198.150732534, - 196.648601297, + 52.7851518838, + 78.69678040560001, + 137.509409071, + 237.699602347, + 253.987971769, + 265.927048868, + 278.09840377899997, + 285.03044931, + 283.384608548, + 282.58665381000003, + 279.58916142100003, + 269.09960086, + 203.457852534, + 196.695191297, 180.490409793, 60.9083742719, 33.107087900699995, @@ -52753,19 +52753,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.701511883799995, - 77.07648040560001, - 133.97282356099998, - 227.643540395, - 246.742374494, - 260.53838483699997, - 266.97373346700005, - 269.600167902, - 268.971556833, - 268.423291317, - 266.96779368399996, - 260.748491006, - 203.05929934899999, + 52.7736918838, + 78.5982304056, + 139.75568356099998, + 238.356780395, + 261.254304494, + 277.66397483699996, + 285.91888346700006, + 289.298467902, + 288.308776833, + 286.21626131700003, + 281.80168368399995, + 271.249361006, + 208.12392934899998, 202.533875104, 185.334149497, 60.9083742719, @@ -52777,19 +52777,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.1278297333, - 77.07648040560001, - 133.389766649, - 227.974047095, - 243.312609963, - 255.33147013299998, - 260.916892594, - 264.091383333, - 265.321382444, - 268.41006979099996, - 261.337837605, - 255.18810406300003, - 195.618041468, + 56.239009733299994, + 78.53154040560001, + 139.068316649, + 238.629417095, + 257.845719963, + 272.86104013299996, + 280.343992594, + 284.351973333, + 285.27564244399997, + 286.79562979099995, + 276.790027605, + 266.45946406300004, + 201.293381468, 192.71297422900003, 176.597344488, 60.9083742719, @@ -52801,19 +52801,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 54.897047728299995, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 196.75922075600002, - 204.635123338, - 213.413913703, - 218.86449816500001, - 221.156598657, - 223.650876367, - 224.083123656, - 221.86319853199998, - 145.07444090700002, + 55.00813772829999, + 60.632770828199995, + 100.5592099831, + 158.831748716, + 211.69718075600002, + 222.607373338, + 233.355993703, + 239.65878816500003, + 241.572828657, + 242.437536367, + 240.043303656, + 233.72150853199997, + 151.23347090700003, 108.081982935, 116.02065319, 79.9207179249, @@ -52825,19 +52825,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 18.171034497799997, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 151.532688926, - 163.630378716, - 170.890108065, - 172.471257462, - 171.819975696, - 126.031165026, - 78.2405575618, + 18.3006044978, + 12.908338798800001, + 65.2511208282, + 70.6508208282, + 126.577119561, + 130.959249561, + 170.335548926, + 184.827928716, + 191.710528065, + 191.581827462, + 187.971225696, + 138.050605026, + 84.4886875618, 21.5973523472, 31.876305895599998, 31.876305895599998, @@ -52849,19 +52849,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.1278297333, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 199.15713405999998, - 216.772326434, - 228.34248086399998, - 229.781995497, - 229.107936722, - 228.173086577, - 223.688815029, - 163.851961143, + 56.2250597333, + 78.22395040560001, + 136.18376913800003, + 207.47316942799998, + 211.47327942799998, + 217.38066406, + 236.966376434, + 249.398310864, + 250.36460549699999, + 248.059566722, + 244.16410657699998, + 235.500475029, + 169.87098114300002, 164.212841262, 152.03541145999998, 60.9083742719, @@ -52873,19 +52873,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.1278297333, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 198.448815091, - 206.423480689, - 212.069058081, - 220.356915169, - 230.668018296, - 238.050964757, - 235.951432531, - 231.129239288, - 172.756565485, + 56.205589733299995, + 78.1793104056, + 135.969689138, + 207.229929428, + 213.517065091, + 224.346950689, + 231.791658081, + 240.810075169, + 250.731478296, + 256.448614757, + 251.473912531, + 242.417549288, + 178.17888548500002, 174.003767083, 158.175024337, 60.9083742719, @@ -52897,19 +52897,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.1278297333, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 197.812010776, - 209.465918181, - 219.916220316, - 227.944264075, - 235.100753186, - 241.665206517, - 239.502171122, - 234.913878398, - 178.237428117, + 56.1893897333, + 78.1325704056, + 135.878549138, + 207.16734942799997, + 212.871020776, + 227.515958181, + 239.842130316, + 248.508754075, + 255.332603186, + 260.137346517, + 254.937321122, + 246.189918398, + 183.721458117, 184.128682493, 165.083756051, 60.9083742719, @@ -52921,19 +52921,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.1278297333, - 77.07648040560001, - 130.21748913800002, - 197.713206102, - 211.809462232, - 225.171044807, - 236.89808383500002, - 245.228096285, - 244.62219139699997, - 243.32824766, - 241.318162777, - 237.522907481, - 179.874392302, + 56.1922397333, + 78.22230040560001, + 136.02506913800002, + 209.043906102, + 227.36215223199997, + 243.762734807, + 257.50700383500003, + 266.57489628499997, + 265.492471397, + 262.44826766, + 257.420242777, + 249.348817481, + 185.699612302, 184.52540086800002, 168.28272071, 60.9083742719, @@ -52945,19 +52945,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.1278297333, - 77.07648040560001, - 130.23505689200002, - 216.73585770900002, - 231.026649318, - 245.218599793, - 253.12916093, - 258.59131276, - 262.84359340599997, - 259.521018577, - 250.030336386, - 241.131778721, - 183.89610115399998, + 56.1746597333, + 78.1143004056, + 135.80440689200003, + 227.609207709, + 245.958579318, + 263.15205979300003, + 272.98352093, + 279.18667275999996, + 283.12980340599995, + 278.079468577, + 265.598536386, + 252.47702872099998, + 189.33756115399999, 188.558970118, 171.177949662, 60.9083742719, @@ -52969,19 +52969,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 54.897047728299995, - 59.3628108282, - 94.79014998310001, - 156.872135066, - 230.217551445, - 247.0491617, - 251.89659178200003, - 254.450501851, - 254.169185163, - 253.246025132, - 252.72948850799997, - 245.08462444699998, - 161.892306963, + 54.92425772829999, + 60.451360828199995, + 100.05640998310001, + 167.232395066, + 244.707881445, + 264.5526917, + 271.348711782, + 274.718171851, + 271.37709516300004, + 268.808045132, + 265.364348508, + 255.44404444699998, + 166.55610696300002, 127.83454626300001, 128.394833444, 82.9148814461, @@ -52994,18 +52994,18 @@ 31.876305895599998, 31.876305895599998, 18.171034497799997, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 124.164210118, - 135.02030142200002, - 176.734514316, - 179.636244054, - 180.390322745, - 179.98797867300001, - 179.518288943, - 137.37976344, - 93.1765502847, + 12.6734987988, + 64.66576082819999, + 69.06574082819999, + 137.284200118, + 152.08523142200002, + 193.492274316, + 196.075104054, + 197.190952745, + 184.91619867300003, + 182.564878943, + 146.13724344000002, + 97.3604102847, 25.0236701967, 31.876305895599998, 31.876305895599998, @@ -53018,18 +53018,18 @@ 33.107087900699995, 33.107087900699995, 56.1278297333, - 77.07648040560001, - 130.26122652299998, - 219.724295922, - 236.44279690599998, - 247.25125781999998, - 254.21456189799997, - 260.148739427, - 258.647746424, - 256.742306068, - 251.481174608, - 244.51139509299998, - 185.905528841, + 78.1340404056, + 135.36515652299997, + 229.85559592200002, + 250.61083690599997, + 264.45151782, + 273.349401898, + 280.034479427, + 278.178706424, + 274.624436068, + 266.298804608, + 255.15068509299996, + 190.66433884100002, 188.321433914, 169.412838815, 60.9083742719, @@ -53042,18 +53042,18 @@ 33.107087900699995, 33.107087900699995, 56.1278297333, - 77.07648040560001, - 130.21748913800002, - 199.273572435, - 214.667917178, - 227.831098104, - 234.552950475, - 239.31545784, - 240.364859458, - 239.90482896900002, - 237.835876757, - 235.381705359, - 180.476070908, + 77.93214040560001, + 135.32882913800003, + 209.408442435, + 228.58584717800002, + 244.658518104, + 253.299500475, + 258.84482784, + 259.549619458, + 257.451048969, + 252.521836757, + 245.860795359, + 185.166180908, 184.47743760199998, 165.493670571, 60.9083742719, @@ -53066,18 +53066,18 @@ 33.107087900699995, 33.107087900699995, 56.1278297333, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 201.211168752, - 213.779070234, - 220.11711682199999, - 224.60128281099998, - 230.740529396, - 235.798774388, - 235.63906048500002, - 233.800811066, - 178.190823882, + 77.90721040560001, + 135.23672913800002, + 206.05230942799997, + 214.790908752, + 230.014470234, + 237.95895682199998, + 243.09763281099998, + 248.970839396, + 247.715914388, + 243.72211048500003, + 242.672321066, + 182.29584388199999, 181.390814536, 163.897701876, 60.9083742719, @@ -53090,17 +53090,17 @@ 33.107087900699995, 33.107087900699995, 56.1278297333, - 77.07648040560001, - 130.21748913800002, - 196.38201884499998, - 206.026795665, - 226.304063604, - 239.970571895, - 245.714053094, - 246.301086858, - 245.32599588800002, - 243.148079878, - 238.58606231000002, + 78.2829904056, + 135.16421913800002, + 206.27607884499997, + 219.919405665, + 243.264143604, + 258.882301895, + 265.366603094, + 255.91440685799998, + 246.34185588800003, + 257.390459878, + 240.44687231, 183.273337075, 190.751060059, 169.255548413, @@ -53114,18 +53114,18 @@ 33.107087900699995, 33.107087900699995, 56.1278297333, - 77.07648040560001, - 130.21748913800002, - 203.935146119, - 219.97859485200001, - 231.167329951, - 237.466405714, - 242.47155263599998, - 243.479277401, - 242.363555236, - 240.221955676, - 237.188167127, - 180.055352502, + 78.12324040560001, + 135.07241913800001, + 213.454026119, + 233.257494852, + 247.42318995099998, + 255.44174571399998, + 261.14844263599997, + 261.832107401, + 257.055575236, + 252.101925676, + 247.60749712700002, + 184.368362502, 182.821379241, 156.013817929, 60.9083742719, @@ -53138,18 +53138,18 @@ 31.876305895599998, 31.876305895599998, 58.3233655777, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 196.14903942799998, - 205.347967238, - 220.942596792, - 231.223176518, - 242.073557419, - 245.09846286899997, - 243.43189049900002, - 238.108973157, - 152.927242541, + 60.163600828199996, + 99.87136998310001, + 158.17654871599999, + 210.43977942799998, + 222.576547238, + 240.121266792, + 251.224266518, + 261.657707419, + 262.94939286899995, + 258.178630499, + 248.45606315700002, + 157.141972541, 120.233295468, 117.733098145, 80.5349815685, @@ -53162,18 +53162,18 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 113.77867673, - 168.48523963399998, - 180.83104877, - 183.184288272, - 182.956094876, - 182.045156717, - 138.458953436, - 90.83650551080001, + 12.0993887988, + 64.4116308282, + 69.4888308282, + 126.281919561, + 130.48762673, + 187.053949634, + 186.47464877, + 183.815488272, + 183.45013487600002, + 196.453946717, + 148.522003436, + 94.84993551080001, 28.4499880461, 31.876305895599998, 31.876305895599998, @@ -53186,18 +53186,18 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 152.691235275, - 158.7910885, - 160.899671503, - 160.962967386, - 161.29171651700003, - 123.79146296299999, - 78.6340290571, + 12.0920987988, + 64.2438708282, + 69.35245082819999, + 126.639339561, + 129.558429561, + 171.571045275, + 178.3181485, + 168.25786150300002, + 167.161207386, + 162.77626651700004, + 130.06599296299999, + 82.30812905709999, 28.4499880461, 31.876305895599998, 31.876305895599998, @@ -53210,18 +53210,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 197.62875386300001, - 205.771494886, - 219.729931221, - 226.177565749, - 225.49875428299998, - 224.47581933, - 223.147769149, - 169.768937335, + 78.01890040560001, + 135.00347913800002, + 206.06532942799998, + 210.09708942799998, + 214.45146386300001, + 224.323284886, + 238.879051221, + 244.780355749, + 242.259334283, + 238.19610933, + 232.328069149, + 172.97017733500002, 177.75167588300002, 153.747475318, 60.9083742719, @@ -53234,18 +53234,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 200.07151080100002, - 216.79699720399998, - 224.56228507, - 233.50983157500002, - 239.357515559, - 241.514104267, - 240.581557602, - 237.352352962, - 179.749385606, + 77.8746904056, + 134.916509138, + 205.86588942799997, + 213.773860801, + 233.302307204, + 242.73031507, + 252.23055157500002, + 257.486785559, + 257.898664267, + 245.61750760200002, + 246.412772962, + 180.354785606, 188.146301537, 167.826734614, 60.9083742719, @@ -53258,18 +53258,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.07648040560001, - 130.21748913800002, - 200.35575208900002, - 216.310229148, - 236.61721767499998, - 245.97895856399998, - 249.69879788100002, - 255.473315237, - 254.01144504799998, - 249.74689726399998, - 244.38558604099998, - 187.93011086899998, + 77.86650040560001, + 134.84099913800003, + 210.09825208900003, + 230.095229148, + 253.38481767499997, + 264.602688564, + 269.057587881, + 274.356365237, + 271.061675048, + 263.592317264, + 253.688346041, + 191.05023086899996, 197.27075608, 177.628941442, 60.9083742719, @@ -53282,18 +53282,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.07648040560001, - 131.349048056, - 223.975350508, - 241.1573723, - 250.523663293, - 254.847897573, - 260.58541737, - 264.195234992, - 263.637967766, - 258.201455386, - 252.962074274, - 196.814088054, + 77.90448040560001, + 136.008378056, + 233.74098050799998, + 255.0494723, + 267.403253293, + 273.596127573, + 280.08532737, + 283.190244992, + 280.65654776599996, + 271.791545386, + 261.888694274, + 199.602678054, 206.927175369, 182.18364681300002, 60.9083742719, @@ -53306,18 +53306,18 @@ 31.876305895599998, 31.876305895599998, 58.3233655777, - 59.3628108282, - 94.854261293, - 171.40149440800002, - 244.94331365899998, - 257.05766937, - 262.439474885, - 265.938439485, - 266.225189501, - 262.828672562, - 258.148315181, - 252.854224398, - 171.002062448, + 60.103270828199996, + 99.777681293, + 181.84395440800003, + 259.79766365899997, + 275.01254937, + 282.286124885, + 286.455079485, + 286.301039501, + 280.929892562, + 272.92250518099996, + 262.62399439800004, + 174.247822448, 144.94240462800002, 140.345969834, 98.0484376025, @@ -53330,18 +53330,18 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 11.3183987988, - 59.6001513638, - 69.7854005408, - 145.222189444, - 161.302789553, - 206.578856918, - 209.40439455700002, - 211.983299615, - 209.26700058999998, - 201.848311897, - 154.276326092, - 102.51923113, + 12.123418798800001, + 64.5974913638, + 80.36727054079999, + 160.278829444, + 179.465869553, + 226.698806918, + 230.09110455700002, + 232.046159615, + 227.33822059, + 216.55161189700002, + 164.118336092, + 105.76427113, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -53354,18 +53354,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.07648040560001, - 130.25899536699998, - 207.204835516, - 233.955427692, - 250.347491497, - 252.757586241, - 253.182779931, - 253.66886261199997, - 253.989769009, - 251.868400583, - 244.818525686, - 183.40270587299997, + 77.84838040560001, + 135.03778536699997, + 217.238755516, + 248.268247692, + 267.80881149699997, + 272.183516241, + 273.306569931, + 273.218782612, + 271.674439009, + 266.331340583, + 254.486235686, + 186.58201587299996, 195.39861634800002, 173.321469885, 60.9083742719, @@ -53378,18 +53378,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.07648040560001, - 130.21748913800002, - 196.670780285, - 208.59832467299998, - 224.932378019, - 237.500422015, - 244.74502669499998, - 245.481075917, - 245.02932002, - 244.11440395300002, - 240.51411499900001, - 182.928069236, + 77.69934040560001, + 134.80580913800003, + 206.626370285, + 222.702584673, + 241.955698019, + 256.145722015, + 263.692816695, + 263.501295917, + 261.06450001999997, + 257.23541395300003, + 249.37014499900002, + 185.754009236, 194.854800394, 170.56654966, 60.9083742719, @@ -53402,18 +53402,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.07648040560001, - 130.21748913800002, - 196.480539599, - 207.52010747, - 220.592725659, - 227.32354386400002, - 235.721272164, - 241.422003216, - 243.232805869, - 240.048447541, - 235.22977543599998, - 178.824553821, + 77.77179040560002, + 134.67803913800003, + 206.090649599, + 221.22323747000002, + 237.121045659, + 245.434183864, + 254.159872164, + 258.881403216, + 258.874985869, + 252.804297541, + 243.64282543599998, + 181.220503821, 190.13673303, 165.914838508, 60.9083742719, @@ -53426,18 +53426,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.16737369299997, - 214.14896883699998, - 236.589480073, - 242.184365195, - 241.720861879, - 240.649894192, - 237.47675890600001, - 231.046839514, - 172.05518534, + 77.9385304056, + 134.56895913800003, + 205.64472942799998, + 209.83237369299997, + 230.733058837, + 255.021420073, + 261.281675195, + 260.147821879, + 257.017174192, + 250.37621890600002, + 238.416729514, + 173.54204534000002, 184.899454182, 163.562893133, 60.9083742719, @@ -53450,18 +53450,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 200.617016163, - 210.099722247, - 212.008134349, - 212.526730599, - 216.923402206, - 222.34166815, - 222.898898747, - 221.98246532500002, - 174.675610568, + 78.31947040560001, + 135.017969138, + 205.76193942799998, + 214.258166163, + 226.950302247, + 230.754024349, + 231.816400599, + 235.647152206, + 238.77734815, + 235.475708747, + 230.15626532500002, + 176.505190568, 185.488473929, 163.35897374799998, 60.9083742719, @@ -53474,18 +53474,18 @@ 31.876305895599998, 31.876305895599998, 61.7496834272, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 196.14903942799998, - 200.979852951, - 204.777076461, - 207.758793371, - 210.026644951, - 211.412041642, - 211.97876583800002, - 211.430698105, - 147.402431281, + 60.2129208282, + 99.53392998310001, + 158.449338716, + 211.45236942799997, + 219.728592951, + 225.588076461, + 229.170633371, + 230.736514951, + 229.837171642, + 226.71578583800002, + 220.917868105, + 149.944961281, 121.546033664, 116.464006474, 80.0448304186, @@ -53498,18 +53498,18 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.681495521, - 119.768466093, - 171.501467094, - 181.498424336, - 184.895790979, - 184.155641081, - 182.69058614899998, - 134.191317297, - 87.97936194260001, + 11.9072687988, + 64.0513008282, + 70.0442808282, + 128.21480552100002, + 138.624636093, + 192.383477094, + 202.965644336, + 205.488900979, + 202.534661081, + 197.51118614899997, + 143.675637297, + 90.3486719426, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -53522,18 +53522,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.883503533, - 202.866688502, - 206.586106716, - 208.679171115, - 209.895620463, - 210.35137208400002, - 210.082367207, - 209.400225399, - 163.707074051, + 77.6652904056, + 134.788289138, + 206.59824942799997, + 211.96312353300002, + 221.175778502, + 226.781386716, + 229.313441115, + 229.701950463, + 227.997912084, + 224.228777207, + 218.524935399, + 165.850874051, 176.410700254, 152.162410293, 60.9083742719, @@ -53546,18 +53546,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 198.322433482, - 208.729888732, - 213.159178693, - 213.76833552500003, - 213.82284062699998, - 212.874002935, - 166.840389474, + 77.63658040560001, + 134.56985913800003, + 206.07507942799998, + 210.40800942799999, + 213.30000942799998, + 217.144973482, + 227.964898732, + 231.524488693, + 230.27853552500002, + 227.182200627, + 221.38695293499998, + 168.492849474, 180.033177695, 153.99827208, 60.9083742719, @@ -53570,18 +53570,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.30667216499998, - 201.30676036600002, - 203.328543577, - 158.02720595600002, + 77.82966040560001, + 134.51534913800003, + 205.84305942799998, + 210.344709428, + 213.666189428, + 215.62002942799998, + 216.30786942799998, + 215.588109428, + 214.68630216499997, + 215.02966036600003, + 211.790193577, + 159.39961595600002, 169.819311538, 151.178592192, 60.9083742719, @@ -53594,18 +53594,18 @@ 33.107087900699995, 33.107087900699995, 63.0261606101, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 197.937796059, - 205.795664687, - 213.598513145, - 216.909759672, - 216.764355351, - 216.326048386, - 215.631023492, - 167.168412844, + 77.6486404056, + 134.48837913800003, + 206.17308942799997, + 210.650499428, + 215.421616059, + 224.958914687, + 233.100043145, + 235.478229672, + 233.272335351, + 229.455428386, + 223.910693492, + 168.52531284399998, 176.769279425, 152.636231673, 60.9083742719, @@ -53618,18 +53618,18 @@ 33.107087900699995, 33.107087900699995, 63.0249747072, - 77.07869863719999, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 203.499763021, - 217.296073196, - 222.426572728, - 224.251359393, - 225.433316387, - 225.34873791, - 223.743406501, - 177.023401525, + 77.58785863719999, + 134.274869138, + 205.694199428, + 210.159189428, + 220.581673021, + 236.285833196, + 242.004392728, + 242.972829393, + 241.98272638699999, + 238.30450791, + 231.488896501, + 178.057021525, 184.169007475, 160.817776863, 60.9083742719, @@ -53642,18 +53642,18 @@ 31.876305895599998, 31.876305895599998, 61.7496834272, - 59.3628108282, - 94.79014998310001, - 150.529827575, - 214.786579613, - 227.589171661, - 239.527162787, - 248.14582591, - 251.66286369699998, - 252.424525171, - 252.60021714, - 249.11577551000002, - 171.769874748, + 60.3804108282, + 99.1042399831, + 159.78941757500002, + 228.42739961299998, + 244.913961661, + 258.92327278700003, + 268.22296591, + 270.98025369699997, + 269.625685171, + 266.25342714, + 257.40987551, + 172.933424748, 138.143275244, 133.964176464, 88.9348344682, @@ -53666,18 +53666,18 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.3183987988, - 59.3628108282, - 66.5788499331, - 142.991488061, - 161.61088609200002, - 207.631422641, - 210.72861926899998, - 218.78642796199998, - 218.960099493, - 213.966910334, - 174.599161787, - 121.305798953, + 11.8226387988, + 63.4639608282, + 76.5881099331, + 157.784908061, + 179.644006092, + 227.595372641, + 231.19140926899996, + 238.38113796199997, + 236.28536949300002, + 227.574550334, + 182.71836178700002, + 122.347188953, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -53690,18 +53690,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.07648040560001, - 143.866538341, - 241.618836129, - 265.932801625, - 292.406588006, - 295.434293796, - 291.19279942, - 288.848613249, - 285.897484823, - 277.195818539, - 264.168571785, - 205.60041851900002, + 77.57523040560001, + 147.857948341, + 251.380566129, + 280.33580162500004, + 309.869858006, + 314.685713796, + 310.80328941999994, + 307.53468324899995, + 302.342884823, + 290.124468539, + 271.88562178499996, + 206.51547851900003, 208.068703894, 185.64117534599998, 60.9083742719, @@ -53714,18 +53714,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.07648040560001, - 139.885619403, - 236.64177797699998, - 249.36142481899998, - 261.1117166, - 275.680721094, - 283.268494788, - 280.32660796500005, - 281.525644753, - 276.936409299, - 264.137962324, - 205.94523129, + 77.59629040560002, + 143.770559403, + 246.19317797699998, + 263.45968481899996, + 278.29682660000003, + 294.607481094, + 302.531344788, + 298.63197796500003, + 297.711064753, + 289.665139299, + 271.663252324, + 206.66727129, 209.18248175099998, 186.043015931, 60.9083742719, @@ -53738,18 +53738,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 198.16344397999998, - 214.520777366, - 220.770635301, - 226.825583731, - 230.244005141, - 229.90939154, - 229.66927497499998, - 226.170757233, - 175.770836361, + 77.6389204056, + 133.929149138, + 205.109229428, + 211.56441397999998, + 231.013427366, + 239.136815301, + 245.786093731, + 248.586695141, + 246.17893154, + 242.41279497499997, + 233.554927233, + 176.358566361, 181.450163835, 155.446193389, 60.9083742719, @@ -53762,18 +53762,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 198.954976235, - 215.80226492100002, - 222.020025147, - 224.564123191, - 225.538624564, - 225.075392583, - 223.360809678, - 220.62541697199998, - 173.207926217, + 77.56575040560001, + 133.896899138, + 205.329039428, + 212.552146235, + 232.351314921, + 240.30811514700002, + 243.283853191, + 243.524554564, + 241.036532583, + 235.865709678, + 227.83510697199998, + 173.74030621699998, 178.093387537, 154.00316302299998, 60.9083742719, @@ -53786,18 +53786,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 203.171695593, - 217.86713158199998, - 223.39670778099998, - 223.280155045, - 222.31959707000001, - 221.06024597799998, - 218.64028216900002, - 174.30370242799998, + 77.7239404056, + 133.686749138, + 204.05142942799998, + 209.79168942799998, + 217.917925593, + 232.697841582, + 239.31452778099998, + 235.22165504499998, + 228.42459707, + 233.56460597799997, + 225.760872169, + 174.67423242799998, 179.37785151, 154.294190983, 60.9083742719, @@ -53810,17 +53810,17 @@ 31.876305895599998, 31.876305895599998, 61.7496834272, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 196.14903942799998, - 196.15255805400002, - 197.040689535, - 206.339816646, - 212.968841511, - 214.114830226, - 214.145269571, - 213.434455738, + 59.978020828199995, + 98.39647998310001, + 156.648048716, + 209.06643942799997, + 210.88996805400004, + 213.299369535, + 222.799046646, + 227.86762151099998, + 225.81240022600002, + 222.495859571, + 216.372655738, 150.549732583, 116.097590294, 115.357945526, @@ -53834,17 +53834,17 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, + 11.895418798800002, + 62.8849308282, + 68.1077208282, + 124.44666956100001, + 127.459959561, + 163.033068716, + 158.253468716, + 160.525038716, + 155.813478716, + 156.242058716, + 113.961819561, 87.355433954, 31.876305895599998, 31.876305895599998, @@ -53858,17 +53858,17 @@ 33.107087900699995, 33.107087900699995, 66.63566990509999, - 77.2197368443, - 130.21748913800002, - 196.14903942799998, - 196.551296041, - 211.29636516800002, - 226.809192685, - 237.936215056, - 241.010258355, - 237.79389514500002, - 231.753932945, - 223.840996823, + 77.6441168443, + 133.47293913800002, + 204.53574942799997, + 209.317646041, + 227.04930516800002, + 244.401912685, + 256.17072505600004, + 258.47634835499997, + 253.10571514500003, + 243.504152945, + 230.237206823, 175.315634249, 176.551206329, 154.233420694, @@ -53882,17 +53882,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.175786976, - 199.52310448199998, - 199.485088804, - 199.453834283, - 199.38242670900001, - 199.232735811, + 77.88057040560001, + 133.48862913800002, + 204.49176942799997, + 208.919139428, + 211.89018942799999, + 214.740516976, + 217.70202448199998, + 216.90485880399999, + 214.695004283, + 211.063196709, + 205.544585811, 159.809412931, 169.60365638, 151.46535073799998, @@ -53906,17 +53906,17 @@ 33.107087900699995, 33.107087900699995, 66.5768522433, - 77.12765588890001, - 130.21748913800002, - 196.14903942799998, - 196.845124059, - 203.68806424899998, - 210.46546672899998, - 213.162283296, - 213.079543844, - 212.726840201, - 212.157658157, - 211.290153229, + 77.60567588890001, + 133.44698913800002, + 204.65823942799997, + 209.941834059, + 219.91551424899998, + 228.52420672899999, + 231.851953296, + 230.883403844, + 228.21587020099997, + 223.836418157, + 217.381953229, 171.201570561, 173.36903368199998, 153.622255355, @@ -53930,17 +53930,17 @@ 33.107087900699995, 33.107087900699995, 66.4519072739, - 77.07648040560001, - 130.21748913800002, - 196.28227086299998, - 200.124890026, - 207.369322402, - 216.791547347, - 226.142655338, - 228.361866015, - 229.00625290800002, - 228.582842013, - 226.616601066, + 77.71770040560001, + 133.63646913800002, + 205.108060863, + 213.69647002600001, + 224.189692402, + 235.487067347, + 245.358885338, + 246.688656015, + 240.99938290800003, + 236.854262013, + 226.98467106599998, 180.120587065, 185.292640872, 162.606942899, @@ -53954,17 +53954,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.07648040560001, - 130.21748913800002, - 196.244352846, - 209.387916272, - 236.683150681, - 249.03723091099997, - 255.38981323000002, - 257.169972014, - 257.416496631, - 249.92899118999998, - 240.718714584, + 77.7267604056, + 131.843969138, + 201.89608284599998, + 223.12434627200003, + 246.299560681, + 267.88986091099997, + 274.74539323, + 261.573492014, + 263.735546631, + 262.21327119, + 240.81600458399998, 192.361402078, 192.84873672, 166.778553579, @@ -53978,17 +53978,17 @@ 31.876305895599998, 31.876305895599998, 65.1760012766, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 196.292604999, - 205.950421074, - 219.290055362, - 223.851279447, - 225.373517207, - 225.812593938, - 224.864112475, - 222.514050567, + 59.8595508282, + 98.1156199831, + 157.070028716, + 210.361674999, + 223.17405107399998, + 238.397835362, + 226.881309447, + 232.143917207, + 226.218763938, + 225.49012247500002, + 225.678570567, 157.365395581, 118.957347285, 117.713483262, @@ -54002,17 +54002,17 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.70647758, - 115.586861147, - 159.103688668, - 168.325722223, - 171.979737927, - 171.72235536, - 169.932169945, - 117.919639197, + 11.7509387988, + 62.6317308282, + 68.2489608282, + 126.50584758, + 132.455141147, + 177.714098668, + 187.25179222300002, + 189.836427927, + 187.24906536, + 181.503739945, + 123.676909197, 92.5905557596, 31.876305895599998, 31.876305895599998, @@ -54026,17 +54026,17 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 113.162331361, - 128.316772078, - 174.335740746, - 171.55453517400002, - 170.771193573, - 167.70770348399998, - 162.640068615, - 114.452935049, + 11.7685787988, + 62.4637308282, + 67.93048082819999, + 126.498621361, + 144.714952078, + 192.394480746, + 189.96784517400002, + 188.220183573, + 182.91113348399998, + 174.159978615, + 120.154255049, 90.857940986, 31.876305895599998, 31.876305895599998, @@ -54050,17 +54050,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 200.046502117, - 210.971033534, - 211.365441814, - 212.10641808, - 212.720523691, - 212.827895061, - 212.257508219, - 211.11464535399998, + 77.48046040560001, + 133.21319913800002, + 204.599739428, + 213.133912117, + 226.786523534, + 228.59273181400002, + 229.62722808, + 229.357743691, + 227.352425061, + 223.305728219, + 216.60977535399996, 172.193883197, 172.330119026, 153.998246767, @@ -54074,17 +54074,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 205.21843715100002, - 220.48525487, - 221.011125554, - 220.624183885, - 219.682395684, - 218.88342658599998, - 215.74267220000002, + 77.5024204056, + 133.12286913800003, + 204.29274942799998, + 208.994799428, + 218.97865715100002, + 235.48930487, + 238.90516555399998, + 237.444433885, + 234.098115684, + 229.43112658599998, + 220.7149922, 173.244800605, 171.65634912000002, 152.640104396, @@ -54098,17 +54098,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.378047799, - 200.899474315, - 208.72073670700001, - 213.225462968, - 214.812326073, - 214.902870532, - 214.051026577, - 212.64542369199998, + 77.4618004056, + 133.00871913800003, + 204.21735942799998, + 209.176227799, + 216.586624315, + 226.021556707, + 230.87548296799997, + 231.473216073, + 229.32114053200002, + 224.71908657699998, + 217.59359369199998, 175.40044015200002, 173.340638219, 154.115625559, @@ -54122,17 +54122,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 196.186414175, - 196.806645621, - 198.149307974, - 199.4108906, - 200.718209621, - 201.195478259, - 200.960219611, - 200.817387429, + 77.45364040560001, + 132.871199138, + 204.18240942799997, + 208.946674175, + 212.546025621, + 215.620377974, + 217.2911306, + 217.620149621, + 215.722198259, + 211.66616961100002, + 205.851567429, 164.874722101, 171.120106711, 152.376694652, @@ -54146,17 +54146,17 @@ 31.876305895599998, 31.876305895599998, 68.6023191261, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 198.79150206, - 207.30273783299998, - 208.184655222, - 207.70133106900002, - 206.94152047400001, + 59.740870828199995, + 97.44613998310001, + 155.894988716, + 208.688919428, + 211.46847942799997, + 212.88633942799999, + 215.60965206, + 223.09695783299998, + 221.986665222, + 218.007351069, + 211.75397047400003, 148.697301145, 115.49634512899999, 115.34805707999999, @@ -54170,17 +54170,17 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 112.503819561, + 11.652928798800001, + 61.9156908282, + 66.9702108282, + 123.066189561, + 125.948799561, + 164.259438716, + 162.877578716, + 160.995168716, + 161.826648716, + 156.736908716, + 116.765049561, 94.20806965290001, 31.876305895599998, 31.876305895599998, @@ -54194,17 +54194,17 @@ 33.107087900699995, 33.107087900699995, 69.9512472562, - 77.1369029879, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.38947618, - 199.28894790700002, - 202.308769753, - 203.696684209, - 203.478422587, - 203.103702867, + 77.5671329879, + 133.022339138, + 203.64675942799997, + 208.01217942799997, + 210.91299942799998, + 213.78327618, + 216.05150790700003, + 218.499109753, + 217.569524209, + 213.404882587, + 207.062682867, 168.084887712, 170.08494646600002, 151.897466353, @@ -54218,17 +54218,17 @@ 33.107087900699995, 33.107087900699995, 70.123584253, - 77.1260844031, - 130.21748913800002, - 196.14903942799998, - 196.37279345000002, - 200.117998095, - 206.498542103, - 211.088663585, - 214.13934694300002, - 215.39685536800002, - 214.841333587, - 213.35693178, + 77.4718644031, + 132.69119913800003, + 203.64213942799998, + 208.49198345000002, + 215.298628095, + 223.489942103, + 228.524183585, + 230.65473694300002, + 229.57830536800003, + 225.027683587, + 217.61111178, 175.663577768, 172.564299219, 154.00964487500002, @@ -54242,17 +54242,17 @@ 33.107087900699995, 33.107087900699995, 69.83310113120001, - 77.07648040560001, - 130.21748913800002, - 196.14903942799998, - 198.217383625, - 201.278214213, - 201.389805258, - 210.60450907, - 220.62475513, - 220.461539281, - 217.410253483, - 212.164102476, + 77.4016804056, + 132.604379138, + 203.78646942799998, + 210.576183625, + 216.703344213, + 218.476965258, + 227.92662907000002, + 236.82442513, + 234.305609281, + 227.293843483, + 216.275362476, 170.932583777, 171.946066195, 153.328241727, @@ -54266,17 +54266,17 @@ 33.107087900699995, 33.107087900699995, 69.83310113120001, - 77.07648040560001, - 130.21748913800002, - 200.687825797, - 216.217236601, - 215.756529462, - 216.205413414, - 216.322602772, - 216.645915156, - 216.719398577, - 215.62730657900002, - 215.136803379, + 77.37846040560001, + 132.58445913800003, + 208.30887579699998, + 228.663966601, + 231.267789462, + 233.352963414, + 233.686542772, + 232.822395156, + 230.559838577, + 225.54446657900002, + 219.174923379, 178.77743081699998, 173.309140689, 154.67514706600002, @@ -54290,17 +54290,17 @@ 33.107087900699995, 33.107087900699995, 69.83310113120001, - 77.07648040560001, - 130.517865407, - 211.96986867, - 229.684646663, - 252.369312687, - 252.62634669, - 249.72356093599998, - 249.301101717, - 250.084787452, - 239.384870033, - 223.285072208, + 77.40438040560001, + 132.874005407, + 219.45810867, + 241.741226663, + 267.49468268699997, + 269.54979669, + 267.15167093599996, + 265.712991717, + 264.110507452, + 249.315140033, + 226.915012208, 180.041193143, 173.90315999499998, 155.36426346800002, @@ -54314,17 +54314,17 @@ 31.876305895599998, 31.876305895599998, 68.6023191261, - 59.3628108282, - 94.79014998310001, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.19243676, - 208.585512183, - 216.47936073399998, - 215.241382516, - 212.55655133599998, + 59.712460828199994, + 97.16923998310001, + 155.389338716, + 208.22388942799998, + 211.254549428, + 212.842299428, + 213.10409676, + 224.51689218299998, + 230.15576073399998, + 224.91836251599997, + 215.912951336, 149.481020513, 115.381513985, 115.34805707999999, @@ -54338,17 +54338,17 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 59.394839475, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931724899, - 147.931158716, - 112.503819561, + 11.644348798800001, + 61.675859474999996, + 66.6879408282, + 124.385829561, + 127.304259561, + 164.197158716, + 164.358888716, + 163.343028716, + 161.101334899, + 157.194978716, + 115.784649561, 97.63438750239999, 31.876305895599998, 31.876305895599998, @@ -54362,17 +54362,17 @@ 33.107087900699995, 33.107087900699995, 69.96274588520001, - 77.24513760859999, - 130.259833664, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.180163821, - 211.53061052, - 216.939928181, - 215.875917945, - 212.557611355, + 77.53823760859999, + 132.377473664, + 203.346789428, + 208.08780942799999, + 211.208799428, + 212.92725942799999, + 214.28208382100001, + 227.59987052000002, + 230.578468181, + 225.346857945, + 216.142191355, 172.890876477, 168.587904659, 150.775396235, @@ -54386,17 +54386,17 @@ 33.107087900699995, 33.107087900699995, 70.009829063, - 77.1705626258, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 197.138448374, - 200.160305305, - 206.376955084, - 209.347153396, - 208.741051308, - 207.92116435900002, + 77.3939726258, + 132.270479138, + 203.23719942799997, + 207.930399428, + 210.98658942799997, + 213.605958374, + 216.855605305, + 222.042355084, + 222.62467339600002, + 217.95480130800001, + 211.196114359, 172.219932514, 170.274739591, 152.007691751, @@ -54410,17 +54410,17 @@ 33.107087900699995, 33.107087900699995, 70.0072888922, - 77.153800937, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 197.476454927, - 203.27181209399998, - 208.232380387, - 207.813620745, - 207.497139312, - 207.292956326, - 206.522792678, + 77.411980937, + 132.371909138, + 202.97694942799998, + 207.45444942799998, + 211.904144927, + 219.36555209399998, + 224.571010387, + 221.685140745, + 215.147379312, + 212.783856326, + 208.091882678, 171.51776048099998, 169.837872588, 151.853574438, @@ -54434,17 +54434,17 @@ 33.107087900699995, 33.107087900699995, 69.97085777000001, - 80.5530840625, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.193785287, - 197.07870944500002, - 197.755326025, - 197.732020627, - 197.68919601099998, - 197.64886577, + 80.7964440625, + 132.44429913800002, + 203.00478942799998, + 207.53412942799997, + 210.72870942799997, + 212.415565287, + 213.545979445, + 213.13443602499999, + 210.287260627, + 205.80116601099996, + 199.98178577, 169.91404649799998, 169.805917913, 151.615885253, @@ -54458,17 +54458,17 @@ 33.107087900699995, 33.107087900699995, 70.3854923508, - 80.82280454379999, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 198.467968935, - 202.979670069, - 203.681883435, - 203.601723444, - 203.59644526, - 203.388421103, - 202.606197414, + 81.0552745438, + 132.38219913800003, + 203.07693942799997, + 207.94479942799998, + 213.704818935, + 220.208640069, + 221.470293435, + 220.399473444, + 217.89849526, + 213.11265110300002, + 205.921017414, 171.497147801, 170.53060463900002, 151.881904481, @@ -54482,17 +54482,17 @@ 31.876305895599998, 31.876305895599998, 69.12727279849999, - 63.2014436889, - 94.8048095768, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 197.301011178, - 199.167475956, - 199.792154885, - 199.670308751, - 199.499964387, - 199.282951602, + 63.392693688899996, + 96.7089995768, + 155.066058716, + 208.31733942799997, + 211.62591942799997, + 214.46929117800002, + 216.578905956, + 216.157964885, + 213.534388751, + 209.034354387, + 202.540891602, 152.70658983599998, 115.70391593999999, 115.34805707999999, @@ -54506,17 +54506,17 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.7447166483, - 59.4317411192, - 59.3628108282, - 112.503819561, - 113.224869339, - 155.757087594, - 161.442367062, - 161.936476697, - 157.807669274, - 154.08893105500002, - 114.679629612, + 14.9209066483, + 61.3178711192, + 66.3965808282, + 124.541079561, + 128.53065933899998, + 172.714827594, + 178.616887062, + 177.86515669699997, + 171.185329274, + 163.14107105500003, + 117.633789612, 97.63831956339999, 31.876305895599998, 31.876305895599998, @@ -54530,17 +54530,17 @@ 33.107087900699995, 33.107087900699995, 70.3106119435, - 80.8063480597, - 130.21748913800002, - 196.14903942799998, - 197.372425174, - 211.746290201, - 228.795378151, - 237.878789592, - 243.79965079599998, - 247.786455876, - 240.210636495, - 228.52444482800001, + 80.98379805969999, + 131.998529138, + 202.90185942799997, + 208.937305174, + 226.550990201, + 245.238438151, + 254.609339592, + 259.41732079599996, + 260.901465876, + 248.988036495, + 231.238694828, 187.85440626899998, 181.883823438, 158.51372840899998, @@ -54554,17 +54554,17 @@ 33.107087900699995, 33.107087900699995, 69.88910110249999, - 80.5163777291, - 130.21748913800002, - 196.233222347, - 202.644358184, - 221.298337928, - 234.60575976, - 244.36323793000003, - 242.875148112, - 234.38194826999998, - 224.155105243, - 215.987741967, + 80.6574677291, + 131.87081913800003, + 202.78786234700002, + 213.966718184, + 235.696837928, + 250.56683976000002, + 260.52690793000005, + 253.795118112, + 245.89867826999998, + 230.976475243, + 218.499491967, 181.486020301, 173.903343234, 153.02433753100001, @@ -54578,17 +54578,17 @@ 33.107087900699995, 33.107087900699995, 69.8990998023, - 80.52613126540001, - 130.21748913800002, - 196.399584718, - 209.187755149, - 220.98142882300002, - 220.527582688, - 220.20678650099998, - 220.32038059, - 220.21884916300002, - 219.966630395, - 219.516925037, + 80.65225126540001, + 131.791589138, + 202.805364718, + 218.178425149, + 234.89755882300003, + 236.113812688, + 236.19129650099998, + 235.38080059, + 232.97748916300003, + 228.429540395, + 220.42538503699998, 176.704516295, 171.37767475500002, 152.88116227999998, @@ -54602,17 +54602,17 @@ 33.107087900699995, 33.107087900699995, 69.92872631430001, - 80.55051447640001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.184235258, - 198.08547725199998, - 199.840646167, - 199.710134664, - 199.65047105800002, - 199.489383739, - 202.637868588, + 80.66625447640001, + 131.75723913800002, + 202.52418942799997, + 207.43269942799998, + 209.326845258, + 209.13042725199998, + 208.64084616699998, + 215.28538466400002, + 209.377521058, + 207.216993739, + 204.429438588, 170.482011034, 169.389215938, 150.876189156, @@ -54626,17 +54626,17 @@ 33.107087900699995, 33.107087900699995, 70.5881472472, - 81.00156727720001, - 130.24777281500002, - 196.14903942799998, - 196.14903942799998, - 196.268049328, - 197.761952142, - 199.379635246, - 199.841058219, - 199.814018036, - 199.641445793, - 202.909046625, + 81.18888727720001, + 131.82289281500002, + 202.44453942799998, + 207.17595942799997, + 210.675489328, + 213.80871214200002, + 215.707525246, + 215.255988219, + 212.782358036, + 208.200115793, + 205.175756625, 171.221833205, 169.922150884, 151.357198363, @@ -54650,17 +54650,17 @@ 31.876305895599998, 31.876305895599998, 69.1023640495, - 63.1824647072, - 94.8235783483, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 199.575357277, + 63.3310847072, + 96.2213983483, + 154.378668716, + 207.67125942799998, + 211.21473942799997, + 213.045369428, + 213.32487942799997, + 212.16987942799997, + 209.43483942799998, + 204.84243942799998, + 201.714417277, 150.775396235, 115.34805707999999, 115.34805707999999, @@ -54674,17 +54674,17 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.7447166483, - 59.884343028100005, - 59.4559285857, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 115.93013741, + 14.8920166483, + 61.230803028100006, + 65.6578885857, + 123.604179561, + 127.022889561, + 164.207028716, + 164.496138716, + 163.358838716, + 160.768398716, + 156.131838716, + 117.76538741, 97.63438750239999, 31.876305895599998, 31.876305895599998, @@ -54698,17 +54698,17 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 57.0991588005, - 77.1966537903, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.21256394699998, - 197.72073428, - 199.15573241799999, - 199.288897161, - 199.187009554, - 202.38204551599998, + 57.2062588005, + 78.45248379030001, + 136.02617913800003, + 206.789829428, + 210.166449428, + 212.00891394699997, + 213.81195427999998, + 214.17154241799997, + 211.709137161, + 207.195749554, + 204.08433551599998, 219.22265568, 169.857476625, 169.178864766, @@ -54722,17 +54722,17 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.8673997584, - 77.31373180279999, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 202.02824735299998, - 211.869909613, - 212.658141272, - 212.404163692, - 210.979151542, - 205.44287732499998, + 56.9723397584, + 78.56080180279999, + 135.93275913800002, + 206.59986942799998, + 209.83794942799997, + 217.30319735299997, + 227.395539613, + 227.11790127199998, + 224.489243692, + 218.857781542, + 207.066927325, 219.513533787, 169.83029883999998, 169.360577727, @@ -54746,17 +54746,17 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.527639650199994, - 77.1457538714, - 130.21748913800002, - 196.14903942799998, - 196.88917304, - 204.347238449, - 210.440341841, - 210.648497797, - 210.227013323, - 209.542757415, - 210.868605148, + 56.5956796502, + 78.2947538714, + 135.772889138, + 206.360829428, + 210.24325304, + 219.380418449, + 225.827731841, + 225.055277797, + 222.21426332299998, + 217.230887415, + 212.401905148, 220.905786517, 170.662971471, 169.766650712, @@ -54770,17 +54770,17 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.6693295448, - 77.1022734316, - 130.249568798, - 202.530317384, - 218.34906288, - 227.862844286, - 235.303339102, - 233.89110074799999, - 228.04885506099998, - 221.59214461099998, - 220.831344954, + 56.7922995448, + 78.2502834316, + 135.730568798, + 212.677307384, + 231.72189287999998, + 242.835604286, + 250.478029102, + 248.00310074799998, + 239.67919506099997, + 228.89729461099998, + 222.127224954, 232.774019853, 174.977792222, 171.446330074, @@ -54794,17 +54794,17 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.2532805711, - 77.07648040560001, - 130.21748913800002, - 197.463414153, - 211.39232482300002, - 225.40982387, - 230.89262451000002, - 232.11507810799998, - 229.976289192, - 226.940507828, - 223.188260116, + 56.3035605711, + 78.18330040560001, + 135.566579138, + 207.228864153, + 224.253234823, + 240.07067387, + 242.78696451000002, + 246.313268108, + 241.736169192, + 234.296057828, + 224.495000116, 230.926469628, 173.202919624, 172.218047644, @@ -54819,16 +54819,16 @@ 31.876305895599998, 31.876305895599998, 54.9551974171, - 59.3628108282, - 94.79014998310001, - 148.960057412, - 213.436320118, - 223.22467256, - 224.022603661, - 225.347369859, - 229.757426569, - 229.650284175, - 223.70019022, + 60.399670828199994, + 100.17925998310001, + 159.136987412, + 227.107650118, + 238.64659256, + 239.810463661, + 240.021779859, + 241.842236569, + 237.128294175, + 224.91951022, 232.24722252299998, 154.424121275, 118.031625811, @@ -54843,16 +54843,16 @@ 31.876305895599998, 31.876305895599998, 18.171034497799997, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 148.420554517, - 148.506316357, - 155.32570409099998, + 12.8101787988, + 64.7242908282, + 69.1385208282, + 125.784939561, + 127.511709561, + 163.282878716, + 158.579628716, + 159.684564517, + 155.178466357, + 155.42632409099997, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -54867,16 +54867,16 @@ 33.107087900699995, 33.107087900699995, 56.58880349539999, - 77.1821689592, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 78.5988589592, + 134.67083913800002, + 205.84341942799998, + 209.33805942799998, + 211.10619942799997, + 211.47798942799997, + 210.47922942799997, + 207.93450942799998, + 203.44587942799998, + 204.199575127, 216.706946524, 168.489065812, 168.489065812, @@ -54891,16 +54891,16 @@ 33.107087900699995, 33.107087900699995, 56.7652937465, - 77.1289506922, - 130.21748913800002, - 196.14903942799998, - 196.193932329, - 198.78959593000002, - 206.36129141, - 210.717640034, - 210.322702173, - 209.86922537, - 208.927972959, + 78.6088206922, + 134.64041913800003, + 205.68522942799999, + 209.12528232900002, + 211.41353593000002, + 218.15252141000002, + 220.708930034, + 218.999452173, + 214.68371537000002, + 209.02646295899999, 219.62400217500002, 170.53271117399999, 169.43891061, @@ -54915,16 +54915,16 @@ 33.107087900699995, 33.107087900699995, 56.956353165900005, - 77.2310929325, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.314719863, - 196.44246092199998, - 196.432049888, - 203.265797279, + 77.9664829325, + 135.197489138, + 203.54355942799998, + 209.32818942799997, + 211.185969428, + 211.62897942799998, + 210.788669863, + 208.305030922, + 203.652869888, + 203.698847279, 216.952387416, 168.55294360000002, 168.489065812, @@ -54939,16 +54939,16 @@ 33.107087900699995, 33.107087900699995, 58.1075231296, - 78.681677573, - 131.614458448, - 197.003400865, - 196.522799561, - 196.603387576, - 196.41726301600002, - 196.14903942799998, - 196.342158997, - 196.304350599, - 203.256658026, + 79.703807573, + 136.521708448, + 206.590620865, + 209.582819561, + 211.468657576, + 211.66290301600003, + 210.31644942799997, + 207.87046899700002, + 203.286790599, + 204.180268026, 217.179633282, 168.99707058200002, 168.97779117, @@ -54963,16 +54963,16 @@ 33.107087900699995, 33.107087900699995, 61.214324398500004, - 77.8198209267, - 130.233479497, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 78.6614109267, + 135.340649497, + 206.43384942799997, + 210.192579428, + 212.06976942799997, + 212.389479428, + 211.289469428, + 208.572159428, + 203.727159428, + 204.087045127, 216.706946524, 168.489065812, 168.489065812, @@ -54987,16 +54987,16 @@ 31.876305895599998, 31.876305895599998, 59.145902437000004, - 59.5537894429, - 94.79014998310001, - 147.931158716, - 196.14903942799998, - 196.174724376, - 196.75934470200002, - 197.01951262199998, - 197.00176695599998, - 196.971044648, - 203.772075453, + 60.364869442899995, + 99.61438998310001, + 157.656378716, + 209.512419428, + 211.374824376, + 212.32676470200002, + 211.43748262199998, + 208.783846956, + 202.924124648, + 204.041055453, 217.404627504, 151.02089641900002, 115.34805707999999, @@ -55011,16 +55011,16 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 11.3183987988, - 59.478384562100004, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 154.783794414, + 12.6170987988, + 63.600744562100004, + 68.9078508282, + 123.198309561, + 125.168079561, + 156.784968716, + 154.779498716, + 151.180308716, + 153.735888716, + 155.012454414, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -55035,16 +55035,16 @@ 33.107087900699995, 33.107087900699995, 60.2497903316, - 77.5801975138, - 130.419670254, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.45703523900002, - 196.816298287, - 196.77504233300002, - 203.581699902, + 78.31897751380001, + 134.255080254, + 205.161879428, + 206.01423942799997, + 207.22551942799998, + 201.37206942799997, + 210.43688523900002, + 208.129088287, + 203.49138233300002, + 204.240769902, 217.257503008, 168.77767391700002, 168.489065812, @@ -55059,16 +55059,16 @@ 33.107087900699995, 33.107087900699995, 60.0799069163, - 77.10475052460001, - 130.21748913800002, - 198.77954255, - 217.2082838, - 231.360496988, - 240.23498423, - 242.831744378, - 238.357847268, - 231.440364496, - 227.367610185, + 77.81299052460001, + 134.67299913800002, + 207.91751255, + 229.9038038, + 243.852196988, + 251.50610423, + 253.080884378, + 243.625487268, + 233.52305449600001, + 227.401000185, 233.054605605, 175.465536418, 172.642907076, @@ -55083,16 +55083,16 @@ 33.107087900699995, 33.107087900699995, 59.575491187900006, - 77.07648040560001, - 130.21748913800002, - 198.15943777500001, - 201.834349616, - 210.811998945, - 215.509077523, - 217.118372224, - 217.440854509, - 217.235596586, - 221.064734171, + 77.7342904056, + 134.59001913800003, + 207.251477775, + 214.456009616, + 225.252708945, + 230.272887523, + 230.796812224, + 228.489644509, + 223.799686586, + 221.736734171, 223.675506074, 172.458072087, 171.221855786, @@ -55107,16 +55107,16 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 154.783794414, + 12.470548798800001, + 63.204940828199994, + 66.5649408282, + 124.696659561, + 126.67056956100001, + 162.522318716, + 161.555718716, + 158.926488716, + 152.515188716, + 155.014404414, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -55131,16 +55131,16 @@ 33.107087900699995, 33.107087900699995, 60.471993278700005, - 77.7192411397, - 130.478251905, - 196.14903942799998, - 196.14903942799998, - 196.16210359500002, - 196.80013813, - 197.437122241, - 197.360895077, - 197.185435203, - 203.835170689, + 78.2980611397, + 134.756251905, + 205.380639428, + 209.160519428, + 211.20668359500002, + 212.25172813, + 211.800072241, + 208.947495077, + 204.116215203, + 204.08738068899999, 216.75021975899998, 168.489065812, 168.489065812, @@ -55155,16 +55155,16 @@ 31.876305895599998, 31.876305895599998, 58.9608671368, - 59.7746959361, - 95.046408884, - 147.938882798, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 60.8486959361, + 99.203868884, + 156.939482798, + 208.77393942799998, + 210.80256942799997, + 211.27140942799997, + 210.30285942799998, + 207.66072942799997, + 203.06871942799998, + 203.738745127, 216.706946524, 150.775396235, 115.34805707999999, @@ -55179,16 +55179,16 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 154.783794414, + 12.3695987988, + 63.4701708282, + 68.1415008282, + 124.73064956099999, + 126.740919561, + 162.633138716, + 161.62729871599998, + 158.941128716, + 154.529508716, + 155.471244414, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -55203,16 +55203,16 @@ 33.107087900699995, 33.107087900699995, 60.177014169500005, - 77.1379328245, - 130.21748913800002, - 196.207753289, - 198.493760022, - 206.565113386, - 216.646844716, - 220.755104777, - 222.188827933, - 221.43199589000002, - 222.80333202100002, + 78.0880628245, + 134.113859138, + 204.76687328900002, + 210.49514002200002, + 220.285643386, + 230.698664716, + 233.985194777, + 232.913677933, + 227.94928589000003, + 223.528582021, 229.509496485, 173.340909712, 171.072895935, @@ -55227,16 +55227,16 @@ 33.107087900699995, 33.107087900699995, 63.8589395508, - 77.4484246531, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.697239823, - 197.559504837, - 197.613774928, - 197.528597018, - 197.558187615, - 204.274627173, + 78.4059646531, + 133.68464913800003, + 202.91400942799999, + 206.28801942799998, + 207.678169823, + 208.431084837, + 210.228684928, + 207.901277018, + 203.75369761500002, + 204.820477173, 217.569462338, 168.597588932, 168.489065812, @@ -55251,16 +55251,16 @@ 33.107087900699995, 33.107087900699995, 64.4028736323, - 77.4865201083, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 197.485072883, - 200.390219663, - 201.116859346, - 200.951448526, - 200.72852355999999, - 206.91808207900002, + 78.4166401083, + 133.598819138, + 204.48417942799998, + 208.09494942799998, + 211.54064288299998, + 214.94243966300002, + 214.81770934600002, + 211.98979852600002, + 207.37826356, + 207.619542079, 219.181938621, 169.432359631, 168.56968848900001, @@ -55275,16 +55275,16 @@ 33.107087900699995, 33.107087900699995, 64.30970058, - 77.608487952, - 130.21748913800002, - 196.14903942799998, - 196.289403623, - 198.62568298300002, - 199.502806515, - 199.407039433, - 199.34224023599998, - 199.313019516, - 205.8118041, + 78.152177952, + 133.93304913800003, + 204.46032942799997, + 208.236603623, + 212.67693298300003, + 214.014916515, + 212.994819433, + 210.20257023599999, + 202.324359516, + 205.84366409999998, 217.9260735, 168.86329233, 168.489065812, @@ -55299,16 +55299,16 @@ 33.107087900699995, 33.107087900699995, 64.0436862193, - 77.52321013119999, - 130.219209996, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 77.9862001312, + 133.22820999599998, + 201.222129428, + 196.51989942799997, + 198.23262942799997, + 196.934439428, + 197.134119428, + 198.84159942799997, + 197.87490942799997, + 203.569605127, 216.706946524, 168.489065812, 168.489065812, @@ -55323,15 +55323,15 @@ 31.876305895599998, 31.876305895599998, 63.2692404363, - 60.456450868699996, - 95.55870563719999, - 148.18754710899998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, + 61.035690868699994, + 99.0962456372, + 155.29418710899998, + 206.13336942799998, + 206.88051942799999, + 207.80670942799998, + 204.99024942799997, + 200.149509428, + 196.76946942799998, 203.001675127, 216.706946524, 150.786658811, @@ -55347,16 +55347,16 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.3183987988, - 61.2092338575, - 60.7963010474, - 113.73663268899999, - 113.687810522, - 149.012420174, - 148.99001692299998, - 148.974317342, - 148.997770406, - 155.887222219, + 12.2117987988, + 63.6590638575, + 63.2412110474, + 117.54795268899998, + 122.853140522, + 158.148050174, + 159.461486923, + 157.128887342, + 154.971130406, + 156.139762219, 133.933229452, 98.6349997115, 31.876305895599998, @@ -55371,16 +55371,16 @@ 33.107087900699995, 33.107087900699995, 65.08633296139999, - 78.46717097, - 131.066854811, - 196.238714758, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 79.04968097, + 131.218954811, + 204.32437475799998, + 203.83068942799997, + 205.70973942799998, + 206.81484942799997, + 201.92544942799998, + 196.320099428, + 202.523259428, + 203.150175127, 216.706946524, 168.489065812, 168.489065812, @@ -55395,16 +55395,16 @@ 33.107087900699995, 33.107087900699995, 64.3072508739, - 77.64311909, - 130.225592042, - 196.14903942799998, - 196.684004283, - 202.937244375, - 207.060183594, - 201.87142001, - 200.734392375, - 199.55716218, - 207.960763172, + 78.14492909, + 133.69860204199998, + 204.45102942799997, + 208.906244283, + 217.454214375, + 222.115833594, + 215.99704001, + 212.064732375, + 206.13370218, + 208.130563172, 217.121738483, 168.489065812, 168.489065812, @@ -55419,16 +55419,16 @@ 33.107087900699995, 33.107087900699995, 63.6085891304, - 77.1730492765, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.42503495100001, - 196.822463939, - 196.806918171, - 196.79383854099999, - 196.75836777499998, - 206.979545447, + 77.6648992765, + 133.533539138, + 204.07827942799997, + 207.79515942799998, + 210.26829495100003, + 208.72349393899998, + 210.274908171, + 204.562488541, + 201.566257775, + 207.449225447, 217.225333288, 168.98817268000002, 168.640211285, @@ -55443,16 +55443,16 @@ 33.107087900699995, 33.107087900699995, 63.6358553966, - 77.3177902876, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 206.427992976, + 77.77505028760001, + 133.43831913800003, + 204.105909428, + 207.83043942799998, + 210.06084942799998, + 210.57309942799998, + 205.949379428, + 206.907849428, + 202.46589942799997, + 206.935292976, 216.706946524, 168.489065812, 168.489065812, @@ -55467,16 +55467,16 @@ 33.107087900699995, 33.107087900699995, 64.1057948287, - 77.5683477194, - 130.230447138, - 196.14903942799998, - 196.169407646, - 197.063359668, - 197.679311279, - 197.667199385, - 197.651918973, - 197.671688657, - 207.895525242, + 77.99794771939999, + 133.406487138, + 204.14445942799998, + 208.08090764599999, + 211.284889668, + 212.41039127899998, + 211.471669385, + 208.694528973, + 204.101138657, + 208.414135242, 217.90302774, 169.32847182600003, 168.5309635, @@ -55491,16 +55491,16 @@ 31.876305895599998, 31.876305895599998, 66.2036203635, - 60.0406222799, - 94.8957532734, - 147.931158716, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 206.427992976, + 60.5534722799, + 98.13431327340001, + 156.008568716, + 207.04275942799998, + 208.618899428, + 210.78369942799998, + 207.39363942799997, + 207.11409942799997, + 202.70523942799997, + 207.00975297600002, 216.706946524, 150.775396235, 115.34805707999999, @@ -55515,16 +55515,16 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 59.5543442746, - 59.3628108282, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 158.210112264, + 11.8155287988, + 62.673294274599996, + 67.1195208282, + 124.145769561, + 126.515289561, + 162.674208716, + 153.992178716, + 152.120868716, + 154.320588716, + 158.71597226400002, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -55539,16 +55539,16 @@ 33.392057242599996, 33.3695262576, 68.2914835058, - 78.3719490132, - 130.729643972, - 196.159115006, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 78.8975190132, + 133.861613972, + 202.855355006, + 204.05373942799997, + 209.988699428, + 196.98675942799997, + 201.680139428, + 198.426099428, + 199.57182942799997, + 203.378175127, 216.706946524, 168.500818925, 168.921224596, @@ -55563,16 +55563,16 @@ 34.095540346300005, 34.4217098373, 68.95656775009999, - 78.6505492145, - 130.649642476, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 79.0843792145, + 133.669292476, + 203.997849428, + 207.92595942799997, + 210.37485942799998, + 210.98706942799998, + 210.01593942799997, + 207.279009428, + 202.754469428, + 203.602185127, 216.706946524, 168.489065812, 168.489065812, @@ -55587,16 +55587,16 @@ 34.072259395399996, 34.376078837, 68.8762144113, - 78.3324955203, - 130.362274738, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 78.7213555203, + 133.25604473799999, + 203.90547942799998, + 207.906309428, + 210.29082942799997, + 210.86331942799998, + 209.95791942799997, + 207.239499428, + 202.74387942799999, + 203.645175127, 216.706946524, 168.489065812, 168.489065812, @@ -55611,16 +55611,16 @@ 33.8001186573, 34.1416222222, 68.6781547491, - 77.97311474039999, - 130.23510433799999, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 78.40913474039999, + 132.999454338, + 203.623899428, + 207.35049942799998, + 209.468919428, + 210.11724942799998, + 209.322339428, + 206.80923942799998, + 202.511169428, + 203.593605127, 216.706946524, 168.489065812, 168.489065812, @@ -55635,16 +55635,16 @@ 33.2162920253, 33.3363472554, 68.1781353352, - 77.75184048460001, - 130.21748913800002, - 196.14903942799998, - 196.14903942799998, - 196.185549886, - 196.358975589, - 196.347234006, - 196.342833174, - 196.34058234999998, - 203.152505389, + 78.23130048460001, + 133.01009913800002, + 203.579229428, + 205.25592942799997, + 206.523489886, + 206.58714558900002, + 198.66809400600002, + 204.56997317399998, + 202.82508234999997, + 203.361665389, 216.706946524, 168.489065812, 168.489065812, @@ -55659,16 +55659,16 @@ 31.876305895599998, 31.876305895599998, 66.5327447411, - 60.066128698200004, - 94.8160268814, - 147.931158716, - 196.14903942799998, - 196.64884369499998, - 197.754728659, - 197.67726596699998, - 197.604659314, - 197.593504299, - 204.380933184, + 60.4854686982, + 97.59759688140001, + 155.554308716, + 207.86394942799998, + 210.88690369499997, + 212.711318659, + 211.81449596699997, + 209.046449314, + 204.488914299, + 205.215083184, 217.299449058, 150.775396235, 115.34805707999999, @@ -55683,16 +55683,16 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.3183987988, - 59.3628108282, - 59.3628108282, - 113.80123406199999, - 117.642375095, - 159.463086358, - 156.578329061, - 157.448420706, - 159.96683866200001, - 160.080286679, + 11.686858798800001, + 62.068660828199995, + 66.8436708282, + 125.18992406199999, + 131.378385095, + 173.809806358, + 170.110039061, + 168.43019070600002, + 166.63628866200003, + 160.323886679, 134.407984272, 98.11667474869999, 31.876305895599998, @@ -55707,16 +55707,16 @@ 33.107087900699995, 33.107087900699995, 67.4926085616, - 77.37189117829999, - 130.21748913800002, - 196.15579065699998, - 201.775190081, - 220.322473164, - 230.783975898, - 233.4242731, - 223.442354917, - 216.55591360399998, - 216.25951451, + 77.8314311783, + 132.25706913800002, + 203.34937065699998, + 211.170680081, + 231.206233164, + 244.949315898, + 245.6747431, + 234.36238491699999, + 223.143973604, + 217.06204451, 220.74618134899998, 171.487835572, 170.530549526, @@ -55731,16 +55731,16 @@ 33.107087900699995, 33.107087900699995, 67.1381684582, - 77.1554385759, - 130.21748913800002, - 197.19499671100002, - 210.384370916, - 229.583653936, - 232.996633164, - 230.376094502, - 225.303298218, - 221.737355197, - 222.502660627, + 77.54903857590001, + 132.89261913800001, + 204.61279671100002, + 221.697850916, + 243.243133936, + 247.294453164, + 243.836434502, + 236.265778218, + 228.436595197, + 223.293580627, 229.639300792, 175.027679269, 173.267111776, @@ -55755,16 +55755,16 @@ 33.107087900699995, 33.107087900699995, 66.5574719854, - 77.07648040560001, - 130.21748913800002, - 197.495614601, - 211.289723669, - 228.414635967, - 240.400164001, - 240.365352027, - 232.697754887, - 227.321539928, - 220.44818051299998, + 77.46618040560001, + 132.81941913800003, + 204.699964601, + 222.179753669, + 241.425725967, + 254.156784001, + 253.379532027, + 243.266394887, + 233.699119928, + 221.09081051299998, 221.588052683, 171.721629148, 170.467264839, @@ -55779,16 +55779,16 @@ 33.107087900699995, 33.107087900699995, 66.76227187479999, - 77.0848090427, - 130.21748913800002, - 197.7928988, - 209.943545352, - 226.90393992900002, - 225.616668974, - 221.461725382, - 220.94573128300001, - 217.483815271, - 214.126789986, + 77.6151190427, + 132.776639138, + 203.12299879999998, + 219.627095352, + 240.29290992900002, + 237.158568974, + 235.257855382, + 232.23551128300002, + 224.344545271, + 214.79149998600002, 220.95895033399998, 171.645244213, 170.80300186300002, @@ -55803,16 +55803,16 @@ 33.107087900699995, 33.107087900699995, 66.961547701, - 77.1679174736, - 130.21748913800002, - 196.64799258600002, - 201.46840092699998, - 206.680328333, - 206.41997232399999, - 206.39570768, - 206.36773063700002, - 206.6096921, - 209.828817381, + 77.5610974736, + 132.74786913800003, + 203.758532586, + 212.44948092699997, + 217.363328333, + 220.623592324, + 219.83246767999998, + 217.27051063700003, + 213.2093621, + 210.642507381, 219.97761011400002, 170.185698645, 169.240674484, @@ -55827,16 +55827,16 @@ 31.876305895599998, 31.876305895599998, 66.1918194813, - 59.8862619068, - 94.8136124284, - 147.931158716, - 196.485604341, - 197.458121219, - 197.627222483, - 198.200383824, - 198.23184036, - 198.103221338, - 204.630425516, + 60.2589519068, + 97.3056224284, + 155.034228716, + 207.438784341, + 210.797741219, + 211.675382483, + 206.583763824, + 207.35376036, + 200.863581338, + 204.740705516, 217.670389171, 150.775396235, 115.34805707999999, @@ -55851,16 +55851,16 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 59.781529059899995, - 59.3628108282, - 112.50802103299999, - 114.038338189, - 150.478289582, - 148.852011234, - 148.094607873, - 147.931158716, - 154.783794414, + 11.6442287988, + 62.1887290599, + 66.3070308282, + 123.402281033, + 127.361188189, + 164.533469582, + 162.217161234, + 157.857957873, + 154.531548716, + 155.159274414, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -55875,16 +55875,16 @@ 33.107087900699995, 33.107087900699995, 71.77559417169999, - 78.2239903833, - 130.455350508, - 196.14903942799998, - 196.814023813, - 209.828300482, - 226.23687999100002, - 217.81685062100001, - 209.17908017399998, - 204.858425148, - 205.35211895, + 78.54430038330001, + 132.881660508, + 203.484399428, + 208.302463813, + 223.816760482, + 238.30758999100001, + 227.628710621, + 217.17459017399997, + 208.310165148, + 205.54123895, 217.829547982, 169.216481009, 168.543561939, @@ -55899,16 +55899,16 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 59.695098535599996, - 59.3628108282, - 113.729637362, - 118.12289634, - 166.55101111599998, - 172.61114179, - 169.034032159, - 161.046656523, - 158.561292114, + 11.6404187988, + 62.0875385356, + 66.61243082819999, + 125.015037362, + 129.78377634, + 179.53417111599998, + 186.46142179, + 180.440482159, + 168.264716523, + 159.774852114, 133.079947242, 97.63438750239999, 31.876305895599998, @@ -55923,16 +55923,16 @@ 33.107087900699995, 33.107087900699995, 70.9102656636, - 77.8428545655, - 130.547628094, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 78.1367645655, + 132.818298094, + 203.06958942799997, + 205.18119942799999, + 206.97900942799998, + 206.91798942799997, + 205.59951942799998, + 203.384559428, + 199.65099942799998, + 203.205975127, 216.706946524, 168.489065812, 168.489065812, @@ -55947,16 +55947,16 @@ 33.107087900699995, 33.107087900699995, 71.0642269696, - 77.9263248142, - 130.306171652, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 78.4037448142, + 132.57324165199998, + 199.96446942799997, + 203.04129942799997, + 206.21835942799999, + 207.84735942799998, + 205.05849942799998, + 201.37581942799997, + 202.94064942799997, + 203.505495127, 216.706946524, 168.489065812, 168.489065812, @@ -55971,16 +55971,16 @@ 33.107087900699995, 33.107087900699995, 71.13484557039999, - 77.8049019394, - 130.294465699, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 78.0564819394, + 132.627205699, + 201.96342942799998, + 203.05884942799997, + 200.52294942799998, + 200.272899428, + 197.41443942799998, + 199.01997942799997, + 198.47082942799997, + 203.124555127, 216.706946524, 168.489065812, 168.489065812, @@ -55995,16 +55995,16 @@ 31.876305895599998, 31.876305895599998, 69.84820696710001, - 60.1350454134, - 95.0915201973, - 147.93454004400002, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.65061968499998, - 198.415645705, - 196.707236458, - 203.001675127, + 60.5832454134, + 95.3113601973, + 151.74142004400002, + 198.56361942799998, + 199.69296942799997, + 197.59008942799997, + 199.804219685, + 206.823655705, + 198.423746458, + 204.037365127, 216.706946524, 150.775396235, 115.34805707999999, @@ -56019,16 +56019,16 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.3183987988, - 60.2770735445, - 59.620162439, - 112.503819561, - 112.503819561, - 147.931158716, - 147.931158716, - 147.931158716, - 147.931158716, - 154.783794414, + 11.679958798800001, + 61.4949535445, + 64.089262439, + 114.053679561, + 116.746149561, + 152.256348716, + 151.665588716, + 150.614928716, + 150.255108716, + 154.941474414, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -56043,16 +56043,16 @@ 33.107087900699995, 33.107087900699995, 70.6639834548, - 77.5810678375, - 130.464736801, - 196.150760285, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 196.14903942799998, - 203.001675127, + 77.9400178375, + 132.75502680099999, + 202.922270285, + 207.00045942799997, + 209.54079942799999, + 207.36045942799998, + 206.25756942799998, + 207.50289942799998, + 201.44988942799998, + 204.650235127, 216.706946524, 168.489065812, 168.489065812, @@ -64825,7 +64825,7 @@ ], "bau_critical_load_met": true, "bau_critical_load_met_time_steps": 0, - "annual_calculated_kwh": 1.0e6 + "annual_calculated_kwh": 1.04806221e6 }, "Messages": { "errors": [], @@ -64846,7 +64846,6 @@ [ "core_pv.jl_152", [ - "PV inv_eff will be ignored because dc_coupled_with_storage=true. The inverter of the DC coupled PV and electric storage system will be defined by ElectricStorage inverter_efficiency_fraction and rectifier_efficiency_fraction.", "PV inv_eff will be ignored because dc_coupled_with_storage=true. The inverter of the DC coupled PV and electric storage system will be defined by ElectricStorage inverter_efficiency_fraction and rectifier_efficiency_fraction." ] ], @@ -88327,7 +88326,6 @@ 0.0, 0.0 ], - "annual_energy_produced_kwh_bau": 71463.73, "electric_to_load_series_kw": [ 0.0, 0.0, @@ -88337,17 +88335,15 @@ 0.0, 0.0, 0.0, - 3.295, - 17.556, - 26.273, - 48.938, - 61.118, - 55.855, - 45.968, - 31.371, - 7.937, - 0.0, 0.0, + 6.369, + 10.817, + 22.826, + 31.182, + 28.498, + 23.453, + 16.006, + 4.049, 0.0, 0.0, 0.0, @@ -88361,16 +88357,17 @@ 0.0, 0.0, 0.0, - 3.839, - 18.257, - 27.039, - 30.854, - 30.078, - 40.563, - 46.492, - 31.885, - 0.563, 0.0, + -0.0, + -0.0, + 6.727, + 11.208, + 13.154, + 12.758, + 18.606, + 23.72, + 16.268, + 0.287, 0.0, 0.0, 0.0, @@ -88385,15 +88382,16 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 18.613, - 28.064, - 32.519, - 31.809, - 26.589, - 48.014, - 33.359, - 8.571, + 6.909, + 11.731, + 14.004, + 13.641, + 10.978, + 23.037, + 17.02, + 4.373, 0.0, 0.0, 0.0, @@ -88409,15 +88407,15 @@ 0.0, 0.0, -0.0, - 4.074, - 18.555, - 27.555, - 31.268, - 30.453, - 47.058, - 47.137, - 32.667, - 8.422, + 0.0, + 6.879, + 11.471, + 13.365, + 12.95, + 22.041, + 24.05, + 16.667, + 4.297, 0.0, 0.0, 0.0, @@ -88432,16 +88430,16 @@ 0.0, 0.0, 0.0, - 2.161, - 34.519, - 48.681, - 57.482, - 61.267, - 60.469, - 44.906, - 30.046, - 31.797, - 4.036, + 1.103, + 17.612, + 24.837, + 29.327, + 31.258, + 30.851, + 22.911, + 15.33, + 16.223, + 2.059, 0.0, 0.0, 0.0, @@ -88457,16 +88455,15 @@ 0.0, 0.0, -0.0, - 2.41, - 15.561, - 6.682, - 4.846, - 14.218, - 39.413, - 45.485, - 31.736, - 8.707, 0.0, + 5.352, + 0.821, + -0.0, + 4.666, + 17.176, + 23.207, + 16.192, + 4.443, 0.0, 0.0, 0.0, @@ -88481,15 +88478,16 @@ 0.0, 0.0, 0.0, - 1.192, - 14.64, - 23.523, - 27.735, - 27.495, - 44.191, - 45.377, - 31.348, - 8.86, + -0.0, + 0.0, + 4.882, + 9.414, + 11.563, + 11.44, + 19.107, + 23.151, + 15.994, + 4.52, 0.0, 0.0, 0.0, @@ -88505,15 +88503,16 @@ 0.0, 0.0, -0.0, - 3.396, - 18.424, - 28.083, - 32.671, - 32.089, - 48.487, - 48.949, - 34.059, - 10.261, + 0.0, + 6.812, + 11.74, + 14.081, + 13.784, + 22.423, + 24.974, + 17.377, + 5.235, + 0.0, 0.0, 0.0, 0.0, @@ -88529,15 +88528,14 @@ 0.0, 0.0, -0.0, - -0.0, - 17.414, - 26.173, - 30.235, - 29.647, - 24.935, - 47.193, - 33.187, - 10.701, + 6.297, + 10.766, + 12.838, + 12.538, + 10.075, + 22.678, + 16.932, + 5.46, 0.0, 0.0, 0.0, @@ -88553,15 +88551,15 @@ 0.0, 0.0, 0.0, - 2.399, - 16.374, - 16.629, - 11.768, - 19.895, - 20.298, - 33.821, - 19.718, - 3.254, + 0.0, + 5.767, + 5.897, + 3.417, + 7.563, + 7.532, + 17.255, + 10.06, + 1.66, 0.0, 0.0, 0.0, @@ -88577,17 +88575,15 @@ 0.0, 0.0, -0.0, - -0.0, - -0.0, - 20.992, - 26.338, - 13.592, - 9.964, - 13.499, - 28.811, - 10.581, 0.0, 0.0, + 8.122, + 10.85, + 4.347, + 2.496, + 4.3, + 14.7, + 5.398, 0.0, 0.0, 0.0, @@ -88601,15 +88597,17 @@ 0.0, 0.0, 0.0, - 1.049, - 15.536, - 24.867, - 29.282, - 28.85, - 44.727, - 46.371, - 32.719, - 11.491, + 0.0, + 0.0, + 0.0, + 5.339, + 10.1, + 12.352, + 12.132, + 19.307, + 23.659, + 16.694, + 5.863, 0.0, 0.0, 0.0, @@ -88625,15 +88623,15 @@ 0.0, 0.0, -0.0, - 1.31, - 15.207, - 23.629, - 27.877, - 27.8, - 44.716, - 46.428, - 32.723, - 11.278, + -0.0, + 5.171, + 9.468, + 11.635, + 11.596, + 19.435, + 23.688, + 16.696, + 5.754, 0.0, 0.0, 0.0, @@ -88649,15 +88647,15 @@ 0.0, 0.0, -0.0, - 2.733, - 17.09, - 26.046, - 19.652, - 11.565, - 29.287, - 39.861, - 26.198, - 12.724, + -0.0, + 6.132, + 10.701, + 7.439, + 3.313, + 12.289, + 20.337, + 13.366, + 6.492, 0.0, 0.0, 0.0, @@ -88673,15 +88671,15 @@ 0.0, 0.0, -0.0, - 0.007, - 13.518, - 7.55, - 14.877, -0.0, - 34.868, - 17.499, - 1.984, - 1.366, + 4.309, + 1.264, + 5.003, + -0.0, + 11.158, + 8.928, + 1.012, + 0.697, 0.0, 0.0, 0.0, @@ -88697,16 +88695,15 @@ 0.0, 0.0, 0.0, - -0.0, - 14.316, - 23.95, - 28.795, - 28.779, - 44.68, - 47.104, - 33.008, - 12.438, 0.0, + 4.716, + 9.632, + 12.104, + 12.095, + 18.748, + 24.033, + 16.841, + 6.346, 0.0, 0.0, 0.0, @@ -88722,14 +88719,15 @@ 0.0, 0.0, -0.0, - 13.351, - 22.265, - 26.96, - 13.853, - 43.938, - 46.07, - 32.587, - 12.674, + -0.0, + 4.224, + 8.772, + 11.167, + 4.48, + 18.37, + 23.505, + 16.626, + 6.466, 0.0, 0.0, 0.0, @@ -88745,15 +88743,16 @@ 0.0, 0.0, -0.0, + -0.0, 0.0, + 3.276, + 5.317, + 4.5, + -0.0, + 8.653, + 6.372, + 0.725, 0.0, - 11.493, - 15.494, - 13.892, - 2.476, - 27.489, - 12.49, - 1.421, 0.0, 0.0, 0.0, @@ -88772,12 +88771,11 @@ -0.0, 0.0, -0.0, + 11.43, + 9.348, -0.0, - 27.474, - 23.393, - -0.0, - 21.657, - 1.404, + 11.049, + 0.716, 0.0, 0.0, 0.0, @@ -88793,39 +88791,15 @@ 0.0, 0.0, 0.0, - 0.087, - 15.477, - 24.61, - 29.514, - -0.0, -0.0, - 0.0, - 0.577, - 0.853, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + 5.309, + 9.968, + 12.471, 0.0, 0.0, 0.0, - -0.0, - -0.0, - 2.843, - 12.356, - 14.185, - 15.637, - 3.776, - 25.071, - 26.922, - 14.267, + 0.294, + 0.435, 0.0, 0.0, 0.0, @@ -88841,15 +88815,15 @@ 0.0, 0.0, -0.0, - 1.543, - 14.97, - 23.812, - 28.827, - 29.054, - 47.333, - 47.577, - 34.393, - 14.275, + -0.0, + -0.0, + 3.716, + 4.649, + 5.39, + -0.0, + 9.533, + 13.736, + 7.279, 0.0, 0.0, 0.0, @@ -88864,18 +88838,16 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 14.144, - 5.201, - 14.848, - 8.73, - 28.031, - 35.045, - 22.214, - 3.956, 0.0, 0.0, + 5.05, + 9.561, + 12.12, + 12.236, + 20.888, + 24.274, + 17.548, + 7.283, 0.0, 0.0, 0.0, @@ -88888,17 +88860,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - -0.0, 0.0, -0.0, -0.0, - -0.0, - -0.0, - 3.094, - 1.189, - 0.0, + 4.629, + 0.066, + 4.988, + 1.866, + 10.254, + 17.88, + 11.334, + 2.018, 0.0, 0.0, 0.0, @@ -88915,16 +88888,14 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, 0.0, - 26.824, - 17.479, - 35.021, - 14.709, - 0.0, + -0.0, + -0.0, 0.0, 0.0, + 1.579, + 0.606, 0.0, 0.0, 0.0, @@ -88938,19 +88909,17 @@ 0.0, 0.0, 0.0, - 2.938, 0.0, - 12.191, - 11.483, - 3.108, - -0.0, - 32.651, - 11.877, 0.0, 0.0, 0.0, 0.0, 0.0, + -0.0, + 11.098, + 6.33, + 17.868, + 7.505, 0.0, 0.0, 0.0, @@ -88960,16 +88929,6 @@ 0.0, 0.0, 0.0, - -0.0, - 3.42, - 20.128, - 30.894, - 33.173, - 33.173, - 54.445, - 53.524, - 38.533, - 17.303, 0.0, 0.0, 0.0, @@ -88979,21 +88938,16 @@ 0.0, 0.0, 0.0, + 3.632, + 3.271, 0.0, 0.0, + 16.659, + 6.06, 0.0, 0.0, 0.0, 0.0, - 4.555, - 19.604, - 29.213, - 33.173, - 33.173, - 54.564, - 51.467, - 37.457, - 17.234, 0.0, 0.0, 0.0, @@ -89004,20 +88958,19 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 7.682, + 13.174, + 14.337, + 14.337, + 25.476, + 27.308, + 19.66, + 8.828, 0.0, 0.0, 0.0, - -0.0, - 3.898, - 17.905, - 26.507, - 30.393, - 29.95, - 37.518, - 41.683, - 20.338, - 5.538, 0.0, 0.0, 0.0, @@ -89029,19 +88982,19 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 7.414, + 12.317, + 14.337, + 14.337, + 26.115, + 26.259, + 19.111, + 8.793, 0.0, 0.0, 0.0, - 1.728, - 16.234, - 14.835, - 18.388, - 17.472, - 29.464, - 37.151, - 26.225, - 8.188, 0.0, 0.0, 0.0, @@ -89054,18 +89007,20 @@ 0.0, 0.0, 0.0, + -0.0, + 6.548, + 10.936, + 12.919, + 12.693, + 17.082, + 21.267, + 10.377, + 2.826, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.625, - 33.126, - 33.173, - 29.035, - 23.803, - 37.638, - 14.423, 0.0, 0.0, 0.0, @@ -89077,19 +89032,18 @@ 0.0, 0.0, 0.0, + 5.695, + 4.981, + 6.794, + 6.326, + 11.866, + 18.955, + 13.38, + 4.177, 0.0, 0.0, 0.0, - -0.0, 0.0, - 13.749, - 22.867, - 27.495, - 28.385, - 45.773, - 48.899, - 35.702, - 15.665, 0.0, 0.0, 0.0, @@ -89101,19 +89055,17 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + -0.0, + 14.313, + 14.337, + 12.226, + 7.468, + 19.203, + 7.359, 0.0, 0.0, - -0.0, - 4.125, - 18.901, - 17.986, - 20.23, - 16.832, - 53.775, - 50.358, - 37.408, - 18.603, 0.0, 0.0, 0.0, @@ -89128,16 +89080,15 @@ 0.0, 0.0, 0.0, + 4.427, + 9.079, + 11.441, + 11.895, + 19.306, + 24.949, + 18.215, + 7.992, 0.0, - 4.267, - 18.485, - 27.389, - 31.811, - 31.555, - 54.395, - 50.276, - 37.375, - 18.809, 0.0, 0.0, 0.0, @@ -89153,15 +89104,14 @@ 0.0, 0.0, -0.0, - 2.832, - 16.988, - 26.375, - 30.821, - 30.748, - 52.911, - 49.41, - 36.591, - 18.198, + 7.056, + 6.589, + 7.734, + 6.0, + 25.493, + 25.693, + 19.086, + 9.491, 0.0, 0.0, 0.0, @@ -89178,14 +89128,14 @@ 0.0, -0.0, 0.0, - -0.0, - 12.979, - 16.793, - 12.481, - 5.008, - 34.248, - 21.471, - 6.774, + 6.843, + 11.386, + 13.642, + 13.512, + 25.882, + 25.651, + 19.069, + 9.596, 0.0, 0.0, 0.0, @@ -89201,16 +89151,15 @@ 0.0, 0.0, -0.0, - 1.748, - 14.759, - 24.158, - 29.212, - 29.85, - 43.712, - 40.042, - 29.577, - 11.795, 0.0, + 6.079, + 10.869, + 13.137, + 13.1, + 24.392, + 25.209, + 18.669, + 9.285, 0.0, 0.0, 0.0, @@ -89226,16 +89175,15 @@ 0.0, 0.0, -0.0, - 2.862, - 10.245, - 19.648, - 8.41, - 18.95, - 29.35, - 26.834, - 10.376, 0.0, + -0.0, + 4.034, + 5.98, + 3.78, 0.0, + 13.394, + 10.955, + 3.456, 0.0, 0.0, 0.0, @@ -89252,14 +89200,14 @@ 0.0, -0.0, -0.0, - -0.0, - 8.795, - 11.617, - 12.091, - 21.927, - 6.385, - 0.0, - 0.0, + 4.943, + 9.738, + 12.316, + 12.642, + 19.146, + 20.429, + 15.09, + 6.018, 0.0, 0.0, 0.0, @@ -89274,14 +89222,16 @@ 0.0, 0.0, 0.0, - 2.104, - 3.746, - 13.628, -0.0, 0.0, - 0.0, - 6.008, - 0.0, + -0.0, + 2.64, + 7.437, + 1.703, + 4.494, + 14.974, + 13.691, + 5.294, 0.0, 0.0, 0.0, @@ -89300,20 +89250,12 @@ -0.0, -0.0, -0.0, - 8.13, - 4.847, - 8.888, - 2.329, - 27.229, - 3.715, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + -0.0, + 1.9, + 3.339, + -0.0, + 11.187, + 3.258, 0.0, 0.0, 0.0, @@ -89321,15 +89263,6 @@ 0.0, 0.0, 0.0, - 1.438, - 16.512, - 26.103, - 31.586, - 32.183, - 41.647, - 51.306, - 37.491, - 18.454, 0.0, 0.0, 0.0, @@ -89337,23 +89270,19 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + -0.0, 0.0, + 4.365, + -0.0, 0.0, 0.0, + 3.066, 0.0, 0.0, 0.0, 0.0, - -0.0, - 0.44, - -0.0, - 25.262, - 30.705, - 30.816, - 52.054, - 50.637, - 36.952, - 1.014, 0.0, 0.0, 0.0, @@ -89365,19 +89294,17 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + -0.0, 0.0, + 1.56, 0.0, + 1.947, -0.0, - 2.818, - 17.904, - -0.0, - 32.264, - 32.735, - 49.033, - 52.157, - 29.623, - 19.06, + 13.892, + 1.895, + 0.0, 0.0, 0.0, 0.0, @@ -89393,15 +89320,14 @@ 0.0, 0.0, -0.0, - 4.171, - 18.846, - 28.881, - 33.173, - 33.173, - 59.053, - 52.677, - 39.289, - 20.424, + 5.837, + 10.73, + 13.527, + 13.832, + 17.935, + 26.177, + 19.128, + 9.415, 0.0, 0.0, 0.0, @@ -89417,15 +89343,15 @@ 0.0, 0.0, -0.0, - 4.689, - 18.203, - 26.908, - 31.458, - 31.476, - 45.787, - 50.129, - 37.245, - 19.569, + -0.0, + 0.0, + 10.301, + 13.078, + 13.135, + 20.147, + 25.835, + 18.853, + 0.517, 0.0, 0.0, 0.0, @@ -89441,16 +89367,15 @@ 0.0, 0.0, -0.0, - 3.204, - 17.16, - 26.328, - 31.093, - 31.429, - 56.985, - 50.469, - 37.493, - 19.219, 0.0, + 6.547, + -0.0, + 13.873, + 14.114, + 19.82, + 26.611, + 15.114, + 9.724, 0.0, 0.0, 0.0, @@ -89465,16 +89390,16 @@ 0.0, 0.0, 0.0, - 3.217, - 17.519, - 26.815, - 31.437, - 31.322, - 56.283, - 49.96, - 30.302, - 3.684, 0.0, + -0.0, + 7.027, + 12.147, + 14.337, + 14.337, + 28.209, + 26.876, + 20.045, + 10.42, 0.0, 0.0, 0.0, @@ -89488,16 +89413,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - 3.325, - -0.0, - -0.0, - 4.397, - 20.496, - 27.518, - 12.594, + 0.0, + 6.7, + 11.141, + 13.462, + 13.471, + 21.705, + 25.576, + 19.003, + 9.984, 0.0, 0.0, 0.0, @@ -89514,15 +89440,16 @@ 0.0, 0.0, -0.0, + 6.167, + 10.845, + 13.276, + 13.447, + 26.661, + 25.75, + 19.129, + 9.806, 0.0, 0.0, - -0.0, - 14.457, - 6.279, - 18.55, - 37.638, - 19.566, - 0.518, 0.0, 0.0, 0.0, @@ -89535,18 +89462,18 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + 6.351, + 11.094, + 13.452, + 13.393, + 26.309, + 25.49, + 15.46, + 1.88, 0.0, 0.0, - 3.467, - 17.089, - 25.881, - 30.724, - 31.138, - 57.346, - 51.342, - 38.112, - 20.412, - 0.774, 0.0, 0.0, 0.0, @@ -89559,18 +89486,17 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + -0.0, + -0.0, 0.0, 0.0, - 2.265, - 15.17, - 23.768, - 29.306, - 30.41, - 56.404, - 51.148, - 38.494, - 20.661, - 0.946, + -0.0, + 0.0, + 14.04, + 6.425, + 0.0, 0.0, 0.0, 0.0, @@ -89588,13 +89514,13 @@ 0.0, 0.0, -0.0, - 6.396, - 14.995, - 10.897, - 0.943, - 25.4, - 12.068, - 0.133, + 0.0, + 4.788, + 0.616, + 6.877, + 19.203, + 9.982, + 0.264, 0.0, 0.0, 0.0, @@ -89608,17 +89534,17 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 7.499, - 22.293, - 32.131, - 33.173, - 33.483, - 65.049, - 56.676, - 42.616, - 23.057, - 0.566, + 6.131, + 10.617, + 13.088, + 13.299, + 26.979, + 26.195, + 19.445, + 10.415, + 0.395, 0.0, 0.0, 0.0, @@ -89633,16 +89559,16 @@ 0.0, 0.0, -0.0, - 6.61, - 20.397, - 29.29, - 32.675, - 32.026, - 58.513, - 50.869, - 39.283, - 21.873, - 0.593, + -0.0, + 5.152, + 9.539, + 12.364, + 12.928, + 25.885, + 26.096, + 19.64, + 10.541, + 0.483, 0.0, 0.0, 0.0, @@ -89656,18 +89582,17 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 4.852, - 19.144, - 29.034, - 33.173, - 33.173, - 45.63, - 8.087, - 2.497, - 4.123, - 1.185, 0.0, + -0.0, + 0.676, + 5.063, + 2.972, + -0.0, + 12.959, + 6.157, + 0.068, 0.0, 0.0, 0.0, @@ -89681,16 +89606,17 @@ 0.0, 0.0, 0.0, - 4.581, - 18.145, - 27.677, - 32.797, - 33.173, - 60.129, - 52.625, - 39.689, - 21.334, - 1.676, + 0.0, + 1.238, + 8.786, + 13.806, + 14.337, + 14.337, + 31.886, + 28.916, + 21.743, + 11.764, + 0.289, 0.0, 0.0, 0.0, @@ -89705,16 +89631,17 @@ 0.0, 0.0, -0.0, - 6.562, - 21.483, - 17.894, - 19.017, - 33.173, - 46.994, - 55.519, - 3.209, - 3.901, - 0.157, + 0.785, + 7.819, + 12.356, + 14.083, + 13.542, + 28.603, + 25.954, + 20.042, + 11.16, + 0.302, + 0.0, 0.0, 0.0, 0.0, @@ -89729,16 +89656,15 @@ 0.0, 0.0, -0.0, - 7.928, - 22.387, - 31.941, - 33.173, - 34.566, - 65.049, - 56.13, - 42.352, - 0.496, - 1.163, + 7.18, + 12.225, + 14.337, + 14.337, + 21.709, + 4.126, + 1.274, + 2.104, + 0.605, 0.0, 0.0, 0.0, @@ -89752,16 +89678,22 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 6.67, + 11.533, + 14.145, + 14.337, + 28.967, + 26.85, + 20.249, + 10.885, + 0.855, 0.0, 0.0, 0.0, - 5.982, 0.0, - 4.9, 0.0, - 6.288, - 9.48, 0.0, 0.0, 0.0, @@ -89771,21 +89703,22 @@ 0.0, 0.0, 0.0, + 0.76, + 8.373, + 6.542, + 7.115, + 14.337, + 22.516, + 28.326, + 1.637, + 1.99, + 0.08, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - -0.0, - -0.0, - 2.041, - 12.182, - 4.832, - 5.411, - 23.71, - 15.802, - 6.736, 0.0, 0.0, 0.0, @@ -89793,48 +89726,45 @@ 0.0, 0.0, 0.0, + -0.0, + 1.457, + 8.834, + 13.709, + 14.337, + 14.337, + 32.438, + 28.638, + 21.608, + 0.253, + 0.593, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - 2.358, - 17.191, - 18.265, - 15.778, - 34.269, - 40.35, - 23.002, - 9.197, - 0.298, 0.0, 0.0, 0.0, 0.0, 0.0, + -0.0, + -0.0, 0.0, + -0.0, + 0.464, + -0.0, 0.0, 0.0, + 3.208, + 4.837, 0.0, 0.0, 0.0, 0.0, - -0.0, 0.0, - 4.644, - 2.417, - 14.598, - 17.763, - 20.196, - 38.355, - 33.489, - 37.613, - 20.363, - 1.997, 0.0, 0.0, 0.0, @@ -89848,17 +89778,12 @@ 0.0, 0.0, -0.0, + 3.628, -0.0, - 4.719, - 16.629, - 25.043, - 8.111, - 31.135, - 58.226, - 40.785, - 37.378, - 9.776, - 2.016, + -0.0, + 6.554, + 8.062, + 3.437, 0.0, 0.0, 0.0, @@ -89875,15 +89800,15 @@ -0.0, -0.0, 0.0, - 25.5, - 29.703, - 16.997, - 33.942, - 50.287, - 37.216, - 20.167, - 2.172, 0.0, + 6.183, + 6.731, + 5.462, + 12.052, + 20.587, + 11.736, + 4.693, + 0.152, 0.0, 0.0, 0.0, @@ -89897,17 +89822,17 @@ 0.0, 0.0, -0.0, - 6.514, - 20.178, - 17.456, - 20.157, - 16.835, - 45.874, - 43.636, - 30.474, - 21.603, - 0.555, 0.0, + -0.0, + -0.0, + 4.86, + 6.475, + 7.467, + 16.785, + 17.086, + 19.19, + 10.389, + 1.019, 0.0, 0.0, 0.0, @@ -89919,21 +89844,19 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 8.15, - 21.968, - 30.704, - 33.173, - 37.826, - 61.245, - 52.627, - 39.655, - 17.153, - 1.859, 0.0, 0.0, 0.0, + -0.0, + 5.896, + 10.189, + 1.55, + 12.731, + 28.633, + 20.809, + 19.071, + 4.988, + 1.028, 0.0, 0.0, 0.0, @@ -89945,18 +89868,19 @@ 0.0, 0.0, 0.0, - 6.404, - 19.353, - 27.745, - 31.021, - 29.318, - 53.628, - 48.721, - 28.645, - 16.01, - 2.526, 0.0, + -0.0, + -0.0, + -0.0, 0.0, + 10.422, + 12.567, + 6.084, + 11.099, + 25.24, + 18.988, + 10.29, + 1.108, 0.0, 0.0, 0.0, @@ -89969,16 +89893,18 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 19.086, - 27.865, - 32.064, - 32.343, - 59.561, - 50.779, - 38.069, - 20.746, - 2.804, + 0.736, + 7.707, + 6.318, + 7.696, + 4.688, + 23.258, + 22.263, + 15.548, + 11.022, + 0.283, 0.0, 0.0, 0.0, @@ -89993,16 +89919,16 @@ 0.0, -0.0, -0.0, - -0.0, - 21.31, - 18.289, - 16.709, - 21.477, - 33.559, - 38.581, - 24.576, - 15.22, - 1.994, + 1.571, + 8.621, + 13.078, + 14.337, + 15.251, + 31.247, + 26.851, + 20.232, + 8.751, + 0.949, 0.0, 0.0, 0.0, @@ -90017,16 +89943,16 @@ 0.0, -0.0, 0.0, - 7.441, - 20.891, - 29.909, - 33.173, - 38.08, - 60.63, - 51.74, - 38.814, - 21.136, - 3.098, + 0.68, + 7.286, + 11.568, + 13.239, + 12.371, + 25.901, + 24.858, + 14.615, + 8.168, + 1.289, 0.0, 0.0, 0.0, @@ -90040,17 +89966,17 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 6.805, - 20.055, - 28.728, - 33.051, - 38.006, - 60.643, - 51.765, - 39.012, - 21.465, - 3.308, + 7.15, + 11.629, + 13.771, + 13.617, + 26.637, + 25.908, + 19.423, + 10.585, + 1.431, 0.0, 0.0, 0.0, @@ -90065,17 +89991,16 @@ 0.0, -0.0, -0.0, - 7.205, - 19.43, - 27.045, - 30.871, - 36.745, - 58.833, - 50.831, - 38.413, - 21.206, - 3.322, 0.0, + 8.285, + 6.743, + 5.937, + 8.37, + 13.075, + 19.684, + 12.539, + 7.765, + 1.017, 0.0, 0.0, 0.0, @@ -90089,16 +90014,18 @@ 0.0, 0.0, -0.0, - 7.794, - 20.737, - 29.682, - 33.173, - 39.164, - 60.418, - 51.231, - 38.343, - 21.062, - 3.272, + -0.0, + 1.208, + 8.071, + 12.672, + 14.337, + 15.38, + 30.934, + 26.398, + 19.803, + 10.784, + 1.58, + 0.0, 0.0, 0.0, 0.0, @@ -90112,17 +90039,17 @@ 0.0, 0.0, -0.0, + 0.884, + 7.644, + 12.069, + 14.275, + 15.343, + 30.94, + 26.411, + 19.904, + 10.951, + 1.688, 0.0, - 5.627, - 16.983, - 24.947, - 27.981, - 34.126, - 57.839, - 50.207, - 38.277, - 21.409, - 3.456, 0.0, 0.0, 0.0, @@ -90135,18 +90062,41 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 8.692, - 21.777, - 30.723, - 33.173, - 40.954, - 62.14, - 53.402, - 35.827, - 15.608, - 2.715, + 1.088, + 7.325, + 11.211, + 13.163, + 14.7, + 30.017, + 25.934, + 19.599, + 10.819, + 1.695, + 0.0, + 0.0, + 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.389, + 7.993, + 12.556, + 14.337, + 15.933, + 30.825, + 26.138, + 19.563, + 10.746, + 1.669, 0.0, 0.0, 0.0, @@ -90161,16 +90111,16 @@ 0.0, -0.0, -0.0, - 9.715, - 22.906, - 31.439, - 33.173, - 41.649, - 61.008, - 52.436, - 39.544, - 22.236, - 3.752, + 0.283, + 6.077, + 10.14, + 11.688, + 13.363, + 29.51, + 25.616, + 19.529, + 10.923, + 1.763, 0.0, 0.0, 0.0, @@ -90184,18 +90134,17 @@ 0.0, 0.0, -0.0, - -0.0, - 9.533, - 22.366, - 30.859, - 33.173, - 41.866, - 60.033, - 50.951, - 38.481, - 21.637, - 3.679, 0.0, + 1.847, + 8.523, + 13.087, + 14.337, + 16.847, + 31.704, + 27.246, + 18.279, + 7.963, + 1.385, 0.0, 0.0, 0.0, @@ -90208,17 +90157,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 15.667, - 20.969, - 18.302, - 17.837, - 34.616, - 34.626, - 37.594, - 20.899, - 3.539, + -0.0, + 2.369, + 9.099, + 13.453, + 14.337, + 17.202, + 31.126, + 26.753, + 20.175, + 11.345, + 1.914, 0.0, 0.0, 0.0, @@ -90233,16 +90183,17 @@ 0.0, -0.0, -0.0, - 6.372, - 18.705, - 26.575, - 30.762, - 37.875, - 58.622, - 50.135, - 37.276, - 20.198, - 3.315, + 2.276, + 8.823, + 13.156, + 14.337, + 17.312, + 30.629, + 25.995, + 19.633, + 11.039, + 1.877, + 0.0, 0.0, 0.0, 0.0, @@ -90257,16 +90208,15 @@ 0.0, 0.0, -0.0, - 5.388, - 17.057, - 23.487, - 26.922, - 34.482, - 57.347, - 49.907, - 37.448, - 20.495, - 3.49, + 5.406, + 8.111, + 6.75, + 6.513, + 13.614, + 17.667, + 19.18, + 10.663, + 1.806, 0.0, 0.0, 0.0, @@ -90279,18 +90229,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 5.295, - 23.181, - 19.344, - 21.984, - 44.713, - 41.492, - 36.004, - 14.225, - 2.587, + 0.663, + 6.956, + 10.971, + 13.107, + 15.276, + 29.909, + 25.579, + 19.018, + 10.305, + 1.691, 0.0, 0.0, 0.0, @@ -90304,18 +90254,41 @@ 0.0, 0.0, -0.0, + 0.0, + 0.161, + 6.115, + 9.395, + 11.148, + 13.545, + 29.259, + 25.463, + 19.106, + 10.457, + 1.781, + 0.0, + 0.0, + 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.172, - 26.3, - 29.678, - 31.157, - 55.985, - 33.926, - 31.573, - 14.97, - 3.321, 0.0, + 0.114, + 9.239, + 7.282, + 6.628, + 20.766, + 21.17, + 18.369, + 7.258, + 1.32, 0.0, 0.0, 0.0, @@ -90329,17 +90302,17 @@ 0.0, 0.0, 0.0, - 5.277, - 17.315, - 26.854, - 31.253, - 38.213, - 51.004, - 49.653, - 37.248, - 20.047, - 3.459, + -0.0, 0.0, + 3.112, + 10.831, + 12.554, + 12.231, + 25.594, + 17.309, + 16.109, + 7.638, + 1.695, 0.0, 0.0, 0.0, @@ -90351,18 +90324,20 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 8.437, - 21.38, - 30.346, - 33.173, 0.0, - 25.974, - 36.172, - 22.642, - 8.083, - 3.626, + 0.0, + 0.0, + 0.104, + 6.247, + 11.113, + 13.358, + 15.449, + 26.023, + 25.333, + 19.004, + 10.228, + 1.765, + 0.0, 0.0, 0.0, 0.0, @@ -90376,17 +90351,21 @@ 0.0, 0.0, -0.0, + 1.717, + 8.32, + 12.895, + 14.337, -0.0, - 8.23, - 20.682, - 28.187, - 31.658, - 41.695, - 59.618, - 51.063, - 37.949, - 8.627, - 3.705, + 9.204, + 18.455, + 11.552, + 4.124, + 1.85, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -90395,22 +90374,41 @@ 0.0, 0.0, 0.0, + -0.0, + 1.611, + 7.964, + 11.793, + 13.564, + 17.225, + 30.417, + 26.053, + 19.362, + 4.401, + 1.89, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.176, - 17.629, - 24.761, - 20.072, - 28.586, - 47.335, - 43.712, - 35.215, - 19.131, - 3.546, + 0.0, + 0.0, + -0.0, + -0.0, + 0.563, + 6.407, + 10.046, + 7.653, + 10.537, + 24.151, + 22.302, + 17.967, + 9.76, + 1.809, 0.0, 0.0, 0.0, @@ -90426,16 +90424,15 @@ -0.0, -0.0, -0.0, - 17.045, - 26.181, - 27.726, - 13.121, - 41.904, - 48.772, - 33.634, - 12.975, - 2.501, - 0.0, + 6.108, + 10.77, + 11.558, + 4.107, + 17.332, + 24.883, + 17.16, + 6.62, + 1.276, 0.0, 0.0, 0.0, @@ -90449,17 +90446,17 @@ 0.0, 0.0, -0.0, - 10.855, - 23.587, - 31.974, - 33.173, - 45.812, - 61.858, - 52.815, - 39.544, - 21.738, - 3.897, - 0.0, + -0.0, + 2.951, + 9.447, + 13.726, + 14.337, + 19.325, + 31.56, + 26.946, + 20.175, + 11.091, + 1.988, 0.0, 0.0, 0.0, @@ -90472,17 +90469,18 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 8.371, - 20.646, - 29.269, - 33.173, - 44.005, - 61.034, - 52.339, - 38.952, - 0.278, - 0.119, + 1.683, + 7.946, + 12.345, + 14.337, + 18.404, + 31.14, + 26.704, + 19.873, + 0.142, + 0.06, 0.0, 0.0, 0.0, @@ -90497,17 +90495,16 @@ 0.0, 0.0, -0.0, - 11.499, - 24.197, - 32.821, - 33.173, - 46.503, - 62.959, - 53.385, - 40.006, - 21.789, - 3.983, - 0.0, + 3.279, + 9.758, + 14.158, + 14.337, + 19.678, + 32.122, + 27.237, + 20.411, + 11.117, + 2.032, 0.0, 0.0, 0.0, @@ -90520,17 +90517,18 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 9.831, - 22.049, - 29.677, - 32.783, - 44.279, - 48.255, - 50.328, - 37.806, - 20.878, - 3.884, + 2.428, + 8.662, + 12.554, + 14.138, + 18.544, + 24.62, + 25.678, + 19.289, + 10.652, + 1.982, 0.0, 0.0, 0.0, @@ -90545,16 +90543,17 @@ 0.0, -0.0, 0.0, - 0.102, - 7.78, - 22.816, - 27.018, - 38.87, - 56.363, - 48.83, - 36.468, - 20.063, - 3.84, + 0.0, + 1.382, + 9.053, + 11.197, + 13.248, + 28.757, + 24.914, + 18.606, + 10.236, + 1.959, + 0.0, 0.0, 0.0, 0.0, @@ -90569,16 +90568,15 @@ 0.0, 0.0, -0.0, - -0.0, - 10.947, - 27.247, - 31.56, - 37.413, - 59.362, - 50.749, - 38.158, - 20.776, - 4.018, + 2.998, + 11.314, + 13.514, + 13.599, + 29.141, + 25.892, + 19.468, + 10.6, + 2.05, 0.0, 0.0, 0.0, @@ -90592,17 +90590,17 @@ 0.0, 0.0, -0.0, - -0.0, - 10.466, - 23.369, - 31.089, - 33.173, - 46.451, - 62.011, - 52.65, - 23.025, - 20.834, - 4.147, + 0.0, + 2.752, + 9.335, + 13.274, + 14.337, + 19.651, + 31.638, + 26.862, + 11.747, + 10.629, + 2.116, 0.0, 0.0, 0.0, @@ -90615,19 +90613,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 10.656, - 23.314, - 31.981, - 33.173, - 47.063, - 60.984, - 51.865, - 38.519, - 20.835, - 4.168, 0.0, + 2.849, + 9.307, + 13.729, + 14.337, + 19.964, + 31.114, + 26.462, + 19.653, + 10.63, + 2.126, 0.0, 0.0, 0.0, @@ -90641,16 +90638,18 @@ 0.0, 0.0, -0.0, - 10.076, - 22.068, - 29.183, - 32.0, - 44.816, - 57.821, - 49.574, - 37.634, - 20.686, - 4.133, + 0.0, + 2.553, + 8.671, + 12.302, + 13.739, + 18.818, + 29.5, + 25.293, + 19.201, + 10.554, + 2.109, + 0.0, 0.0, 0.0, 0.0, @@ -90663,19 +90662,17 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 7.613, - 19.138, - 26.984, - 30.903, - 41.568, - 58.0, - 49.118, - 36.326, - 20.067, - 3.96, 0.0, + 1.297, + 7.177, + 11.179, + 13.179, + 17.161, + 29.592, + 25.06, + 18.534, + 10.238, + 2.02, 0.0, 0.0, 0.0, @@ -90687,19 +90684,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 7.826, - 19.643, - 27.186, - 31.225, - 48.008, - 58.829, - 49.999, - 36.826, - 18.154, - 3.552, + -0.0, 0.0, + 1.405, + 7.434, + 11.283, + 13.344, + 18.501, + 30.015, + 25.51, + 18.789, + 9.262, + 1.812, 0.0, 0.0, 0.0, @@ -90713,16 +90710,17 @@ 0.0, 0.0, -0.0, - 9.422, - 21.001, - 29.254, - 33.173, - 47.25, - 60.041, - 51.028, - 38.183, - 20.868, - 3.998, + 0.0, + 2.22, + 8.127, + 12.338, + 14.337, + 20.06, + 30.633, + 26.035, + 19.481, + 10.647, + 2.04, 0.0, 0.0, 0.0, @@ -90738,15 +90736,15 @@ 0.0, -0.0, 0.0, - 21.868, + 8.569, + -0.0, 0.0, - 0.106, - 33.173, - 37.083, - 43.139, - 25.356, - 4.066, - 0.123, + 14.337, + 12.035, + 19.726, + 12.937, + 2.075, + 0.063, 0.0, 0.0, 0.0, @@ -90762,15 +90760,15 @@ 0.0, 0.0, 0.0, - 21.743, - 29.562, - 33.168, - 27.553, - 59.174, - 27.824, - 13.292, - 11.345, - 2.382, + 8.506, + 12.495, + 14.335, + 8.635, + 28.978, + 14.196, + 6.782, + 5.788, + 1.215, 0.0, 0.0, 0.0, @@ -90784,17 +90782,16 @@ 0.0, 0.0, 0.0, + 0.0, + 2.257, -0.0, - 9.496, - -0.0, - -0.0, - -0.0, + 0.0, -0.0, -0.0, 0.0, - 15.534, - 5.293, 0.0, + 7.926, + 2.7, 0.0, 0.0, 0.0, @@ -90809,17 +90806,17 @@ 0.0, 0.0, 0.0, - 11.736, - 23.947, - 31.279, - 33.173, - 47.311, - 60.308, - 51.065, - 38.291, - 20.778, - 3.9, 0.0, + 3.4, + 9.63, + 13.371, + 14.337, + 20.09, + 30.77, + 26.054, + 19.536, + 10.601, + 1.99, 0.0, 0.0, 0.0, @@ -90831,21 +90828,19 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 8.716, - 19.213, - 25.028, - 27.235, - 42.251, - 56.191, - 48.43, - 36.611, - 19.772, - 3.928, 0.0, 0.0, 0.0, + 1.859, + 7.215, + 10.182, + 11.308, + 17.509, + 28.669, + 24.709, + 18.679, + 10.088, + 2.004, 0.0, 0.0, 0.0, @@ -90855,20 +90850,22 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 7.999, - 18.673, - 25.438, - 28.046, - 44.706, - 54.671, - 47.048, - 35.476, - 19.405, - 3.879, 0.0, 0.0, + -0.0, + 0.0, + 1.494, + 6.939, + 10.391, + 11.721, + 16.816, + 27.894, + 24.004, + 18.1, + 9.901, + 1.979, + 0.0, 0.0, 0.0, 0.0, @@ -90881,17 +90878,17 @@ 0.0, -0.0, -0.0, - 7.209, - 17.132, - 23.082, - 26.084, - 40.696, - 55.38, - 47.491, - 35.618, - 19.443, - 3.602, - 0.0, + -0.0, + 1.09, + 6.153, + 9.189, + 10.72, + 16.715, + 28.255, + 24.23, + 18.172, + 9.92, + 1.838, 0.0, 0.0, 0.0, @@ -90902,21 +90899,20 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, - 7.573, - 9.535, - 15.537, - 28.133, - 40.262, - 55.195, - 47.058, - 35.243, - 15.317, - 3.642, 0.0, + -0.0, 0.0, + 1.276, + 2.277, + 5.339, + 11.766, + 16.494, + 28.161, + 24.009, + 17.981, + 7.815, + 1.858, 0.0, 0.0, 0.0, @@ -90929,17 +90925,18 @@ 0.0, 0.0, -0.0, - 8.018, - 18.207, - 24.196, - 26.349, - 38.937, - 51.26, - 43.815, - 33.047, - 17.817, - 3.746, - 0.0, + -0.0, + -0.0, + 1.503, + 6.702, + 9.757, + 10.856, + 15.818, + 26.153, + 22.355, + 16.861, + 9.09, + 1.911, 0.0, 0.0, 0.0, @@ -90952,17 +90949,18 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 6.204, - 16.997, - 24.814, - 27.081, - 37.906, - 51.558, - 43.157, - 33.025, - 18.288, - 3.421, + 0.578, + 6.084, + 10.073, + 11.229, + 15.292, + 26.305, + 22.019, + 16.849, + 9.331, + 1.745, 0.0, 0.0, 0.0, @@ -90976,17 +90974,17 @@ 0.0, 0.0, -0.0, - 0.0, - 6.752, - 16.718, - 22.743, - 24.946, - 38.312, - 52.181, - 44.858, - 33.81, - 18.572, - 3.518, + -0.0, + 0.857, + 5.942, + 9.016, + 10.14, + 15.499, + 26.623, + 22.886, + 17.25, + 9.476, + 1.795, 0.0, 0.0, 0.0, @@ -91001,16 +90999,16 @@ -0.0, -0.0, -0.0, - 5.932, - 16.378, - 23.943, - 27.22, - 40.64, - 54.601, - 46.52, - 34.421, - 18.868, - 3.708, + 0.439, + 5.769, + 9.628, + 11.3, + 16.688, + 27.858, + 23.735, + 17.562, + 9.626, + 1.892, 0.0, 0.0, 0.0, @@ -91025,16 +91023,16 @@ 0.0, 0.0, -0.0, - 8.056, - 18.498, - 25.631, - 29.015, - 51.342, - 56.648, - 48.125, - 36.077, - 19.762, - 3.833, + 1.523, + 6.85, + 10.489, + 12.216, + 18.256, + 28.902, + 24.554, + 18.406, + 10.083, + 1.956, 0.0, 0.0, 0.0, @@ -91047,18 +91045,18 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, - 6.175, - 18.601, - 16.6, + -0.0, + 0.563, + 6.903, + 5.882, 0.0, - 9.577, - 35.413, - 12.144, - 11.06, - 6.955, - 1.803, + -0.0, + 16.319, + 6.196, + 5.643, + 3.548, + 0.92, 0.0, 0.0, 0.0, @@ -91076,13 +91074,14 @@ -0.0, -0.0, 0.0, - 3.645, - 14.311, - 15.415, - 23.032, - 25.642, - 14.267, - 3.607, + -0.0, + 4.714, + 1.843, + 7.823, + 13.083, + 7.279, + 1.84, + 0.0, 0.0, 0.0, 0.0, @@ -91096,17 +91095,41 @@ 0.0, -0.0, -0.0, + 1.712, + 7.425, + 11.159, + 12.929, + 19.099, + 13.947, + 17.869, + 7.214, + 4.077, + 0.692, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, -0.0, - 8.427, - 19.625, - 26.944, - 30.413, - 45.367, - 27.336, - 35.024, - 14.139, - 7.992, - 1.356, + 2.115, + 7.584, + 11.176, + 12.572, + 18.892, + 28.079, + 23.673, + 17.761, + 9.531, + 2.011, + 0.0, 0.0, 0.0, 0.0, @@ -91120,17 +91143,40 @@ 0.0, -0.0, -0.0, + 1.6, + 7.231, + 10.978, + 12.036, + 17.673, + 27.01, + 22.673, + 17.087, + 9.415, + 1.927, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.0, + 0.0, -0.0, - 9.216, - 19.936, - 26.978, - 29.712, - 44.961, - 55.036, - 46.4, - 34.812, - 18.68, - 3.942, + 1.262, + 6.572, + 9.763, + 10.546, + 16.299, + 26.32, + 22.479, + 16.922, + 9.144, + 2.042, 0.0, 0.0, 0.0, @@ -91145,16 +91191,17 @@ -0.0, 0.0, 0.0, - 8.208, - 19.246, - 26.589, - 28.662, - 42.574, - 52.939, - 44.44, - 33.491, - 18.453, - 3.776, + 0.306, + 5.534, + 9.174, + 10.926, + 17.082, + 27.582, + 23.283, + 17.161, + 9.663, + 1.876, + 0.0, 0.0, 0.0, 0.0, @@ -91168,17 +91215,16 @@ 0.0, 0.0, -0.0, - -0.0, - 7.545, - 17.952, - 24.207, - 25.743, - 39.879, - 51.587, - 44.059, - 33.166, - 17.922, - 4.002, + 1.56, + 6.818, + 10.102, + 11.025, + 16.549, + 25.983, + 22.785, + 17.267, + 9.329, + 1.844, 0.0, 0.0, 0.0, @@ -91192,17 +91238,19 @@ 0.0, -0.0, -0.0, + -0.0, + 0.994, + 5.965, + 9.106, + 10.029, + 15.554, + 26.049, + 22.625, + 17.03, + 9.117, + 1.928, + 0.0, 0.0, - 5.671, - 15.92, - 23.053, - 26.487, - 52.853, - 54.06, - 45.635, - 33.636, - 18.94, - 3.677, 0.0, 0.0, 0.0, @@ -91215,18 +91263,17 @@ 0.0, 0.0, -0.0, - -0.0, + 0.59, + 5.554, + 8.814, + 9.828, + 15.218, + 25.519, + 21.893, + 16.357, + 8.834, + 1.953, 0.0, - 8.13, - 18.435, - 24.872, - 26.682, - 40.369, - 50.928, - 44.659, - 33.844, - 18.285, - 3.614, 0.0, 0.0, 0.0, @@ -91237,20 +91284,23 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, 0.0, + -0.0, + 4.321, + 7.98, + 9.655, + 15.0, + 26.38, + 22.555, + 16.772, + 9.033, + 1.993, + 0.011, 0.0, 0.0, 0.0, - 7.02, - 16.763, - 22.921, - 24.728, - 38.419, - 51.056, - 44.345, - 33.378, - 17.869, - 3.779, 0.0, 0.0, 0.0, @@ -91258,25 +91308,44 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + 0.0, + 0.085, + 2.959, + 7.029, + 7.016, + 17.981, + 27.796, + 19.063, + 15.553, + 8.412, + 2.087, + 0.035, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 6.229, - 15.958, - 22.347, - 24.335, - 37.76, - 50.017, - 42.911, - 32.059, - 17.316, - 3.828, + -0.0, 0.0, + -0.0, + 6.416, + 9.778, + 11.633, 0.0, + 8.725, + 24.261, + 18.123, + 7.372, + 2.468, + 0.044, 0.0, 0.0, 0.0, @@ -91287,19 +91356,21 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + -0.0, 0.0, + 7.462, + 11.125, + 12.857, + 8.856, + 12.283, + 2.808, + 15.237, + 7.426, + 2.004, + 0.084, 0.0, - 4.264, - 13.541, - 20.713, - 23.996, - 38.141, - 51.704, - 44.207, - 32.873, - 17.706, - 3.907, - 0.021, 0.0, 0.0, 0.0, @@ -91312,19 +91383,17 @@ 0.0, -0.0, 0.0, + 2.009, 0.0, - 5.239, - 10.871, - 18.848, - 18.824, - 43.175, - 54.48, - 37.364, - 30.485, - 16.487, - 4.09, - 0.069, - 0.0, + 10.757, + 11.995, + 18.648, + 19.293, + 18.932, + 17.106, + 9.205, + 2.142, + 0.076, 0.0, 0.0, 0.0, @@ -91335,19 +91404,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, -0.0, - 3.666, - 17.647, - 24.236, - 27.873, - 1.837, - 24.601, - 47.552, - 35.521, - 14.449, - 4.836, - 0.087, + 0.215, + 5.359, + 8.863, + 10.629, + 17.023, + 27.087, + 22.752, + 16.838, + 9.067, + 2.409, + 0.058, 0.0, 0.0, 0.0, @@ -91359,19 +91429,21 @@ 0.0, 0.0, -0.0, + -0.0, 0.0, + 0.639, + 6.097, + 9.861, + 11.636, + 18.657, + 27.726, + 23.596, + 17.455, + 9.347, + 2.156, + 0.118, 0.0, 0.0, - 19.697, - 26.878, - 30.272, - 40.204, - 25.877, - 5.503, - 29.864, - 14.556, - 3.928, - 0.165, 0.0, 0.0, 0.0, @@ -91380,22 +91452,44 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + -0.0, + 0.852, + 6.239, + 9.799, + 11.452, + 18.499, + 27.759, + 23.614, + 17.651, + 9.49, + 1.999, + 0.139, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, -0.0, -0.0, - 9.01, - 4.059, - 26.156, - 28.582, - 45.497, - 37.814, - 37.106, - 33.528, - 18.043, - 4.198, - 0.149, + -0.0, + 1.338, + 6.582, + 10.541, + 12.167, + 19.166, + 28.176, + 23.88, + 17.827, + 9.573, + 1.965, + 0.114, 0.0, 0.0, 0.0, @@ -91407,19 +91501,20 @@ 0.0, 0.0, -0.0, + -0.0, 0.0, + 2.862, + 8.156, + 11.35, + 12.721, + 20.852, + 28.295, + 24.143, + 18.122, + 9.779, + 2.112, + 0.151, 0.0, - 5.494, - 15.576, - 22.443, - 25.904, - 41.3, - 53.09, - 44.593, - 33.002, - 17.771, - 4.721, - 0.113, 0.0, 0.0, 0.0, @@ -91432,19 +91527,17 @@ 0.0, -0.0, 0.0, - 0.0, - 6.325, - 17.021, - 24.4, - 27.879, - 44.501, - 54.343, - 46.247, - 34.211, - 18.32, - 4.226, - 0.232, - 0.0, + 1.885, + 7.119, + 10.567, + 12.127, + 20.888, + 28.213, + 24.048, + 17.963, + 9.718, + 2.27, + 0.183, 0.0, 0.0, 0.0, @@ -91457,17 +91550,18 @@ 0.0, 0.0, -0.0, - 6.741, - 17.301, - 24.278, - 27.517, - 44.192, - 54.409, - 46.284, - 34.596, - 18.601, - 3.917, - 0.273, + -0.0, + 1.757, + 7.311, + 10.928, + 12.499, + 16.66, + 5.79, + 17.91, + 17.87, + 9.635, + 2.356, + 0.187, 0.0, 0.0, 0.0, @@ -91479,20 +91573,19 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, - 7.695, - 17.972, - 25.733, - 28.92, - 45.5, - 55.225, - 46.806, - 34.941, - 18.764, - 3.852, - 0.223, 0.0, + 1.156, + 6.487, + 9.874, + 11.519, + 18.854, + 27.927, + 23.666, + 14.363, + 8.45, + 2.39, + 0.239, 0.0, 0.0, 0.0, @@ -91503,20 +91596,20 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 10.681, - 21.058, - 27.318, - 30.005, - 48.803, - 55.458, - 47.321, - 35.519, - 19.167, - 4.139, - 0.296, 0.0, + -0.0, + 1.4, + 7.018, + 10.803, + 12.508, + 19.777, + 28.529, + 24.333, + 18.169, + 9.792, + 2.125, + 0.188, 0.0, 0.0, 0.0, @@ -91529,17 +91622,18 @@ 0.0, -0.0, -0.0, - 8.767, - 19.025, - 25.782, - 32.201, - 59.965, - 55.297, - 47.134, - 35.207, - 19.048, - 4.449, - 0.359, + -0.0, + 1.365, + 6.264, + 9.062, + 10.146, + 17.097, + 26.542, + 22.659, + 17.088, + 9.315, + 1.907, + 0.192, 0.0, 0.0, 0.0, @@ -91551,19 +91645,19 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 8.516, - 19.401, - 26.491, - 29.57, - 40.586, - 11.349, - 35.103, - 35.026, - 18.884, - 4.618, - 0.366, + 0.0, + 0.0, + 1.381, + 6.43, + 9.57, + 10.684, + 17.42, + 26.284, + 22.06, + 16.722, + 9.259, + 1.955, + 0.193, 0.0, 0.0, 0.0, @@ -91577,17 +91671,17 @@ -0.0, 0.0, -0.0, - 7.338, - 17.787, - 24.425, - 27.649, - 44.889, - 54.736, - 46.385, - 28.152, - 16.562, - 4.685, - 0.469, + 0.69, + 5.707, + 8.597, + 9.502, + 15.49, + 24.867, + 21.635, + 16.662, + 9.07, + 2.019, + 0.205, 0.0, 0.0, 0.0, @@ -91600,18 +91694,19 @@ 0.0, 0.0, -0.0, + -0.0, + 0.0, + 4.924, + 8.418, + 10.084, + 17.12, + 26.685, + 22.692, + 16.986, + 9.196, + 1.921, + 0.2, 0.0, - 7.816, - 18.828, - 26.246, - 29.588, - 46.696, - 55.916, - 47.692, - 35.612, - 19.192, - 4.165, - 0.369, 0.0, 0.0, 0.0, @@ -91624,18 +91719,18 @@ 0.0, -0.0, -0.0, + 0.115, + 4.789, + 7.803, + 8.953, + 15.166, + 25.303, + 21.726, + 16.508, + 8.967, + 2.049, + 0.218, 0.0, - 7.747, - 17.349, - 22.833, - 24.959, - 41.443, - 52.023, - 44.412, - 33.493, - 18.257, - 3.738, - 0.376, 0.0, 0.0, 0.0, @@ -91645,21 +91740,21 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, 0.0, 0.0, + 4.595, + 8.158, + 9.717, + 15.478, + 26.407, + 22.526, + 16.95, + 9.263, + 1.907, + 0.237, 0.0, - 7.78, - 17.674, - 23.83, - 26.013, - 42.076, - 51.517, - 43.238, - 32.776, - 18.147, - 3.832, - 0.379, 0.0, 0.0, 0.0, @@ -91672,18 +91767,17 @@ 0.0, 0.0, 0.0, - -0.0, - 6.424, - 16.258, - 21.922, - 23.697, - 38.295, - 48.739, - 42.404, - 32.657, - 17.778, - 3.957, - 0.402, + 0.709, + 6.013, + 3.473, + 11.032, + 14.331, + 27.197, + 23.231, + 17.342, + 9.431, + 2.0, + 0.274, 0.0, 0.0, 0.0, @@ -91697,17 +91791,19 @@ -0.0, 0.0, -0.0, - 4.751, - 14.723, - 21.572, - 24.981, - 56.387, - 52.303, - 44.477, - 33.292, - 18.024, - 3.765, - 0.393, + 1.3, + 6.607, + 10.133, + 11.693, + 18.79, + 28.011, + 23.833, + 17.868, + 9.711, + 2.023, + 0.298, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -91716,23 +91812,44 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + -0.0, + 1.208, + 6.635, + 10.275, + 11.73, + 19.166, + 27.85, + 23.648, + 17.751, + 9.626, + 2.245, + 0.346, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, -0.0, 0.0, - 5.298, - 14.458, - 20.366, - 22.621, - 37.661, - 49.593, - 42.584, - 32.356, - 17.576, - 4.016, - 0.427, 0.0, + 0.358, + 5.192, + 8.599, + 9.882, + 16.676, + 26.356, + 22.535, + 17.071, + 9.405, + 2.086, + 0.346, 0.0, 0.0, 0.0, @@ -91745,18 +91862,18 @@ 0.0, -0.0, -0.0, - 4.514, - 14.078, - 21.061, - 24.116, - 38.828, - 51.757, - 44.152, - 33.223, - 18.155, - 3.738, - 0.464, 0.0, + 0.099, + 4.896, + 8.141, + 9.32, + 20.359, + 25.56, + 21.874, + 16.529, + 9.048, + 2.204, + 0.346, 0.0, 0.0, 0.0, @@ -91767,19 +91884,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, 0.0, - 6.462, - 16.857, - 11.879, - 26.694, - 36.024, - 53.307, - 45.532, - 33.991, - 18.484, - 3.921, - 0.537, + -0.0, + 4.689, + 8.023, + 9.518, + 20.34, + 20.466, + 22.232, + 16.648, + 8.411, + 2.398, + 0.398, 0.0, 0.0, 0.0, @@ -91792,18 +91910,18 @@ 0.0, -0.0, -0.0, + 0.0, -0.0, - 7.621, - 18.021, - 24.932, - 27.99, - 44.763, - 54.901, - 46.712, - 35.022, - 19.033, - 3.965, - 0.585, + 4.765, + 8.046, + 9.642, + 15.647, + 26.128, + 22.363, + 16.764, + 9.255, + 2.266, + 0.405, 0.0, 0.0, 0.0, @@ -91816,20 +91934,19 @@ 0.0, 0.0, -0.0, - -0.0, - 7.439, - 18.077, - 25.212, - 28.062, - 45.499, - 54.587, - 46.349, - 34.792, - 18.868, - 4.401, - 0.678, 0.0, 0.0, + 1.577, + 4.817, + 1.039, + 0.0, + 0.0, + 8.973, + 7.014, + 9.262, + 2.343, + 0.453, + 0.0, 0.0, 0.0, 0.0, @@ -91840,18 +91957,20 @@ 0.0, 0.0, -0.0, + -0.0, + 0.0, + -0.0, + 4.548, + 7.571, + 9.48, + 12.724, + 18.738, + 19.152, + 15.284, + 7.76, + 2.548, + 0.469, 0.0, - 5.773, - 15.248, - 21.927, - 24.44, - 40.617, - 51.657, - 44.169, - 33.46, - 18.434, - 4.089, - 0.678, 0.0, 0.0, 0.0, @@ -91864,18 +91983,17 @@ 0.0, 0.0, -0.0, - -0.0, - 5.265, - 14.668, - 21.028, - 28.813, - 54.044, - 50.098, - 42.874, - 32.398, - 17.733, - 4.321, - 0.677, + 0.0, + 0.0, + 2.607, + 5.659, + 5.124, + 14.436, + 10.865, + 9.379, + 6.211, + 2.231, + 0.473, 0.0, 0.0, 0.0, @@ -91886,20 +92004,21 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 4.454, - 14.263, - 20.798, - 28.631, - 55.028, - 40.113, - 43.575, - 32.629, - 16.485, - 4.7, - 0.78, + -0.0, + 0.0, + 4.281, + 7.238, + 7.962, + 12.25, + 23.695, + 20.496, + 15.671, + 8.605, + 2.228, + 0.504, + 0.0, 0.0, 0.0, 0.0, @@ -91913,17 +92032,16 @@ 0.0, -0.0, -0.0, - 4.842, - 14.411, - 20.843, - 23.97, - 38.83, - 51.211, - 43.832, - 32.857, - 18.14, - 4.442, - 0.793, + 4.102, + 7.442, + 9.054, + 19.17, + 25.915, + 22.126, + 16.64, + 9.259, + 2.234, + 0.504, 0.0, 0.0, 0.0, @@ -91936,18 +92054,18 @@ 0.0, -0.0, -0.0, - 0.0, -0.0, - 8.163, - 14.512, - 7.109, - 0.0, - 0.201, - 30.39, - 13.747, - 18.154, - 4.591, - 0.888, + -0.0, + -0.0, + 3.203, + 0.141, + 9.402, + 7.664, + 9.562, + 17.129, + 9.529, + 2.753, + 0.547, 0.0, 0.0, 0.0, @@ -91961,17 +92079,17 @@ 0.0, -0.0, -0.0, - 4.855, - 13.985, - 19.912, - 23.653, - 33.088, - 36.726, - 37.538, - 29.956, - 15.21, - 4.994, - 0.92, + 0.477, + 5.787, + 9.332, + 11.023, + 17.347, + 27.506, + 23.4, + 17.6, + 9.705, + 2.397, + 0.59, 0.0, 0.0, 0.0, @@ -91984,19 +92102,42 @@ 0.0, -0.0, 0.0, + 0.0, + 1.652, + 7.319, + 10.97, + 12.624, + 19.787, + 28.619, + 24.383, + 18.384, + 10.282, + 2.356, + 0.572, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, -0.0, -0.0, - 3.849, - 10.182, - 16.163, - 15.115, - 37.45, - 21.295, - 18.382, - 12.173, - 4.373, - 0.927, 0.0, + 2.024, + 7.553, + 11.057, + 12.177, + 17.875, + 28.139, + 23.953, + 18.072, + 10.014, + 2.275, + 0.535, 0.0, 0.0, 0.0, @@ -92006,21 +92147,21 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - 3.724, - 13.463, - 19.259, - 20.678, - 33.291, - 46.442, - 40.172, - 30.716, - 16.866, - 4.368, - 0.987, + -0.0, 0.0, + 0.788, + 5.663, + 8.663, + 9.878, + 15.883, + 25.763, + 21.775, + 16.608, + 9.501, + 2.216, + 0.593, 0.0, 0.0, 0.0, @@ -92031,19 +92172,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, 0.0, - 3.633, - 13.111, - 19.658, - 27.121, - 54.54, - 50.793, - 43.368, - 32.613, - 18.148, - 4.378, - 0.989, + 0.143, + 5.05, + 8.002, + 9.081, + 14.75, + 25.488, + 22.045, + 16.839, + 9.545, + 2.318, + 0.569, 0.0, 0.0, 0.0, @@ -92058,16 +92200,17 @@ 0.0, -0.0, 0.0, + 4.85, + 8.399, + 10.109, + 20.622, + 26.956, + 23.071, + 17.464, + 9.835, + 2.321, + 0.576, 0.0, - 11.349, - 5.348, - 23.5, - 20.094, - 26.676, - 33.572, - 18.676, - 5.396, - 1.072, 0.0, 0.0, 0.0, @@ -92078,20 +92221,20 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, - 6.006, - 16.414, - 23.363, - 26.678, - 41.932, - 53.913, - 45.863, - 34.497, - 19.023, - 4.699, - 1.157, + 0.0, + 0.0, + 0.755, + 5.251, + 8.701, + 11.262, + 17.318, + 27.622, + 23.608, + 17.8, + 10.015, + 2.371, + 0.641, + 0.0, 0.0, 0.0, 0.0, @@ -92104,18 +92247,17 @@ 0.0, -0.0, -0.0, - 0.0, - 8.311, - 19.418, - 26.574, - 29.815, - 46.715, - 56.092, - 47.79, - 36.033, - 20.152, - 4.618, - 1.122, + 0.541, + 5.763, + 9.27, + 10.888, + 17.207, + 27.294, + 23.243, + 17.524, + 9.871, + 2.319, + 0.614, 0.0, 0.0, 0.0, @@ -92126,20 +92268,21 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, -0.0, + 0.08, + 4.718, + 7.422, + 8.15, + 13.889, + 25.137, + 22.008, + 16.846, + 9.573, + 2.474, + 0.653, 0.0, - 9.04, - 19.876, - 26.743, - 28.939, - 42.97, - 55.153, - 46.948, - 35.421, - 19.627, - 4.458, - 1.049, 0.0, 0.0, 0.0, @@ -92149,21 +92292,22 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + -0.0, 0.0, + 4.274, + 7.688, + 9.284, + 14.134, + 26.037, + 22.292, + 16.661, + 9.467, + 2.556, + 0.609, 0.0, 0.0, - -0.0, - 6.617, - 16.171, - 22.051, - 24.433, - 39.065, - 50.496, - 42.678, - 32.551, - 18.622, - 4.342, - 1.163, 0.0, 0.0, 0.0, @@ -92174,20 +92318,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 5.167, + 8.644, + 10.273, + 15.736, + 26.925, + 23.02, + 17.423, + 9.898, + 2.415, + 0.636, 0.0, 0.0, - 5.352, - 14.969, - 20.756, - 22.871, - 36.844, - 49.957, - 43.208, - 33.005, - 18.709, - 4.543, - 1.115, 0.0, 0.0, 0.0, @@ -92196,22 +92340,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, 0.0, -0.0, - -0.0, - -0.0, - 4.47, - 14.579, - 21.535, - 30.001, - 56.554, - 52.834, - 45.218, - 34.229, - 19.277, - 4.549, - 1.128, + 4.763, + 7.724, + 8.788, + 14.225, + 25.516, + 22.106, + 16.912, + 9.709, + 2.514, + 0.681, 0.0, 0.0, 0.0, @@ -92223,19 +92365,21 @@ 0.0, 0.0, -0.0, + 0.0, + -0.0, -0.0, + 4.558, + 7.251, + 8.377, + 22.991, + 25.294, + 21.993, + 16.819, + 9.624, + 2.577, + 0.678, + 0.0, 0.0, - 6.552, - 15.364, - 22.126, - 27.146, - 41.877, - 54.14, - 46.272, - 34.889, - 19.63, - 4.646, - 1.257, 0.0, 0.0, 0.0, @@ -92248,18 +92392,17 @@ 0.0, 0.0, -0.0, - -0.0, - 6.133, - 16.368, - 23.242, - 26.412, - 41.658, - 53.497, - 45.556, - 34.347, - 19.347, - 4.545, - 1.203, + 3.987, + 7.245, + 8.885, + 13.948, + 25.741, + 21.88, + 16.717, + 9.547, + 2.544, + 0.657, + 0.0, 0.0, 0.0, 0.0, @@ -92272,18 +92415,17 @@ 0.0, 0.0, -0.0, - -0.0, - 5.229, - 14.319, - 19.62, - 21.045, - 35.156, - 49.269, - 43.136, - 33.018, - 18.763, - 4.849, - 1.28, + 0.0, + 4.005, + 7.119, + 8.411, + 13.04, + 25.503, + 21.916, + 16.695, + 9.529, + 2.5, + 0.63, 0.0, 0.0, 0.0, @@ -92296,18 +92438,18 @@ 0.0, -0.0, 0.0, + -0.0, 0.0, - 3.669, - 13.449, - 20.14, - 23.269, - 37.038, - 51.032, - 43.692, - 32.655, - 18.555, - 5.009, - 1.194, + 4.531, + 7.898, + 9.521, + 14.36, + 26.223, + 22.474, + 17.1, + 9.786, + 2.466, + 0.648, 0.0, 0.0, 0.0, @@ -92318,20 +92460,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, -0.0, -0.0, - 4.961, - 15.199, - 22.015, - 25.207, - 38.888, - 52.773, - 45.119, - 34.148, - 19.4, - 4.734, - 1.246, + 4.138, + 7.479, + 9.097, + 13.343, + 26.037, + 22.357, + 17.025, + 9.792, + 2.483, + 0.643, 0.0, 0.0, 0.0, @@ -92345,17 +92487,18 @@ -0.0, -0.0, -0.0, - 4.787, - 14.407, - 20.21, - 22.296, - 36.099, - 50.012, - 43.327, - 33.147, - 19.03, - 4.928, - 1.335, + 0.0, + 3.897, + 6.577, + 8.48, + 12.698, + 25.796, + 22.232, + 16.504, + 9.419, + 2.502, + 0.599, + 0.0, 0.0, 0.0, 0.0, @@ -92369,18 +92512,16 @@ -0.0, -0.0, -0.0, - 4.725, - 14.006, - 19.284, - 31.099, - 52.741, - 49.575, - 43.106, - 32.965, - 18.864, - 5.052, - 1.33, - 0.0, + 3.804, + 7.052, + 8.332, + 9.138, + 22.427, + 19.926, + 14.855, + 8.079, + 2.665, + 0.646, 0.0, 0.0, 0.0, @@ -92391,19 +92532,22 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, 0.0, -0.0, - 3.576, - 12.886, - 19.272, - 22.487, - 36.769, - 50.452, - 42.884, - 32.765, - 18.712, - 4.987, - 1.287, + 2.696, + 7.709, + 8.493, + 18.795, + 25.899, + 22.793, + 17.369, + 10.027, + 2.53, + 0.622, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -92416,18 +92560,17 @@ 0.0, -0.0, -0.0, - -0.0, - 3.658, - 12.923, - 19.025, - 21.558, - 34.905, - 49.985, - 42.955, - 32.721, - 18.678, - 4.9, - 1.234, + 2.821, + 6.087, + 7.702, + 9.961, + 24.534, + 13.505, + 7.974, + 9.203, + 2.662, + 0.684, + 0.0, 0.0, 0.0, 0.0, @@ -92441,17 +92584,17 @@ 0.0, 0.0, -0.0, - 4.179, - 13.953, - 20.553, - 23.733, - 36.972, - 51.396, - 44.049, - 33.516, - 19.181, - 4.834, - 1.269, + 3.418, + 6.803, + 8.424, + 11.481, + 25.478, + 21.915, + 16.682, + 9.635, + 2.657, + 0.672, + 0.0, 0.0, 0.0, 0.0, @@ -92462,21 +92605,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 3.643, - 13.183, - 19.73, - 22.901, - 35.515, - 51.032, - 43.82, - 33.368, - 19.193, - 4.867, - 1.261, 0.0, + 5.132, + 8.85, + 10.58, + 15.484, + 27.129, + 23.254, + 17.66, + 10.195, + 2.606, + 0.641, 0.0, 0.0, 0.0, @@ -92488,18 +92629,20 @@ 0.0, 0.0, 0.0, - -0.0, - 3.311, - 12.711, - 17.964, - 21.692, - 34.582, - 50.56, - 43.574, - 32.348, - 18.461, - 4.903, - 1.175, + 0.0, + 0.0, + 0.045, + 4.843, + 7.695, + 9.109, + 14.863, + 26.319, + 22.898, + 17.599, + 10.217, + 2.605, + 0.633, + 0.0, 0.0, 0.0, 0.0, @@ -92511,19 +92654,20 @@ 0.0, 0.0, -0.0, + 0.0, -0.0, + 3.888, + 7.244, + 9.063, + 13.192, + 26.311, + 22.74, + 17.405, + 10.171, + 2.485, + 0.483, 0.0, 0.0, - 12.528, - 18.894, - 21.402, - 30.913, - 43.958, - 39.055, - 29.115, - 15.835, - 5.223, - 1.266, 0.0, 0.0, 0.0, @@ -92534,21 +92678,18 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, - 0.721, - 10.356, - 20.182, - 27.664, - 52.039, - 50.761, - 44.674, - 34.043, - 19.652, - 4.959, - 1.219, 0.0, + 4.812, + 7.692, + 9.277, + 14.005, + 26.271, + 22.786, + 17.525, + 10.198, + 2.544, + 0.501, 0.0, 0.0, 0.0, @@ -92559,19 +92700,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, -0.0, - 1.322, - 10.6, - 17.002, - 20.167, - 31.205, - 48.086, - 26.47, - 15.629, - 18.039, - 5.217, - 1.341, + 0.108, + 5.216, + 8.503, + 10.177, + 23.974, + 26.981, + 23.292, + 17.883, + 10.397, + 2.548, + 0.48, 0.0, 0.0, 0.0, @@ -92582,21 +92724,20 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, - 2.386, - 11.771, - 18.406, - 21.583, - 33.123, - 49.936, - 42.954, - 32.697, - 18.885, - 5.208, - 1.316, 0.0, + -0.0, + 0.0, + 4.286, + 7.068, + 8.464, + 13.048, + 25.534, + 22.166, + 17.148, + 9.983, + 2.447, + 0.446, 0.0, 0.0, 0.0, @@ -92607,19 +92748,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, 0.0, - 4.704, - 15.131, - 22.418, - 25.81, - 38.65, - 53.173, - 45.579, - 34.613, - 19.982, - 5.108, - 1.257, + -0.0, + 2.956, + 6.041, + 2.755, + 11.0, + 24.083, + 20.801, + 15.856, + 9.548, + 2.798, + 0.639, 0.0, 0.0, 0.0, @@ -92630,21 +92772,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, -0.0, -0.0, - 5.161, - 14.565, - 20.155, - 22.926, - 37.064, - 51.586, - 44.879, - 34.493, - 20.025, - 5.105, - 1.24, - 0.0, + 2.719, + 5.929, + 7.445, + 18.415, + 21.832, + 21.416, + 16.395, + 9.471, + 2.744, + 0.656, 0.0, 0.0, 0.0, @@ -92655,19 +92796,22 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, -0.0, - 3.537, - 12.693, - 19.271, - 22.836, - 35.324, - 51.569, - 44.571, - 34.115, - 19.935, - 4.871, - 0.946, + 0.0, + 2.639, + 5.946, + 7.689, + 6.351, + 21.695, + 21.368, + 16.325, + 9.549, + 2.925, + 0.728, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -92680,18 +92824,17 @@ 0.0, -0.0, -0.0, + 3.948, + 7.485, + 9.193, + 12.149, + 26.32, + 22.697, + 17.354, + 10.067, + 2.543, + 0.504, 0.0, - 4.91, - 14.503, - 20.148, - 23.256, - 35.544, - 51.492, - 44.661, - 34.348, - 19.988, - 4.986, - 0.982, 0.0, 0.0, 0.0, @@ -92702,20 +92845,19 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, - 5.283, - 15.295, - 21.738, - 33.151, - 56.631, - 52.882, - 45.652, - 35.05, - 20.379, - 4.994, - 0.941, + 0.0, + 0.0, + 4.645, + 8.165, + 9.906, + 13.381, + 26.794, + 23.059, + 17.699, + 10.385, + 2.685, + 0.489, 0.0, 0.0, 0.0, @@ -92727,19 +92869,19 @@ 0.0, 0.0, -0.0, + 0.0, -0.0, 0.0, - 4.633, - 13.472, - 18.925, - 21.661, - 33.945, - 50.046, - 43.446, - 33.611, - 19.566, - 4.796, - 0.875, + 3.749, + 7.122, + 8.883, + 20.817, + 25.944, + 22.365, + 16.896, + 9.957, + 3.108, + 0.735, 0.0, 0.0, 0.0, @@ -92751,19 +92893,19 @@ 0.0, 0.0, -0.0, - -0.0, 0.0, - 2.837, - 10.866, - 16.911, - 10.472, - 31.729, - 47.203, - 40.77, - 31.077, - 18.714, - 5.485, - 1.253, + 0.0, + -0.0, + 0.616, + 1.592, + -0.0, + 1.048, + 7.902, + 10.24, + 13.221, + 8.538, + 2.924, + 0.649, 0.0, 0.0, 0.0, @@ -92777,17 +92919,17 @@ -0.0, -0.0, 0.0, - 1.165, - 10.401, - 16.693, - 25.155, - 51.266, - 42.79, - 41.975, - 32.135, - 18.563, - 5.379, - 1.285, + -0.0, + 4.825, + 8.789, + 10.571, + 14.477, + 27.36, + 23.679, + 18.171, + 10.602, + 2.733, + 0.472, 0.0, 0.0, 0.0, @@ -92800,18 +92942,20 @@ 0.0, -0.0, 0.0, + -0.0, + 0.0, + 4.645, + 8.049, + 9.757, + 13.544, + 26.767, + 23.188, + 17.823, + 10.361, + 2.637, + 0.441, + 0.0, 0.0, - 0.863, - 10.245, - 16.726, - 20.143, - 24.59, - 42.523, - 41.881, - 31.998, - 18.717, - 5.734, - 1.427, 0.0, 0.0, 0.0, @@ -92822,20 +92966,18 @@ 0.0, 0.0, 0.0, - -0.0, -0.0, 0.0, - 2.839, - 12.81, - 19.742, - 23.09, - 33.978, - 51.587, - 44.486, - 34.014, - 19.731, - 4.984, - 0.988, + 4.258, + 7.475, + 9.215, + 12.488, + 26.174, + 22.627, + 17.362, + 10.121, + 2.619, + 0.48, 0.0, 0.0, 0.0, @@ -92849,20 +92991,17 @@ 0.0, -0.0, -0.0, - 3.894, - 14.177, - 21.076, - 24.488, - 35.337, - 52.516, - 45.196, - 34.69, - 20.355, - 5.262, - 0.959, + -0.0, 0.0, 0.0, + -0.0, + -0.0, 0.0, + 16.544, + 16.032, + 9.748, + 2.764, + 0.518, 0.0, 0.0, 0.0, @@ -92872,18 +93011,21 @@ 0.0, 0.0, 0.0, - -0.0, - 2.85, - 12.421, - 19.031, - 28.827, - 54.254, - 50.85, - 43.836, - 33.117, - 19.515, - 6.092, - 1.441, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 2.96, + 6.425, + 8.114, + 8.881, + 25.099, + 21.789, + 16.639, + 9.667, + 2.812, + 0.517, 0.0, 0.0, 0.0, @@ -92894,20 +93036,20 @@ 0.0, 0.0, 0.0, - -0.0, -0.0, 0.0, 0.0, - 6.28, - 8.192, - 4.037, - 7.126, - 24.456, - 20.07, - 25.914, - 16.734, - 5.732, - 1.272, + -0.0, + 3.7, + 7.199, + 8.955, + 19.936, + 26.038, + 22.499, + 17.291, + 10.15, + 2.648, + 0.459, 0.0, 0.0, 0.0, @@ -92920,19 +93062,18 @@ 0.0, 0.0, -0.0, + -0.0, 0.0, - 3.899, - 14.529, - 22.298, - 25.79, - 37.482, - 53.625, - 46.411, - 35.615, - 20.781, - 5.357, - 0.924, - 0.0, + 4.348, + 7.734, + 9.471, + 12.5, + 26.372, + 22.785, + 17.508, + 10.269, + 2.699, + 0.461, 0.0, 0.0, 0.0, @@ -92942,23 +93083,21 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 4.214, - 14.177, - 20.847, - 24.196, - 35.338, - 52.463, - 45.448, - 34.934, - 20.308, - 5.168, - 0.864, 0.0, 0.0, 0.0, + 4.733, + 8.253, + 10.064, + 13.364, + 26.903, + 23.165, + 17.717, + 10.368, + 2.608, + 0.388, 0.0, 0.0, 0.0, @@ -92966,21 +93105,23 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - 3.828, - 13.418, - 19.724, - 23.133, - 33.654, - 51.301, - 44.348, - 34.03, - 19.837, - 5.133, - 0.941, 0.0, + -0.0, + -0.0, + -0.0, + -0.0, + 4.551, + 8.263, + 10.137, + 13.144, + 27.131, + 23.473, + 18.056, + 10.634, + 2.637, + 0.388, 0.0, 0.0, 0.0, @@ -92992,18 +93133,20 @@ 0.0, 0.0, -0.0, - 0.0, - 0.0, - 1.236, -0.0, -0.0, + -0.0, + 4.629, + 8.287, + 10.084, + 13.2, + 27.092, + 23.312, + 17.87, + 10.505, + 2.685, + 0.387, 0.0, - 18.847, - 40.562, - 31.423, - 19.106, - 5.418, - 1.015, 0.0, 0.0, 0.0, @@ -93016,18 +93159,18 @@ 0.0, 0.0, 0.0, - -0.0, - 1.259, - 10.874, - 17.664, - 20.976, - 29.153, - 49.194, - 42.706, - 32.613, - 18.947, - 5.512, - 1.013, + 0.0, + 4.315, + 7.851, + 9.571, + 12.208, + 26.52, + 22.82, + 17.444, + 10.19, + 2.677, + 0.427, + 0.0, 0.0, 0.0, 0.0, @@ -93041,17 +93184,16 @@ 0.0, -0.0, -0.0, - 2.337, - 12.323, - 19.181, - 26.623, - 54.379, - 51.035, - 44.098, - 33.89, - 19.893, - 5.19, - 0.899, + 3.261, + 6.704, + 8.455, + 9.834, + 25.379, + 21.887, + 16.597, + 9.689, + 2.649, + 0.273, 0.0, 0.0, 0.0, @@ -93062,20 +93204,20 @@ 0.0, 0.0, 0.0, + 0.0, + -0.0, + -0.0, -0.0, 0.0, + 2.968, + 3.107, + 7.035, -0.0, - 3.661, - 13.594, - 20.23, - 23.636, - 33.843, - 51.689, - 44.66, - 34.316, - 20.127, - 5.29, - 0.904, + -0.0, + 5.279, + 0.666, + 2.822, + 0.477, 0.0, 0.0, 0.0, @@ -93087,19 +93229,19 @@ 0.0, 0.0, -0.0, + -0.0, 0.0, 0.0, - 4.079, - 14.348, - 21.249, - 24.797, - 35.119, - 52.73, - 45.402, - 34.726, - 20.321, - 5.111, - 0.761, + 3.09, + 6.702, + 8.523, + 9.638, + 25.657, + 22.203, + 17.045, + 10.0, + 2.684, + 0.395, 0.0, 0.0, 0.0, @@ -93111,19 +93253,19 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, - 3.725, - 13.991, - 21.268, - 24.94, - 35.042, - 53.177, - 46.006, - 35.389, - 20.842, - 5.169, - 0.761, + -0.0, + -0.0, + 3.932, + 7.51, + 9.318, + 11.27, + 26.455, + 22.794, + 17.458, + 10.113, + 2.709, + 0.395, 0.0, 0.0, 0.0, @@ -93137,17 +93279,17 @@ 0.0, -0.0, 0.0, - 3.852, - 14.145, - 21.314, - 24.837, - 35.024, - 53.1, - 45.692, - 35.025, - 20.589, - 5.263, - 0.758, + 0.0, + 3.95, + 7.333, + 9.111, + 11.28, + 26.29, + 22.748, + 17.51, + 10.209, + 2.7, + 0.365, 0.0, 0.0, 0.0, @@ -93161,17 +93303,17 @@ -0.0, -0.0, -0.0, - 3.401, - 13.529, - 20.459, - 23.83, - 33.531, - 51.979, - 44.726, - 34.189, - 19.972, - 5.248, - 0.838, + -0.0, + 3.543, + 7.125, + 8.89, + 10.411, + 26.044, + 22.442, + 17.162, + 9.999, + 2.674, + 0.336, 0.0, 0.0, 0.0, @@ -93183,19 +93325,21 @@ 0.0, 0.0, -0.0, + -0.0, + -0.0, + 0.0, + 3.768, + 7.227, + 8.94, + 10.901, + 26.089, + 22.535, + 17.261, + 10.035, + 2.664, + 0.332, 0.0, 0.0, - 1.771, - 11.464, - 18.211, - 21.644, - 30.508, - 49.743, - 42.898, - 32.53, - 18.99, - 5.193, - 0.535, 0.0, 0.0, 0.0, @@ -93204,22 +93348,25 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + -0.0, 0.0, + 3.854, + 7.198, + 8.953, + 10.911, + 25.761, + 22.292, + 17.144, + 10.055, + 2.606, + 0.28, 0.0, 0.0, 0.0, - -0.0, - -0.0, - 10.888, - 11.162, - 18.86, 0.0, 0.0, - 10.346, - 1.306, - 5.53, - 0.936, 0.0, 0.0, 0.0, @@ -93229,21 +93376,18 @@ 0.0, 0.0, 0.0, + 3.713, + 7.172, + 8.937, + 15.793, + 26.172, + 22.547, + 17.257, + 10.064, + 2.65, + 0.272, 0.0, - -0.0, - -0.0, 0.0, - 1.295, - 11.128, - 18.209, - 21.777, - 30.601, - 50.287, - 43.517, - 33.408, - 19.6, - 5.261, - 0.774, 0.0, 0.0, 0.0, @@ -93256,18 +93400,17 @@ 0.0, -0.0, -0.0, + 3.443, + 6.895, + 8.6, + 10.158, + 25.545, + 21.887, + 16.611, + 9.79, + 2.774, + 0.238, 0.0, - 2.72, - 12.778, - 19.792, - 23.335, - 32.374, - 51.851, - 44.677, - 34.218, - 19.821, - 5.31, - 0.774, 0.0, 0.0, 0.0, @@ -93278,20 +93421,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - 2.8, - 12.813, - 19.445, - 22.93, - 32.315, - 51.529, - 44.587, - 34.32, - 20.01, - 5.292, - 0.715, + -0.0, + 3.745, + 4.138, + 5.349, + 5.661, + 12.568, + 22.394, + 17.029, + 9.95, + 2.689, + 0.229, 0.0, 0.0, 0.0, @@ -93303,43 +93445,21 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, - 2.138, - 12.016, - 19.038, - 22.496, - 31.273, - 51.046, - 43.987, - 33.637, - 19.598, - 5.241, - 0.659, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, 0.0, 0.0, + 3.521, + 7.083, + 9.034, + 10.818, + 26.123, + 22.704, + 17.344, + 10.207, + 2.613, + 0.211, 0.0, 0.0, - -0.0, - -0.0, - 2.491, - 12.456, - 19.237, - 22.595, - 31.879, - 51.135, - 44.168, - 33.831, - 19.669, - 5.222, - 0.651, 0.0, 0.0, 0.0, @@ -93351,19 +93471,19 @@ 0.0, 0.0, -0.0, + -0.0, + 3.869, + 7.309, + 8.905, + 11.16, + 26.102, + 22.562, + 17.26, + 10.039, + 2.578, + 0.191, 0.0, 0.0, - 2.691, - 12.625, - 19.18, - 22.62, - 31.699, - 50.491, - 43.693, - 33.603, - 19.708, - 5.108, - 0.548, 0.0, 0.0, 0.0, @@ -93376,18 +93496,16 @@ 0.0, -0.0, 0.0, - -0.0, - 2.555, - 12.348, - 19.129, - 22.588, - 53.125, - 51.297, - 44.192, - 33.823, - 19.725, - 5.194, - 0.533, + 3.884, + 7.278, + 9.067, + 11.005, + 20.08, + 22.292, + 16.921, + 9.901, + 2.808, + 0.181, 0.0, 0.0, 0.0, @@ -93401,17 +93519,17 @@ -0.0, 0.0, -0.0, - 2.188, - 11.82, - 18.587, - 21.928, - 30.727, - 50.068, - 42.899, - 32.558, - 19.188, - 5.436, - 0.467, + -0.0, + 4.253, + 7.942, + 9.891, + 12.478, + 26.883, + 23.273, + 17.714, + 10.436, + 2.685, + 0.187, 0.0, 0.0, 0.0, @@ -93425,17 +93543,17 @@ 0.0, 0.0, 0.0, - -0.0, - 12.412, - 13.183, - 15.556, - 16.167, - 32.568, - 43.892, - 33.377, - 19.503, - 5.271, - 0.449, + 0.406, + 6.019, + 9.941, + 11.791, + 16.871, + 28.444, + 24.427, + 18.584, + 10.752, + 2.616, + 0.131, 0.0, 0.0, 0.0, @@ -93448,18 +93566,18 @@ 0.0, 0.0, -0.0, - 0.0, - 2.201, - 11.974, - 18.955, - 22.778, - 32.006, - 51.2, - 44.501, - 33.995, - 20.006, - 5.122, - 0.413, + -0.0, + 0.119, + 5.553, + 9.168, + 11.068, + 15.044, + 27.82, + 23.92, + 18.244, + 10.604, + 2.564, + 0.131, 0.0, 0.0, 0.0, @@ -93473,18 +93591,17 @@ -0.0, -0.0, -0.0, - 2.947, - 12.654, - 19.397, - 22.525, - 31.932, - 51.161, - 44.221, - 33.83, - 19.677, - 5.054, - 0.374, - 0.0, + 0.124, + 5.39, + 8.777, + 10.721, + 14.981, + 27.778, + 23.971, + 18.349, + 10.694, + 2.55, + 0.11, 0.0, 0.0, 0.0, @@ -93496,19 +93613,19 @@ 0.0, 0.0, -0.0, - -0.0, - 2.65, - 12.686, - 19.338, - 22.843, - 31.923, - 39.356, - 43.692, - 33.165, - 19.405, - 5.504, - 0.355, 0.0, + -0.0, + 0.048, + 5.434, + 9.076, + 11.007, + 15.11, + 27.923, + 24.105, + 18.393, + 10.716, + 2.598, + 0.113, 0.0, 0.0, 0.0, @@ -93521,18 +93638,18 @@ 0.0, 0.0, 0.0, - 2.863, - 13.407, - 20.638, - 24.459, - 34.598, - 52.69, - 45.615, - 34.72, - 20.455, - 5.263, - 0.366, 0.0, + -0.0, + 5.252, + 8.907, + 10.827, + 14.717, + 27.785, + 23.981, + 18.33, + 10.633, + 2.492, + 0.126, 0.0, 0.0, 0.0, @@ -93545,18 +93662,18 @@ 0.0, -0.0, -0.0, - 5.867, - 16.87, - 24.556, - 28.183, - 55.784, - 55.75, - 47.876, - 36.424, - 21.073, - 5.128, - 0.256, 0.0, + 0.031, + 5.646, + 9.367, + 11.225, + 15.011, + 27.992, + 24.029, + 18.282, + 10.552, + 2.453, + 0.106, 0.0, 0.0, 0.0, @@ -93569,18 +93686,18 @@ 0.0, -0.0, 0.0, - 5.304, - 15.956, - 23.041, - 26.764, - 37.419, - 54.527, - 46.883, - 35.758, - 20.784, - 5.026, - 0.257, - 0.0, + -0.0, + -0.0, + 4.551, + 8.055, + 9.718, + 12.342, + 26.569, + 22.7, + 17.24, + 9.984, + 2.298, + 0.082, 0.0, 0.0, 0.0, @@ -93592,18 +93709,20 @@ 0.0, 0.0, -0.0, + -0.0, + -0.0, + -0.0, + 4.214, + 7.714, + 9.512, + 12.833, + 26.556, + 22.842, + 17.388, + 9.949, + 2.264, + 0.062, 0.0, - 5.314, - 15.637, - 22.276, - 26.085, - 37.297, - 54.446, - 46.984, - 35.965, - 20.961, - 4.999, - 0.216, 0.0, 0.0, 0.0, @@ -93613,21 +93732,21 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, 0.0, -0.0, + 3.144, + 2.321, + 9.398, + 11.337, + 22.009, + 16.667, + 15.035, + 9.062, + 2.259, + 0.022, 0.0, - 5.166, - 15.723, - 22.861, - 26.646, - 37.549, - 54.728, - 47.246, - 36.049, - 21.004, - 5.092, - 0.221, 0.0, 0.0, 0.0, @@ -93639,19 +93758,19 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, - 4.822, - 15.366, - 22.529, - 26.292, - 37.029, - 54.458, - 47.003, - 35.926, - 20.841, - 4.885, - 0.247, + -0.0, + 4.009, + 7.343, + 9.089, + 11.213, + 26.031, + 22.447, + 16.868, + 9.388, + 2.472, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -93665,17 +93784,15 @@ -0.0, -0.0, 0.0, - 5.132, - 16.139, - 23.431, - 27.073, - 37.354, - 54.864, - 47.096, - 35.832, - 20.683, - 4.809, - 0.208, + 3.723, + 6.91, + 8.632, + 10.541, + 25.515, + 21.87, + 16.333, + 9.135, + 2.395, 0.0, 0.0, 0.0, @@ -93688,18 +93805,19 @@ 0.0, 0.0, -0.0, + -0.0, + 0.0, + -0.0, + 3.845, + 7.498, + 9.253, + 11.202, + 26.294, + 22.634, + 17.019, + 9.568, + 2.321, 0.0, - 3.69, - 13.992, - 20.86, - 24.119, - 33.506, - 52.076, - 44.491, - 33.791, - 19.569, - 4.504, - 0.162, 0.0, 0.0, 0.0, @@ -93712,18 +93830,18 @@ 0.0, -0.0, -0.0, + -0.0, + 0.0, + 4.635, + 8.324, + 10.156, + 12.963, + 27.013, + 23.146, + 17.594, + 9.979, + 2.182, 0.0, - 3.429, - 13.332, - 20.191, - 23.716, - 49.039, - 52.05, - 44.771, - 34.08, - 19.5, - 4.438, - 0.121, 0.0, 0.0, 0.0, @@ -93734,20 +93852,20 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, - 2.89, - 11.235, - 9.62, - 23.492, - 32.335, - 43.138, - 32.668, - 29.469, - 17.761, - 4.427, - 0.044, + 0.0, + 0.0, + 0.0, + 0.025, + 2.983, + 9.184, + 8.237, + 14.681, + 27.671, + 23.654, + 17.89, + 10.121, + 2.148, + 0.0, 0.0, 0.0, 0.0, @@ -93761,16 +93879,16 @@ -0.0, -0.0, -0.0, - 2.98, - 12.93, - 19.465, - 22.887, - 32.002, - 51.021, - 43.996, - 33.062, - 18.401, - 4.846, + 0.267, + 5.519, + 8.964, + 10.785, + 15.136, + 27.474, + 23.551, + 17.778, + 9.988, + 2.093, 0.0, 0.0, 0.0, @@ -93782,19 +93900,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 2.664, - 12.369, - 18.615, - 21.991, - 31.002, - 50.008, - 42.866, - 32.014, - 17.905, - 4.693, + 0.0, + 0.0, + 5.162, + 8.544, + 10.14, + 13.889, + 26.847, + 22.932, + 17.314, + 9.634, + 2.125, 0.0, 0.0, 0.0, @@ -93809,16 +93927,16 @@ 0.0, 0.0, -0.0, - 2.702, - 12.609, - 19.768, - 23.207, - 32.258, - 51.535, - 44.363, - 33.357, - 18.753, - 4.55, + -0.0, + 5.26, + 8.8, + 10.458, + 13.966, + 27.069, + 23.037, + 17.267, + 9.667, + 2.046, 0.0, 0.0, 0.0, @@ -93831,18 +93949,20 @@ 0.0, 0.0, -0.0, - -0.0, 0.0, - 3.833, - 14.156, - 21.387, - 24.977, - 34.578, - 52.946, - 45.366, - 34.484, - 19.559, - 4.277, + 0.0, + 0.572, + 6.146, + 9.755, + 11.584, + 15.793, + 28.009, + 23.917, + 18.049, + 10.109, + 2.046, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -93856,17 +93976,15 @@ 0.0, 0.0, -0.0, - -0.0, - 5.122, - 10.919, - 23.073, - 21.217, - 36.709, - 54.235, - 46.362, - 35.065, - 19.837, - 4.21, + 5.271, + 8.857, + 10.588, + 14.533, + 27.328, + 23.299, + 17.518, + 9.766, + 1.98, 0.0, 0.0, 0.0, @@ -93881,16 +93999,16 @@ 0.0, -0.0, 0.0, - 5.596, - 15.89, - 22.642, - 26.211, - 49.038, - 53.85, - 46.161, - 34.846, - 19.577, - 4.102, + -0.0, + 4.575, + 8.197, + 9.983, + 12.382, + 22.821, + 19.432, + 14.341, + 9.036, + 1.954, 0.0, 0.0, 0.0, @@ -93903,18 +94021,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 4.892, - 15.189, - 21.818, - 24.946, - 35.336, - 52.62, - 44.947, - 33.935, - 18.883, - 4.165, + 0.0, + 0.0, + 1.668, + 7.67, + 5.352, + 4.048, + 22.341, + 5.666, + 3.439, + 7.983, + 1.962, 0.0, 0.0, 0.0, @@ -93927,18 +94045,19 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + -0.0, + 4.24, + 7.951, + 9.738, + 11.874, + 26.511, + 22.699, + 16.86, + 9.24, + 1.784, 0.0, - 4.95, - 15.382, - 22.321, - 25.569, - 35.428, - 53.055, - 45.153, - 33.843, - 18.947, - 4.011, 0.0, 0.0, 0.0, @@ -93951,18 +94070,18 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, - 6.193, - 17.118, - 24.192, - 27.776, - 38.887, - 54.897, - 46.877, - 35.375, - 19.814, - 4.01, + -0.0, + 3.998, + 7.526, + 9.332, + 11.962, + 26.218, + 22.358, + 16.783, + 9.15, + 1.689, + 0.0, 0.0, 0.0, 0.0, @@ -93977,16 +94096,15 @@ 0.0, 0.0, -0.0, - 4.956, - 15.403, - 22.433, - 25.824, - 36.533, - 53.562, - 45.666, - 34.336, - 19.141, - 3.881, + 3.503, + 6.664, + 8.069, + 10.223, + 25.081, + 14.828, + 9.248, + 8.0, + 1.742, 0.0, 0.0, 0.0, @@ -94001,16 +94119,17 @@ 0.0, 0.0, -0.0, - 3.512, - 14.04, - 21.138, - 24.639, - 33.763, - 44.73, - 38.087, - 28.109, - 17.711, - 3.829, + -0.0, + 4.138, + 7.881, + 9.673, + 10.188, + 11.884, + 1.13, + 16.406, + 2.072, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -94025,16 +94144,15 @@ 0.0, 0.0, -0.0, - -0.0, - 8.342, - 20.105, - 15.563, - 20.939, - 43.789, - 11.106, - 6.74, - 15.646, - 3.846, + 3.126, + 6.866, + 8.393, + 9.375, + 25.291, + 18.784, + 13.78, + 9.199, + 1.665, 0.0, 0.0, 0.0, @@ -94047,18 +94165,19 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, -0.0, - 3.206, - 13.382, - 20.655, - 24.159, - 40.699, - 51.962, - 44.49, - 33.046, - 18.11, - 3.497, + 5.033, + 8.546, + 10.348, + 14.453, + 27.078, + 23.037, + 17.121, + 9.159, + 1.617, + 0.0, 0.0, 0.0, 0.0, @@ -94072,17 +94191,16 @@ 0.0, 0.0, -0.0, + -0.0, + 4.224, + 7.799, + 9.516, + -0.0, + -0.0, 0.0, - 3.317, - 12.908, - 19.823, - 23.363, - 33.134, - 51.387, - 43.821, - 32.894, - 17.934, - 3.311, + 16.8, + 8.952, + 1.548, 0.0, 0.0, 0.0, @@ -94097,16 +94215,16 @@ 0.0, 0.0, -0.0, - 2.647, - 11.938, - 18.134, - 20.888, - 30.397, - 49.16, - 29.063, - 18.127, - 15.679, - 3.414, + 0.0, + 4.964, + 8.421, + 10.01, + 13.523, + 9.003, + 7.226, + 1.664, + 6.103, + 1.563, 0.0, 0.0, 0.0, @@ -94121,15 +94239,16 @@ 0.0, -0.0, 0.0, - 3.169, - 13.182, - 20.518, - 24.03, - 29.806, - 23.293, - 2.215, - 32.155, - 4.061, + -0.0, + 4.817, + 8.206, + 9.65, + 13.1, + 25.935, + 21.911, + 16.143, + 8.429, + 1.498, 0.0, 0.0, 0.0, @@ -94142,19 +94261,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + -0.0, + 4.409, + 7.735, + 9.121, + 12.037, + 25.417, + 21.548, + 5.78, + 8.296, + 0.654, 0.0, 0.0, - 1.608, - 11.198, - 18.529, - 21.523, - 29.773, - 49.571, - 36.817, - 27.009, - 18.03, - 3.263, 0.0, 0.0, 0.0, @@ -94168,17 +94288,16 @@ 0.0, 0.0, 0.0, + 4.652, + 8.251, + 9.904, + 13.187, + 26.479, + 22.416, + 16.38, + 8.513, + 1.339, 0.0, - 4.658, - 14.937, - 21.822, - 25.354, - 36.675, - 53.074, - 45.153, - 33.557, - 17.951, - 3.17, 0.0, 0.0, 0.0, @@ -94193,16 +94312,16 @@ 0.0, -0.0, 0.0, - 4.47, - 13.351, - 20.358, - 23.724, - 0.0, + 4.892, + 8.515, + 10.188, + 13.767, + 26.828, + 22.426, + 16.142, + 8.299, + 1.286, 0.0, - -0.0, - 32.928, - 17.546, - 3.034, 0.0, 0.0, 0.0, @@ -94216,18 +94335,16 @@ 0.0, 0.0, -0.0, - -0.0, - 4.559, - 14.8, - 21.577, - 24.692, - 34.951, - 17.646, - 14.164, - 3.262, - 11.961, - 3.064, - 0.0, + 1.337, + 6.82, + 10.451, + 12.019, + 16.892, + 28.335, + 23.891, + 17.608, + 8.975, + 1.326, 0.0, 0.0, 0.0, @@ -94241,18 +94358,17 @@ 0.0, 0.0, -0.0, - 4.346, - 14.514, - 21.155, - 23.987, - 38.147, - 50.832, - 42.945, - 31.641, - 16.52, - 2.936, - 0.0, 0.0, + 1.672, + 7.251, + 10.919, + 12.592, + 17.594, + 28.457, + 23.98, + 17.616, + 9.04, + 1.257, 0.0, 0.0, 0.0, @@ -94265,16 +94381,18 @@ 0.0, 0.0, 0.0, - 4.007, - 13.715, - 20.232, - 22.949, - 32.59, - 49.817, - 42.235, - 11.33, - 16.261, - 1.282, + -0.0, + -0.0, + 0.655, + 5.997, + 9.84, + 11.613, + 16.379, + 27.859, + 23.597, + 17.43, + 8.92, + 1.172, 0.0, 0.0, 0.0, @@ -94288,18 +94406,17 @@ 0.0, 0.0, 0.0, - -0.0, - 4.29, - 14.191, - 21.243, - 24.484, - 34.561, - 51.9, - 43.936, - 32.105, - 16.685, - 2.624, 0.0, + 0.702, + 5.897, + 9.281, + 10.514, + 14.807, + 25.885, + 21.673, + 16.091, + 8.304, + 1.061, 0.0, 0.0, 0.0, @@ -94313,16 +94430,17 @@ 0.0, 0.0, 0.0, - 4.469, - 14.661, - 21.761, - 25.041, - 35.52, - 52.583, - 43.955, - 31.639, - 16.266, - 2.521, + -0.0, + 0.285, + 5.235, + 8.499, + 9.716, + 13.677, + 25.127, + 21.245, + 15.672, + 7.996, + 1.038, 0.0, 0.0, 0.0, @@ -94335,18 +94453,20 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + 0.054, + 5.208, + 8.588, + 10.215, + 14.431, + 26.544, + 22.047, + 15.718, + 7.192, + 0.821, 0.0, 0.0, - 7.692, - 18.439, - 25.556, - 28.628, - 41.04, - 55.536, - 46.825, - 34.511, - 17.592, - 2.6, 0.0, 0.0, 0.0, @@ -94360,17 +94480,15 @@ 0.0, 0.0, -0.0, - -0.0, - 8.349, - 19.284, - 26.474, - 29.752, - 42.418, - 55.775, - 47.001, - 34.528, - 17.718, - 2.464, + 4.807, + 9.285, + 10.805, + 12.627, + 26.986, + 22.124, + 15.275, + 7.902, + 0.933, 0.0, 0.0, 0.0, @@ -94383,18 +94501,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 6.355, - 16.826, - 24.358, - 27.833, - 40.036, - 54.604, - 46.25, - 34.163, - 17.484, - 2.297, + -0.0, + 2.481, + 8.512, + 12.712, + 14.337, + 19.804, + 29.968, + 24.968, + 18.092, + 9.011, + 0.932, 0.0, 0.0, 0.0, @@ -94409,16 +94527,16 @@ 0.0, 0.0, -0.0, - 6.448, - 16.63, - 23.262, - 25.68, - 36.955, - 50.734, - 42.48, - 31.538, - 16.276, - 2.08, + 3.125, + 9.243, + 13.05, + 14.337, + 20.986, + 29.924, + 25.034, + 18.287, + 9.057, + 0.88, 0.0, 0.0, 0.0, @@ -94431,18 +94549,19 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 2.77, + 8.518, + 12.231, + 13.679, + 19.586, + 28.92, + 24.177, + 17.585, + 8.78, + 0.747, 0.0, - 5.631, - 15.332, - 21.731, - 24.116, - 34.74, - 49.249, - 41.64, - 30.716, - 15.672, - 2.034, 0.0, 0.0, 0.0, @@ -94456,17 +94575,16 @@ 0.0, 0.0, 0.0, - -0.0, - 5.177, - 15.28, - 21.904, - 25.094, - 36.219, - 52.026, - 43.213, - 30.807, - 14.097, - 1.609, + 1.76, + 7.029, + 10.271, + 11.511, + 17.003, + 26.97, + 22.79, + 16.74, + 8.261, + 0.626, 0.0, 0.0, 0.0, @@ -94480,18 +94598,17 @@ 0.0, 0.0, -0.0, - 0.0, - 3.301, - 14.493, - 23.27, - 26.25, - 34.453, - 52.892, - 43.364, - 29.939, - 15.488, - 1.828, - 0.0, + -0.0, + 1.202, + 7.09, + 10.991, + 12.652, + 17.315, + 28.513, + 23.986, + 17.157, + 8.244, + 0.528, 0.0, 0.0, 0.0, @@ -94505,16 +94622,17 @@ 0.0, 0.0, -0.0, - 9.936, - 21.756, - 29.988, - 33.173, - 46.749, - 58.737, - 48.937, - 35.461, - 17.661, - 1.827, + -0.0, + 2.358, + 7.796, + 11.1, + 12.279, + 17.86, + 27.447, + 22.957, + 16.619, + 8.167, + 0.472, 0.0, 0.0, 0.0, @@ -94528,18 +94646,17 @@ 0.0, 0.0, 0.0, - -0.0, - 11.197, - 23.189, - 30.651, - 33.173, - 49.066, - 58.651, - 49.066, - 35.842, - 17.752, - 1.724, 0.0, + 1.438, + 7.02, + 10.58, + 12.163, + 17.497, + 27.657, + 23.009, + 16.334, + 7.676, + 0.411, 0.0, 0.0, 0.0, @@ -94551,18 +94668,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 10.501, - 21.767, - 29.044, - 31.882, - 46.321, - 56.684, - 47.386, - 34.467, - 17.208, - 1.465, + -0.0, + -0.0, + 0.248, + 6.33, + 11.093, + 12.95, + 16.551, + 28.686, + 23.994, + 17.33, + 8.214, + 0.421, 0.0, 0.0, 0.0, @@ -94576,17 +94694,17 @@ 0.0, 0.0, -0.0, - -0.0, - 8.522, - 18.85, - 25.203, - 27.633, - 41.258, - 52.86, - 44.668, - 32.809, - 16.191, - 1.228, + 0.0, + 3.038, + 8.93, + 12.608, + 14.076, + 20.174, + 29.218, + 24.261, + 17.344, + 8.106, + 0.359, 0.0, 0.0, 0.0, @@ -94600,17 +94718,17 @@ 0.0, 0.0, -0.0, - -0.0, - 7.428, - 18.968, - 26.614, - 29.869, - 41.872, - 55.885, - 47.012, - 33.628, - 16.158, - 1.036, + 0.0, + 2.626, + 8.277, + 11.707, + 12.99, + 18.731, + 28.007, + 23.191, + 16.632, + 7.794, + 0.295, 0.0, 0.0, 0.0, @@ -94623,18 +94741,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 9.695, - 20.352, - 26.828, - 29.139, - 42.938, - 53.796, - 44.996, - 32.574, - 16.007, - 0.924, + -0.0, + 2.347, + 7.842, + 11.317, + 12.56, + 18.122, + 27.547, + 22.922, + 16.444, + 7.644, + 0.232, 0.0, 0.0, 0.0, @@ -94648,17 +94766,17 @@ 0.0, 0.0, -0.0, - 0.0, - 7.891, - 18.831, - 25.809, - 28.911, - 42.229, - 54.208, - 45.098, - 32.014, - 15.045, - 0.806, + -0.0, + 1.051, + 6.381, + 10.107, + 11.685, + 16.554, + 27.668, + 23.085, + 16.507, + 7.532, + 0.191, 0.0, 0.0, 0.0, @@ -94671,18 +94789,19 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 1.739, + 7.071, + 10.395, + 11.706, + 17.267, + 27.271, + 22.779, + 16.298, + 7.431, + 0.146, 0.0, - 5.558, - 17.478, - 26.815, - 30.453, - 40.374, - 56.224, - 47.029, - 33.967, - 16.1, - 0.824, 0.0, 0.0, 0.0, @@ -94696,17 +94815,16 @@ 0.0, 0.0, -0.0, - -0.0, - 11.026, - 22.575, - 29.784, - 32.661, - 47.474, - 57.267, - 47.551, - 33.995, - 15.888, - 0.704, + 0.0, + 7.103, + 6.671, + 4.935, + 6.782, + 16.885, + 7.559, + 16.424, + 7.411, + 0.102, 0.0, 0.0, 0.0, @@ -94721,16 +94839,15 @@ 0.0, 0.0, -0.0, - 10.218, - 21.295, - 28.018, - 30.533, - 44.647, - 54.894, - 45.455, - 32.599, - 15.276, - 0.579, + 0.674, + 5.836, + 6.922, + 8.121, + 12.004, + 22.18, + 16.079, + 10.641, + 3.208, 0.0, 0.0, 0.0, @@ -94745,16 +94862,18 @@ 0.0, 0.0, -0.0, - 9.671, - 20.442, - 27.254, - 29.689, - 43.455, - 53.991, - 44.928, - 32.23, - 14.983, - 0.454, + 0.0, + 1.146, + 3.512, + 7.293, + 5.552, + 0.343, + 17.944, + 10.032, + 10.619, + 1.622, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -94768,17 +94887,16 @@ 0.0, 0.0, -0.0, + 0.553, + 5.965, + 9.491, + 11.054, + 15.951, + 26.904, + 22.222, + 15.623, + 6.796, 0.0, - 7.132, - 17.578, - 24.882, - 27.975, - 40.379, - 54.23, - 45.247, - 32.353, - 14.763, - 0.375, 0.0, 0.0, 0.0, @@ -94791,20 +94909,17 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 8.481, - 18.931, - 25.447, - 28.016, - 41.777, - 53.452, - 44.647, - 31.944, - 14.564, - 0.287, 0.0, 0.0, + 0.86, + 6.111, + 9.627, + 11.141, + 12.539, + 26.944, + 22.219, + 15.614, + 6.755, 0.0, 0.0, 0.0, @@ -94815,22 +94930,23 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 0.121, - 18.993, - 18.147, - 14.745, - 26.176, - 33.094, - 14.815, - 32.192, - 14.525, - 0.199, 0.0, 0.0, 0.0, 0.0, + 1.414, + 6.878, + 10.636, + 12.088, + 16.883, + 27.59, + 22.699, + 15.655, + 6.592, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -94839,19 +94955,20 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 6.393, - 16.511, - 18.64, - 20.988, - 31.461, - 43.473, - 31.515, - 20.857, - 6.288, 0.0, 0.0, + -0.0, + 2.126, + 8.137, + 11.741, + 13.227, + 17.763, + 28.516, + 16.741, + 10.728, + 0.392, + 0.0, 0.0, 0.0, 0.0, @@ -94865,17 +94982,16 @@ 0.0, 0.0, -0.0, - 7.319, - 11.956, - 19.367, - 15.955, - 8.605, - 35.17, - 19.662, - 20.814, - 3.178, 0.0, + -0.0, + 8.593, 0.0, + 13.737, + 12.948, + -0.0, + -0.0, + 16.667, + 0.086, 0.0, 0.0, 0.0, @@ -94889,17 +95005,17 @@ 0.0, 0.0, 0.0, - 6.156, - 16.764, - 23.675, - 26.738, - 39.197, - 52.733, - 43.556, - 30.621, - 13.319, 0.0, + -0.0, + 3.554, + 9.4, + 12.899, + 14.306, 0.0, + 0.362, + 0.437, + 0.685, + 3.567, 0.0, 0.0, 0.0, @@ -94913,16 +95029,17 @@ 0.0, 0.0, 0.0, - 6.757, - 17.049, - 23.942, - 26.909, - 32.511, - 52.81, - 43.549, - 30.604, - 13.239, + -0.0, 0.0, + 3.349, + 8.966, + 12.314, + 13.484, + 19.357, + 28.139, + 23.229, + 15.934, + 6.478, 0.0, 0.0, 0.0, @@ -94937,15 +95054,16 @@ 0.0, 0.0, -0.0, - 7.844, - 18.553, - 25.918, - 28.765, - 41.023, - 54.077, - 44.49, - 30.685, - 12.92, + -0.0, + 2.72, + 8.165, + 11.564, + 12.632, + 18.04, + 27.639, + 22.822, + 15.986, + 6.471, 0.0, 0.0, 0.0, @@ -94959,17 +95077,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 9.238, - 21.021, - 28.083, - 30.998, - 42.748, - 55.891, - 32.812, - 21.028, - 0.769, + -0.0, + 2.435, + 7.722, + 10.453, + 11.133, + 16.606, + 26.432, + 21.926, + 15.464, + 6.305, 0.0, 0.0, 0.0, @@ -94985,16 +95103,15 @@ 0.0, 0.0, -0.0, - -0.0, - 21.915, - -0.0, - 31.996, - 30.451, - -0.0, - 0.0, - 32.668, - 0.168, - 0.0, + 1.882, + 7.32, + 5.659, + 6.394, + 16.817, + 26.907, + 21.785, + 14.733, + 5.765, 0.0, 0.0, 0.0, @@ -95007,18 +95124,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 12.037, - 23.496, - 30.354, - 33.112, -0.0, - 8.642, - 0.856, - 1.343, - 6.991, 0.0, + 2.253, + 7.662, + 10.792, + 11.807, + 16.553, + 26.772, + 21.954, + 15.096, + 5.786, 0.0, 0.0, 0.0, @@ -95033,16 +95150,16 @@ 0.0, 0.0, 0.0, - 11.636, - 22.645, - 29.207, - 31.5, - 45.873, - 55.153, - 45.529, - 31.23, - 12.696, 0.0, + 2.305, + 7.847, + 11.091, + 12.275, + 17.45, + 27.255, + 22.209, + 15.248, + 5.946, 0.0, 0.0, 0.0, @@ -95057,15 +95174,16 @@ 0.0, 0.0, -0.0, - 10.403, - 21.075, - 27.737, - 29.83, - 43.294, - 54.173, - 44.731, - 31.333, - 12.684, + 0.0, + 2.099, + 7.299, + 10.186, + 10.849, + 15.468, + 25.499, + 21.219, + 14.82, + 5.757, 0.0, 0.0, 0.0, @@ -95080,16 +95198,16 @@ 0.0, 0.0, -0.0, - 0.0, - 9.845, - 20.208, - 25.56, - 26.893, - 40.482, - 51.807, - 42.975, - 30.31, - 12.358, + -0.0, + 1.283, + 2.304, + 6.177, + 10.167, + 11.38, + 20.402, + 21.47, + 12.589, + 5.156, 0.0, 0.0, 0.0, @@ -95105,15 +95223,15 @@ 0.0, -0.0, -0.0, - 8.76, - 19.418, - 16.164, - 17.604, - 40.894, - 52.737, - 42.698, - 28.876, - 11.299, + 0.258, + 5.94, + 9.151, + 10.444, + 13.075, + 26.362, + 21.533, + 14.398, + 4.84, 0.0, 0.0, 0.0, @@ -95128,18 +95246,16 @@ 0.0, 0.0, -0.0, - -0.0, - 9.488, - 20.09, - 26.225, - 28.214, - 40.378, - 52.474, - 43.029, - 29.587, - 11.34, - 0.0, 0.0, + 1.445, + 6.841, + 10.399, + 11.855, + 15.997, + 27.09, + 22.18, + 14.934, + 5.26, 0.0, 0.0, 0.0, @@ -95153,15 +95269,17 @@ 0.0, 0.0, 0.0, - 9.59, - 20.453, - 26.809, - 29.132, - 42.136, - 53.42, - 43.529, - 29.887, - 11.653, + -0.0, + -0.0, + 2.21, + 7.831, + 11.192, + 12.235, + 16.527, + 26.667, + 21.756, + 14.618, + 5.152, 0.0, 0.0, 0.0, @@ -95177,15 +95295,15 @@ 0.0, -0.0, -0.0, - 9.186, - 19.379, - 25.036, - 26.335, - 38.25, - 49.977, - 41.59, - 29.048, - 11.283, + 2.673, + 8.16, + 11.417, + 12.378, + 16.872, + 26.687, + 21.84, + 14.782, + 5.124, 0.0, 0.0, 0.0, @@ -95199,17 +95317,18 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 1.988, + 7.008, + 10.517, + 12.002, + 16.525, + 27.199, + 22.224, + 14.864, + 4.638, 0.0, - 7.586, - 9.588, - 17.179, - 24.998, - 30.238, - 39.987, - 42.081, - 24.675, - 10.106, 0.0, 0.0, 0.0, @@ -95222,18 +95341,18 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 1.974, + 7.487, + 10.573, + 11.58, + 15.022, + 26.442, + 21.744, + 14.585, + 4.331, 0.0, - -0.0, - 5.578, - 16.714, - 23.008, - 25.543, - 33.561, - 51.669, - 42.205, - 28.219, - 9.485, 0.0, 0.0, 0.0, @@ -95247,17 +95366,16 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 7.904, - 18.48, - 25.455, - 28.308, - 39.289, - 53.097, - 43.473, - 29.271, - 10.309, + 1.877, + 7.259, + 10.051, + 10.841, + 13.914, + 25.767, + 21.024, + 14.075, + 4.299, 0.0, 0.0, 0.0, @@ -95272,17 +95390,16 @@ 0.0, 0.0, -0.0, - -0.0, - 9.403, - 20.42, - 27.008, - 29.052, - 40.327, - 52.267, - 42.641, - 28.651, - 10.097, 0.0, + 2.192, + 7.679, + 11.07, + 12.249, + 15.525, + 27.04, + 21.981, + 14.558, + 4.783, 0.0, 0.0, 0.0, @@ -95297,15 +95414,16 @@ 0.0, 0.0, -0.0, - 10.312, - 21.065, - 27.448, - 29.334, - 41.002, - 52.306, - 42.806, - 28.973, - 10.042, + 0.0, + 2.249, + 7.538, + 10.734, + 11.753, + 14.796, + 26.407, + 21.471, + 14.248, + 4.416, 0.0, 0.0, 0.0, @@ -95321,15 +95439,15 @@ 0.0, -0.0, -0.0, - 8.968, - 18.807, - 25.685, - 28.596, - 40.323, - 53.31, - 43.558, - 29.134, - 9.09, + 0.755, + 6.399, + 9.97, + 11.101, + 12.446, + 23.08, + 10.905, + 7.856, + 2.016, 0.0, 0.0, 0.0, @@ -95343,17 +95461,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 8.941, - 19.747, - 25.796, - 27.769, - 37.378, - 51.826, - 42.618, - 28.587, - 8.488, + -0.0, + 0.742, + 6.763, + 10.232, + 11.531, + 12.475, + 26.022, + 20.14, + 12.344, + 3.126, 0.0, 0.0, 0.0, @@ -95369,15 +95487,15 @@ 0.0, 0.0, 0.0, - 8.751, - 19.3, - 24.771, - 26.32, - 35.205, - 50.504, - 41.208, - 27.587, - 8.425, + 1.848, + 8.14, + 11.914, + 13.635, + 15.462, + 28.758, + 23.507, + 15.4, + 4.656, 0.0, 0.0, 0.0, @@ -95391,17 +95509,19 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + 3.575, + 9.331, + 12.72, + 13.666, + 16.934, + 28.142, + 22.861, + 15.277, + 4.678, 0.0, 0.0, - 9.369, - 20.123, - 26.768, - 29.081, - 38.363, - 52.999, - 43.082, - 28.534, - 9.375, 0.0, 0.0, 0.0, @@ -95415,17 +95535,15 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 9.479, - 19.846, - 26.11, - 28.107, - 36.934, - 51.758, - 42.084, - 27.927, - 8.656, + 3.351, + 9.1, + 12.403, + 13.31, + 16.347, + 27.415, + 22.162, + 14.557, + 4.277, 0.0, 0.0, 0.0, @@ -95440,16 +95558,17 @@ 0.0, 0.0, -0.0, + -0.0, + 2.739, + 8.177, + 11.562, + 12.543, + 15.171, + 27.078, + 21.884, + 14.241, + 3.984, 0.0, - 6.552, - 17.615, - 24.614, - 26.829, - 32.329, - 45.237, - 21.373, - 15.397, - 3.951, 0.0, 0.0, 0.0, @@ -95463,17 +95582,16 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 6.526, - 18.328, - 25.127, - 27.673, - 32.384, - 51.002, - 39.475, - 24.195, - 6.128, + 2.558, + 7.909, + 10.853, + 11.673, + 13.965, + 17.525, + 19.251, + 10.957, + 3.743, 0.0, 0.0, 0.0, @@ -95489,17 +95607,15 @@ 0.0, 0.0, -0.0, - 8.694, - 21.027, - 28.423, - 31.797, - 38.239, - 56.366, - 46.074, - 30.184, - 9.126, - 0.0, - 0.0, + 2.174, + 0.171, + 9.684, + 10.927, + 13.405, + 26.319, + 21.531, + 13.987, + 1.198, 0.0, 0.0, 0.0, @@ -95513,16 +95629,17 @@ 0.0, 0.0, 0.0, - 12.079, - 23.36, - 30.004, - 31.858, - 41.123, - 55.159, - 44.808, - 29.943, - 9.169, + -0.0, 0.0, + 2.177, + 8.467, + 7.746, + -0.0, + -0.0, + 22.907, + 15.532, + 12.754, + 2.656, 0.0, 0.0, 0.0, @@ -95536,16 +95653,18 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + 1.813, + 7.803, + 11.254, + 12.192, + 12.937, + 27.209, + 22.047, + 14.408, + 3.565, 0.0, - 11.639, - 22.909, - 29.382, - 31.159, - 39.974, - 53.734, - 43.437, - 28.532, - 8.384, 0.0, 0.0, 0.0, @@ -95560,16 +95679,15 @@ 0.0, 0.0, 0.0, - -0.0, - 10.441, - 21.098, - 27.733, - 29.656, - 37.669, - 53.073, - 42.893, - 27.912, - 7.809, + 3.419, + 9.509, + 13.127, + 14.291, + 16.501, + 28.47, + 22.733, + 14.754, + 3.414, 0.0, 0.0, 0.0, @@ -95585,15 +95703,15 @@ 0.0, -0.0, -0.0, - 10.085, - 20.573, - 26.343, - 27.951, - 35.305, - 34.349, - 37.732, - 21.475, - 7.337, + 2.703, + 8.641, + 12.121, + 13.242, + 14.943, + 27.58, + 22.157, + 14.016, + 2.959, 0.0, 0.0, 0.0, @@ -95608,16 +95726,17 @@ 0.0, 0.0, 0.0, + -0.0, + 1.972, + 7.751, + 11.252, + 12.474, + 13.29, + 26.981, + 21.492, + 13.823, + 2.809, 0.0, - 9.334, - 5.407, - 24.053, - 26.489, - 34.208, - 51.585, - 42.2, - 27.414, - 2.347, 0.0, 0.0, 0.0, @@ -95632,17 +95751,15 @@ 0.0, 0.0, -0.0, - -0.0, - 9.339, - 21.668, - 20.253, - 3.182, - 1.2, - 53.521, - 30.443, - 24.998, - 5.205, - 0.0, + 1.688, + 7.246, + 10.464, + 11.315, + 11.775, + 25.955, + 20.964, + 13.725, + 2.74, 0.0, 0.0, 0.0, @@ -95655,18 +95772,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 8.626, - 20.365, - 27.129, - 28.968, - 33.291, - 53.33, - 43.212, - 28.24, - 6.986, 0.0, + -0.0, + 1.443, + 6.709, + 9.703, + 10.919, + 11.678, + 26.005, + 20.906, + 13.499, + 2.624, 0.0, 0.0, 0.0, @@ -95681,39 +95798,18 @@ 0.0, 0.0, -0.0, - 11.772, - 23.71, - 30.802, - 33.082, - 40.276, - 55.8, - 44.556, - 28.918, - 6.692, - 0.0, - 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.354, + 6.871, + 10.082, + 11.011, + 10.951, + 25.552, + 20.419, + 12.87, + 2.231, 0.0, 0.0, - 10.37, - 22.008, - 28.829, - 31.027, - 37.221, - 54.058, - 43.428, - 27.471, - 5.801, 0.0, 0.0, 0.0, @@ -95727,17 +95823,16 @@ 0.0, 0.0, 0.0, + 0.93, + 5.65, + 8.65, + 10.309, + 3.166, + 25.831, + 20.789, + 13.077, + 2.297, 0.0, - -0.0, - 8.937, - 20.264, - 27.125, - 29.52, - 33.983, - 52.883, - 42.124, - 27.094, - 5.506, 0.0, 0.0, 0.0, @@ -95752,16 +95847,16 @@ 0.0, 0.0, -0.0, + 1.619, + 7.363, + 11.092, + 12.317, + 12.397, + 26.901, + 21.501, + 13.383, + 2.165, 0.0, - 8.38, - 19.274, - 25.581, - 27.249, - 31.014, - 50.872, - 41.09, - 26.9, - 5.369, 0.0, 0.0, 0.0, @@ -95777,39 +95872,15 @@ 0.0, 0.0, -0.0, - 7.901, - 18.221, - 24.09, - 26.473, - 30.822, - 50.971, - 40.976, - 26.458, - 5.143, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + 5.913, + 10.139, + 11.413, + 10.421, + 15.396, + 19.775, + 11.699, + 0.09, 0.0, - 7.726, - 18.539, - 24.832, - 26.654, - 29.396, - 50.082, - 40.022, - 25.226, - 4.373, 0.0, 0.0, 0.0, @@ -95825,15 +95896,14 @@ 0.0, -0.0, 0.0, - 6.894, - 16.145, - 22.026, - 25.279, - 14.14, - 50.629, - 40.747, - 25.631, - 4.503, + 6.003, + 10.005, + 11.413, + 10.569, + 17.391, + 21.232, + 13.34, + 2.221, 0.0, 0.0, 0.0, @@ -95849,15 +95919,15 @@ 0.0, 0.0, 0.0, - 8.245, - 19.504, - 26.811, - 29.213, - 32.233, - 52.727, - 42.142, - 26.23, - 4.243, + 0.0, + 6.335, + 9.876, + 5.551, + 1.776, + 2.571, + 14.721, + 8.181, + 0.088, 0.0, 0.0, 0.0, @@ -95873,16 +95943,15 @@ 0.0, 0.0, 0.0, - 3.615, - 16.662, - 24.945, - 27.441, - 25.496, - 34.494, - 38.758, - 22.93, - 0.177, + 0.312, 0.0, + 10.418, + 11.951, + 11.186, + 13.779, + 21.617, + 13.37, + 0.531, 0.0, 0.0, 0.0, @@ -95898,15 +95967,15 @@ 0.0, 0.0, -0.0, - 16.838, - 24.682, - 27.441, - 25.787, - 42.019, - 41.615, - 26.146, - 4.354, - 0.0, + 0.499, + 6.773, + 10.481, + 11.898, + 10.969, + 26.066, + 21.073, + 13.015, + 1.775, 0.0, 0.0, 0.0, @@ -95922,38 +95991,18 @@ 0.0, 0.0, -0.0, - 17.489, - 24.43, - 15.951, - 8.554, - 12.973, - 28.853, - 16.034, - 0.172, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + 2.861, + 9.366, + 13.063, + 14.252, + 14.304, + 28.531, + 22.922, + 14.293, + 2.143, 0.0, 0.0, - 5.683, 0.0, - 25.492, - 28.496, - 26.996, - 34.94, - 42.369, - 26.204, - 1.041, 0.0, 0.0, 0.0, @@ -95966,18 +96015,18 @@ 0.0, 0.0, 0.0, + 1.808, + 7.927, + 11.654, + 12.844, + 12.372, + 27.197, + 21.788, + 11.094, + 0.292, 0.0, 0.0, 0.0, - 6.049, - 18.346, - 25.615, - 28.392, - 28.368, - 52.155, - 41.303, - 25.509, - 3.479, 0.0, 0.0, 0.0, @@ -95991,17 +96040,14 @@ 0.0, 0.0, 0.0, + 7.621, + 3.836, + 6.734, 0.0, + -0.0, 0.0, - 10.68, - 23.429, - 30.675, - 33.006, - 35.97, - 55.921, - 44.926, - 28.015, - 4.2, + 10.884, + 0.245, 0.0, 0.0, 0.0, @@ -96016,17 +96062,16 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 8.616, - 20.609, - 27.914, - 30.245, - 32.183, - 53.307, - 42.705, - 21.744, - 0.572, + 6.163, + 0.811, + 1.733, 0.0, + 7.688, + 17.19, + 12.892, + 1.319, 0.0, 0.0, 0.0, @@ -96040,16 +96085,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 20.009, - 12.59, - 18.27, -0.0, - 0.0, - 6.376, - 21.333, - 0.481, + 0.59, + 6.508, + 10.321, + 6.463, + 1.293, + 17.458, + 7.921, + 2.754, + 0.019, 0.0, 0.0, 0.0, @@ -96065,15 +96111,16 @@ 0.0, 0.0, -0.0, + 0.694, + 7.132, + 10.475, + 11.603, + 10.49, + 25.39, + 20.829, + 12.805, + 1.389, 0.0, - 17.152, - 6.661, - 8.469, - -0.0, - 20.38, - 41.388, - 25.269, - 2.585, 0.0, 0.0, 0.0, @@ -96089,16 +96136,14 @@ 0.0, 0.0, -0.0, - 6.228, - 17.828, - 25.302, - 17.74, - 9.811, - 34.875, - 15.526, - 5.397, - 0.037, - 0.0, + -0.0, + 9.738, + 11.297, + 10.421, + 10.006, + 20.894, + 8.382, + 0.247, 0.0, 0.0, 0.0, @@ -96113,16 +96158,16 @@ 0.0, 0.0, 0.0, - 6.433, - 19.05, - 25.603, - 27.813, - 27.054, - 51.205, - 40.825, - 25.097, - 2.723, 0.0, + 1.682, + 8.025, + 12.014, + 13.452, + 12.36, + 27.348, + 22.136, + 13.819, + 0.273, 0.0, 0.0, 0.0, @@ -96138,14 +96183,15 @@ 0.0, 0.0, 0.0, - 0.536, - 24.159, - 27.215, - 25.496, - 32.08, - 40.953, - 16.43, - 0.485, + 1.145, + 7.39, + 10.97, + 12.469, + 11.631, + 20.09, + 22.116, + 13.838, + 1.63, 0.0, 0.0, 0.0, @@ -96161,15 +96207,15 @@ 0.0, 0.0, -0.0, - 8.368, - 20.8, - 28.619, - 31.437, - 31.162, - 54.6, - 43.386, - 27.085, - 0.534, + 1.098, + 6.787, + 9.914, + 11.514, + 10.801, + 19.231, + 21.136, + 13.308, + 1.56, 0.0, 0.0, 0.0, @@ -96185,15 +96231,15 @@ 0.0, 0.0, 0.0, - 7.316, - 19.555, - 26.573, - 29.512, - 27.868, - 42.239, - 43.347, - 27.122, - 3.194, + 0.779, + 6.508, + 9.793, + 10.535, + 9.494, + 18.685, + 20.679, + 13.254, + 1.677, 0.0, 0.0, 0.0, @@ -96208,16 +96254,17 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + -0.0, + 4.526, + 3.355, + 1.827, + 6.158, + 19.949, + 12.522, + 1.248, 0.0, - 7.224, - 18.375, - 24.503, - 27.639, - 26.241, - 40.556, - 41.426, - 26.084, - 3.058, 0.0, 0.0, 0.0, @@ -96231,17 +96278,18 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + 5.598, + 9.751, + 11.564, + 10.869, + 11.455, + 21.509, + 13.681, + 1.682, 0.0, 0.0, - 6.599, - 17.827, - 24.265, - 25.721, - 23.68, - 39.486, - 40.532, - 25.977, - 3.288, 0.0, 0.0, 0.0, @@ -96256,16 +96304,16 @@ 0.0, 0.0, 0.0, + 6.222, + 9.995, + 11.688, + 10.882, + 24.214, + 21.254, + 4.973, + 0.017, 0.0, 0.0, - 1.218, - 13.943, - 11.647, - 8.653, - 23.858, - 39.1, - 24.543, - 2.446, 0.0, 0.0, 0.0, @@ -96282,39 +96330,12 @@ 0.0, -0.0, -0.0, - 16.044, - 24.184, - 27.737, - 26.374, - 30.386, - 42.159, - 26.814, - 3.296, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, -0.0, - 4.877, - 17.267, - 24.662, - 27.98, - 26.4, - 50.518, - 41.658, - 9.746, - 0.033, + -0.0, 0.0, + -0.0, + 2.116, + 1.331, 0.0, 0.0, 0.0, @@ -96328,16 +96349,17 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, -0.0, -0.0, + 0.288, + 3.605, + 1.863, + 3.611, + 10.895, + 5.574, + 0.679, 0.0, - -0.0, - 0.0, - 4.148, - 2.609, 0.0, 0.0, 0.0, @@ -96353,16 +96375,15 @@ 0.0, 0.0, 0.0, - 3.246, - 5.636, - 12.138, - 8.723, - 12.15, - 26.043, - 10.925, - 1.33, + -0.0, + -0.0, 0.0, + -0.0, 0.0, + 0.602, + -0.0, + 12.256, + 0.516, 0.0, 0.0, 0.0, @@ -96379,21 +96400,14 @@ 0.0, 0.0, -0.0, - 0.0, + 6.308, -0.0, -0.0, - 6.251, + 0.775, -0.0, - 24.022, - 1.01, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, 0.0, + 13.343, + 0.152, 0.0, 0.0, 0.0, @@ -96401,21 +96415,23 @@ 0.0, 0.0, 0.0, - -0.0, - 17.436, 0.0, - 2.829, - 6.59, 0.0, - -0.0, - 26.153, - 0.298, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.436, + 7.516, + 11.518, + 13.222, + 12.421, + 24.733, + 22.572, + 13.814, + 0.177, 0.0, 0.0, 0.0, @@ -96424,16 +96440,6 @@ 0.0, 0.0, 0.0, - -0.0, - 5.927, - 19.803, - 27.648, - 30.987, - 29.417, - 51.338, - 44.242, - 27.075, - 0.347, 0.0, 0.0, 0.0, @@ -96442,26 +96448,20 @@ 0.0, 0.0, 0.0, + 6.146, + 9.946, + 11.702, + 4.702, + 23.353, + 14.339, + 9.608, + 1.117, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - -0.0, - 4.591, - 17.117, - 24.567, - 28.009, - 14.288, - 49.117, - 28.104, - 18.831, - 2.189, - 0.0, - 0.0, - 0.0, - 0.0, 0.0, 0.0, 0.0, @@ -96472,16 +96472,15 @@ 0.0, 0.0, 0.0, + 6.585, + 10.488, + 12.11, + 11.263, + 14.121, + 21.552, + 13.378, + 1.266, 0.0, - 4.817, - 17.979, - 25.628, - 28.807, - 27.147, - 30.793, - 42.241, - 26.221, - 2.482, 0.0, 0.0, 0.0, @@ -96496,16 +96495,16 @@ 0.0, 0.0, 0.0, + 0.347, + 7.095, + 11.348, + 13.019, + 12.1, + 23.977, + 22.256, + 13.674, + 1.282, 0.0, - 5.753, - 18.978, - 27.314, - 30.589, - 28.788, - 49.857, - 43.622, - 26.801, - 2.512, 0.0, 0.0, 0.0, @@ -96520,16 +96519,15 @@ 0.0, 0.0, 0.0, - -0.0, - 6.077, - 19.418, - 22.656, - 22.248, - 28.098, - 38.385, - 43.233, - 27.44, - 2.862, + 0.513, + 7.32, + 8.972, + 8.763, + 11.748, + 18.124, + 22.058, + 14.0, + 1.46, 0.0, 0.0, 0.0, @@ -96544,16 +96542,17 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + 6.271, + 10.428, + 12.433, + 12.116, + 4.016, + 5.992, + 13.643, + 1.244, 0.0, - 4.119, - 17.364, - 25.511, - 29.44, - 28.819, - 11.688, - 11.743, - 26.74, - 2.438, 0.0, 0.0, 0.0, @@ -96569,16 +96568,14 @@ 0.0, 0.0, -0.0, - 3.946, - 5.538, - -0.0, - 28.626, - 0.0, + 0.238, -0.0, + 12.018, -0.0, - 12.014, - 1.73, 0.0, + -0.0, + 6.13, + 0.883, 0.0, 0.0, 0.0, @@ -96593,16 +96590,16 @@ 0.0, 0.0, 0.0, - 4.875, - 18.895, - 27.406, - 31.13, - 29.671, - 48.99, - 44.107, - 27.955, - 2.984, + -0.0, 0.0, + 7.053, + 11.395, + 13.295, + 12.551, + 23.434, + 22.504, + 14.263, + 1.523, 0.0, 0.0, 0.0, @@ -96617,16 +96614,16 @@ 0.0, 0.0, 0.0, - 5.455, - 18.972, - 27.367, - 30.623, - 28.976, - 48.686, - 43.936, - 27.891, - 3.245, 0.0, + 0.195, + 7.092, + 11.375, + 13.036, + 12.196, + 23.38, + 22.416, + 14.23, + 1.655, 0.0, 0.0, 0.0, @@ -96642,15 +96639,15 @@ 0.0, 0.0, 0.0, - 16.751, - 24.032, - 26.165, - 25.421, - 29.559, - 42.267, - 26.814, - 2.967, 0.0, + 5.959, + 9.674, + 10.762, + 10.382, + 11.033, + 21.565, + 13.68, + 1.514, 0.0, 0.0, 0.0, @@ -96666,14 +96663,15 @@ 0.0, 0.0, -0.0, - 17.215, - 8.345, - 7.767, - 5.078, + 0.0, + 6.195, + 1.67, + 1.375, + 0.003, -0.0, - 13.585, - 27.248, - 0.436, + 2.883, + 13.902, + 0.223, 0.0, 0.0, 0.0, @@ -96688,16 +96686,16 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 4.847, - 18.927, - 27.874, - 31.806, - 30.681, - 49.205, - 45.738, - 29.44, - 4.245, + 7.069, + 11.634, + 13.64, + 13.066, + 23.53, + 23.336, + 15.02, + 2.166, 0.0, 0.0, 0.0, @@ -96713,15 +96711,16 @@ 0.0, 0.0, -0.0, - 4.856, - 18.095, - 26.031, - 29.119, - 27.63, - 46.857, - 43.779, - 28.434, - 0.515, + -0.0, + 6.645, + 10.693, + 12.269, + 11.509, + 22.337, + 22.336, + 14.507, + 0.263, + 0.0, 0.0, 0.0, 0.0, @@ -96737,15 +96736,14 @@ 0.0, 0.0, -0.0, - -0.0, - 15.995, - 12.879, - 12.961, - 26.939, - 16.962, - 38.23, - 27.997, - 4.088, + 5.573, + 3.983, + 4.025, + 11.157, + 6.066, + 18.045, + 14.284, + 2.086, 0.0, 0.0, 0.0, @@ -96761,15 +96759,15 @@ 0.0, 0.0, 0.0, - 4.455, - 17.837, - 25.9, - 28.978, - 27.539, - 45.665, - 43.835, - 28.459, - 3.956, + 0.0, + 6.513, + 10.626, + 12.197, + 11.463, + 21.523, + 22.365, + 14.52, + 2.018, 0.0, 0.0, 0.0, @@ -96785,15 +96783,15 @@ 0.0, 0.0, -0.0, - 3.274, - 16.52, - 22.742, - 25.267, - 24.875, - 43.403, - 41.963, - 26.794, - 3.136, + -0.0, + 5.841, + 9.016, + 10.304, + 10.104, + 19.766, + 21.41, + 13.67, + 1.6, 0.0, 0.0, 0.0, @@ -96810,14 +96808,15 @@ 0.0, -0.0, 0.0, + -0.0, + 5.278, + 11.696, + 4.043, + 9.46, + 15.509, + 14.924, + 1.582, 0.0, - 15.416, - 27.996, - 12.996, - 23.613, - 38.332, - 29.251, - 3.1, 0.0, 0.0, 0.0, @@ -96833,15 +96832,14 @@ 0.0, 0.0, -0.0, - 1.14, - 15.696, - 23.887, - 11.604, - 27.066, - 43.995, - 43.518, - 27.835, - 3.986, + 5.42, + 9.6, + 3.333, + 11.222, + 18.98, + 22.203, + 14.202, + 2.034, 0.0, 0.0, 0.0, @@ -96856,16 +96854,16 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 2.178, - 15.78, - 24.16, - 27.863, - 26.746, - 19.386, - 35.382, - 8.688, - 0.211, + 5.463, + 9.739, + 11.628, + 11.058, + 6.954, + 18.052, + 4.433, + 0.108, 0.0, 0.0, 0.0, @@ -96881,16 +96879,15 @@ 0.0, 0.0, -0.0, - 1.356, - 15.997, - 24.09, - 27.865, - 26.878, - 43.893, - 38.632, - 27.822, - 0.957, 0.0, + 5.574, + 9.703, + 11.629, + 11.125, + 19.038, + 19.71, + 14.195, + 0.489, 0.0, 0.0, 0.0, @@ -96905,15 +96902,16 @@ 0.0, 0.0, 0.0, - 4.736, - 18.906, - 27.744, - 31.115, - 16.966, - 27.135, - 29.567, - 11.956, - 0.401, + -0.0, + -0.0, + 7.058, + 11.567, + 13.287, + 6.068, + 12.213, + 15.085, + 6.1, + 0.204, 0.0, 0.0, 0.0, @@ -96929,15 +96927,15 @@ 0.0, 0.0, -0.0, - 4.307, - 18.302, - 26.646, - 19.176, - 22.067, - 46.266, - 45.32, - 30.476, - 6.111, + -0.0, + 6.75, + 11.007, + 7.196, + 8.671, + 21.755, + 23.123, + 15.549, + 3.118, 0.0, 0.0, 0.0, @@ -96952,17 +96950,16 @@ 0.0, 0.0, 0.0, - -0.0, - 2.236, - 15.792, - 10.449, - 13.207, - 9.39, - 23.939, - 25.58, - 12.103, - 0.437, 0.0, + -0.0, + 5.469, + 2.743, + 4.151, + 2.203, + 9.306, + 13.051, + 6.175, + 0.223, 0.0, 0.0, 0.0, @@ -96980,14 +96977,13 @@ 0.0, -0.0, -0.0, - 8.358, - 15.162, - -0.0, -0.0, - 28.319, - 1.342, - 0.0, + 1.676, + 5.148, 0.0, + -0.0, + 14.448, + 0.684, 0.0, 0.0, 0.0, @@ -97002,16 +96998,16 @@ 0.0, 0.0, 0.0, - 1.699, -0.0, 0.0, -0.0, -0.0, - -0.0, - 6.439, - 0.226, 0.0, + -0.0, 0.0, + -0.0, + 3.285, + 0.115, 0.0, 0.0, 0.0, @@ -97024,17 +97020,18 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, 0.0, -0.0, 0.0, + -0.0, 0.0, -0.0, - 4.003, - 4.854, 0.0, + -0.0, + -0.0, + 2.042, + 2.476, 0.0, 0.0, 0.0, @@ -97048,16 +97045,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, 0.0, -0.0, -0.0, + 0.0, + 0.0, -0.0, - -0.0, - 6.401, - 0.304, + 0.0, + 3.266, + 0.155, 0.0, 0.0, 0.0, @@ -97074,14 +97072,14 @@ 0.0, -0.0, -0.0, - 13.874, - 23.884, - 28.014, - 11.32, - 24.822, - 44.869, - 20.658, - 8.033, + 4.491, + 9.598, + 11.705, + 3.188, + 8.616, + 22.893, + 10.54, + 4.098, 0.0, 0.0, 0.0, @@ -97090,12 +97088,10 @@ 0.0, 0.0 ], - "size_kw": 81.6667, - "lifecycle_om_cost_after_tax_bau": 6256.0, + "size_kw": 41.6667, "name": "ground", - "annual_energy_produced_kwh": 145904.83, - "year_one_energy_produced_kwh_bau": 74767.0, - "year_one_energy_produced_kwh": 152649.0, + "annual_energy_produced_kwh": 74441.1, + "year_one_energy_produced_kwh": 77882.0, "annual_energy_exported_kwh": 0.0, "electric_to_storage_series_kw": [ 0.0, @@ -97105,18 +97101,11 @@ 0.0, 0.0, 0.0, - 2.232, - 31.876, - 31.876, - 31.876, - 12.998, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + 1.139, + 17.944, + 18.851, + 18.851, + 8.774, 0.0, 0.0, 0.0, @@ -97129,13 +97118,6 @@ 0.0, 0.0, 0.0, - 2.198, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 15.795, 0.0, 0.0, 0.0, @@ -97143,6 +97125,13 @@ 0.0, 0.0, 0.0, + 1.122, + 18.222, + 18.851, + 18.851, + 18.851, + 18.851, + 10.148, 0.0, 0.0, 0.0, @@ -97153,15 +97142,6 @@ 0.0, 0.0, 0.0, - 2.189, - 15.527, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.276, - 0.0, 0.0, 0.0, 0.0, @@ -97169,6 +97149,14 @@ 0.0, 0.0, 0.0, + 1.117, + 7.922, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 1.601, 0.0, 0.0, 0.0, @@ -97177,13 +97165,6 @@ 0.0, 0.0, 0.0, - 7.961, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.032, 0.0, 0.0, 0.0, @@ -97192,6 +97173,13 @@ 0.0, 0.0, 0.0, + 4.062, + 18.342, + 18.851, + 18.851, + 18.851, + 18.851, + 7.087, 0.0, 0.0, 0.0, @@ -97225,37 +97213,6 @@ 0.0, 0.0, 0.0, - 2.677, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 15.316, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.353, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.64, 0.0, 0.0, 0.0, @@ -97264,29 +97221,13 @@ 0.0, 0.0, 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.795, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.198, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + 1.366, + 17.493, + 18.851, + 18.851, + 18.736, + 18.851, + 10.747, 0.0, 0.0, 0.0, @@ -97297,13 +97238,6 @@ 0.0, 0.0, 0.0, - 2.067, - 16.044, - 31.876, - 31.876, - 31.876, - 31.876, - 31.759, 0.0, 0.0, 0.0, @@ -97311,6 +97245,13 @@ 0.0, 0.0, 0.0, + 3.752, + 16.871, + 18.851, + 18.851, + 18.851, + 18.851, + 8.868, 0.0, 0.0, 0.0, @@ -97321,13 +97262,6 @@ 0.0, 0.0, 0.0, - 3.136, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.856, 0.0, 0.0, 0.0, @@ -97335,6 +97269,13 @@ 0.0, 0.0, 0.0, + 3.977, + 17.996, + 18.851, + 18.851, + 18.851, + 18.851, + 7.518, 0.0, 0.0, 0.0, @@ -97345,14 +97286,6 @@ 0.0, 0.0, 0.0, - 0.306, - 2.02, - 13.174, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -97360,6 +97293,14 @@ 0.0, 0.0, 0.0, + 1.054, + 8.186, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 1.4, 0.0, 0.0, 0.0, @@ -97369,13 +97310,6 @@ 0.0, 0.0, 0.0, - 7.043, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.95, 0.0, 0.0, 0.0, @@ -97383,6 +97317,13 @@ 0.0, 0.0, 0.0, + 1.6, + 17.487, + 18.851, + 18.851, + 18.851, + 18.851, + 10.404, 0.0, 0.0, 0.0, @@ -97393,13 +97334,6 @@ 0.0, 0.0, 0.0, - 7.369, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.624, 0.0, 0.0, 0.0, @@ -97407,6 +97341,14 @@ 0.0, 0.0, 0.0, + 0.156, + 1.03, + 6.721, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -97417,19 +97359,19 @@ 0.0, 0.0, 0.0, - 8.034, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.959, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.593, + 16.798, + 18.851, + 18.851, + 18.851, + 18.851, + 9.099, 0.0, 0.0, 0.0, @@ -97441,19 +97383,19 @@ 0.0, 0.0, 0.0, - 3.461, - 31.876, - 31.876, - 31.876, - 31.876, - 26.914, - 19.495, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.76, + 16.932, + 18.851, + 18.851, + 18.851, + 18.851, + 8.8, 0.0, 0.0, 0.0, @@ -97465,19 +97407,19 @@ 0.0, 0.0, 0.0, - 7.146, - 31.225, - 31.876, - 31.876, - 31.876, - 31.876, - 11.498, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 4.099, + 17.658, + 18.851, + 18.851, + 18.851, + 18.851, + 7.735, 0.0, 0.0, 0.0, @@ -97489,19 +97431,19 @@ 0.0, 0.0, 0.0, - 7.53, - 31.529, - 31.876, - 31.876, - 31.876, - 31.876, - 10.81, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.766, + 16.267, + 18.851, + 18.851, + 18.851, + 13.732, + 16.578, 0.0, 0.0, 0.0, @@ -97513,19 +97455,19 @@ 0.0, 0.0, 0.0, - 5.699, - 23.467, - 25.713, - 31.876, - 31.876, - 31.876, - 26.866, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.646, + 15.931, + 18.851, + 18.851, + 18.851, + 18.851, + 9.914, 0.0, 0.0, 0.0, @@ -97537,20 +97479,19 @@ 0.0, 0.0, 0.0, - 6.222, - 3.098, - 14.268, - 24.046, - 21.599, - 31.876, - 31.876, - 26.254, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.842, + 16.086, + 18.851, + 18.851, + 18.851, + 18.851, + 9.563, 0.0, 0.0, 0.0, @@ -97561,14 +97502,6 @@ 0.0, 0.0, 0.0, - 7.654, - 31.876, - 31.876, - 31.876, - 31.876, - 23.103, - 4.172, - 6.109, 0.0, 0.0, 0.0, @@ -97576,6 +97509,14 @@ 0.0, 0.0, 0.0, + 2.908, + 11.973, + 13.119, + 18.851, + 18.851, + 18.851, + 14.971, + 5.372, 0.0, 0.0, 0.0, @@ -97585,14 +97526,6 @@ 0.0, 0.0, 0.0, - 2.695, - 13.218, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.08, 0.0, 0.0, 0.0, @@ -97600,6 +97533,14 @@ 0.0, 0.0, 0.0, + 3.174, + 1.581, + 7.28, + 12.268, + 11.02, + 18.851, + 18.851, + 13.395, 0.0, 0.0, 0.0, @@ -97609,13 +97550,6 @@ 0.0, 0.0, 0.0, - 8.909, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.084, 0.0, 0.0, 0.0, @@ -97623,6 +97557,14 @@ 0.0, 0.0, 0.0, + 3.905, + 16.308, + 18.851, + 18.851, + 18.851, + 11.787, + 2.128, + 3.117, 0.0, 0.0, 0.0, @@ -97633,19 +97575,20 @@ 0.0, 0.0, 0.0, - 8.463, - 31.812, - 31.876, - 31.876, - 31.876, - 31.876, - 9.595, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.375, + 6.744, + 17.714, + 18.851, + 18.851, + 18.851, + 18.19, + 4.32, 0.0, 0.0, 0.0, @@ -97657,19 +97600,18 @@ 0.0, 0.0, 0.0, - 1.306, - 12.259, - 13.412, - 20.428, - 20.384, - 21.601, - 17.878, - 5.975, 0.0, 0.0, 0.0, 0.0, 0.0, + 4.545, + 17.05, + 18.851, + 18.851, + 18.851, + 18.851, + 7.896, 0.0, 0.0, 0.0, @@ -97682,18 +97624,18 @@ 0.0, 0.0, 0.0, - 3.942, - 11.808, - 7.379, - 12.797, - 0.334, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 4.318, + 16.231, + 18.851, + 18.851, + 18.851, + 18.851, + 8.943, 0.0, 0.0, 0.0, @@ -97705,20 +97647,20 @@ 0.0, 0.0, 0.0, - 7.856, - 18.51, - 31.876, - 1.78, - 31.876, - 31.876, - 31.876, - 0.871, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.666, + 6.255, + 6.843, + 10.422, + 10.4, + 11.021, + 9.121, + 3.048, 0.0, 0.0, 0.0, @@ -97729,13 +97671,6 @@ 0.0, 0.0, 0.0, - 9.833, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 8.16, 0.0, 0.0, 0.0, @@ -97743,6 +97678,13 @@ 0.0, 0.0, 0.0, + 2.011, + 6.024, + 3.765, + 6.529, + 0.171, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -97753,19 +97695,20 @@ 0.0, 0.0, 0.0, - 11.689, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 6.303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 4.008, + 9.444, + 17.762, + 0.908, + 18.851, + 18.851, + 17.849, + 0.444, 0.0, 0.0, 0.0, @@ -97777,18 +97720,18 @@ 0.0, 0.0, 0.0, - 11.653, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 6.34, 0.0, 0.0, 0.0, 0.0, 0.0, + 5.017, + 18.008, + 18.851, + 18.851, + 18.851, + 18.851, + 6.466, 0.0, 0.0, 0.0, @@ -97801,18 +97744,18 @@ 0.0, 0.0, 0.0, - 3.503, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 14.49, 0.0, 0.0, 0.0, 0.0, 0.0, + 5.964, + 18.587, + 18.851, + 18.851, + 18.851, + 18.851, + 4.94, 0.0, 0.0, 0.0, @@ -97826,17 +97769,17 @@ 0.0, 0.0, 0.0, - 1.746, - 20.339, - 31.876, - 31.876, - 31.876, - 31.876, - 27.783, 0.0, 0.0, 0.0, 0.0, + 5.945, + 18.252, + 18.851, + 18.851, + 18.851, + 18.851, + 5.294, 0.0, 0.0, 0.0, @@ -97849,18 +97792,18 @@ 0.0, 0.0, 0.0, - 8.578, - 30.29, - 31.876, - 31.876, - 31.876, - 31.876, - 11.001, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.787, + 17.145, + 18.851, + 18.851, + 18.851, + 18.851, + 10.559, 0.0, 0.0, 0.0, @@ -97873,19 +97816,19 @@ 0.0, 0.0, 0.0, - 12.345, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 5.648, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.891, + 10.377, + 17.093, + 18.851, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -97897,18 +97840,18 @@ 0.0, 0.0, 0.0, - 13.545, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 4.448, 0.0, 0.0, 0.0, 0.0, 0.0, + 4.376, + 15.454, + 18.851, + 18.851, + 18.851, + 18.851, + 9.661, 0.0, 0.0, 0.0, @@ -97921,18 +97864,18 @@ 0.0, 0.0, 0.0, - 12.879, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 5.114, 0.0, 0.0, 0.0, 0.0, 0.0, + 6.298, + 18.368, + 18.851, + 18.851, + 18.851, + 18.851, + 4.825, 0.0, 0.0, 0.0, @@ -97945,19 +97888,18 @@ 0.0, 0.0, 0.0, - 2.82, - 17.011, - 28.428, - 31.876, - 31.876, - 31.876, - 31.876, - 1.611, 0.0, 0.0, 0.0, 0.0, 0.0, + 6.911, + 18.44, + 18.851, + 18.851, + 18.851, + 18.851, + 4.14, 0.0, 0.0, 0.0, @@ -97969,19 +97911,19 @@ 0.0, 0.0, 0.0, - 13.157, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 4.836, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 6.571, + 17.708, + 18.851, + 18.851, + 18.851, + 18.851, + 5.212, 0.0, 0.0, 0.0, @@ -97993,19 +97935,20 @@ 0.0, 0.0, 0.0, - 6.936, - 24.128, - 31.876, - 31.876, - 31.876, - 31.876, - 18.805, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.439, + 8.679, + 14.504, + 18.851, + 18.851, + 18.851, + 18.818, + 4.902, 0.0, 0.0, 0.0, @@ -98017,19 +97960,18 @@ 0.0, 0.0, 0.0, - 6.048, - 14.344, - 28.422, - 28.78, - 23.002, - 31.876, - 31.876, - 13.026, 0.0, 0.0, 0.0, 0.0, 0.0, + 6.713, + 17.155, + 18.851, + 18.851, + 18.851, + 18.851, + 5.624, 0.0, 0.0, 0.0, @@ -98041,20 +97983,19 @@ 0.0, 0.0, 0.0, - 12.045, - 22.708, - 31.876, - 31.876, - 31.876, - 11.601, - 13.034, - 7.213, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.539, + 12.31, + 17.724, + 18.851, + 18.851, + 18.851, + 14.769, 0.0, 0.0, 0.0, @@ -98065,14 +98006,6 @@ 0.0, 0.0, 0.0, - 1.593, - 13.825, - 6.085, - 14.029, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, @@ -98080,6 +98013,14 @@ 0.0, 0.0, 0.0, + 3.086, + 7.319, + 14.501, + 14.684, + 11.736, + 18.851, + 18.851, + 12.815, 0.0, 0.0, 0.0, @@ -98090,18 +98031,20 @@ 0.0, 0.0, 0.0, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 17.993, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 6.146, + 11.586, + 17.337, + 18.174, + 18.851, + 5.919, + 6.65, + 3.68, 0.0, 0.0, 0.0, @@ -98113,18 +98056,19 @@ 0.0, 0.0, 0.0, - 12.473, - 31.876, - 29.934, - 31.876, - 31.876, - 31.876, - 7.462, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.813, + 7.053, + 3.105, + 7.157, + 18.851, + 18.736, + 18.851, + 17.452, 0.0, 0.0, 0.0, @@ -98137,18 +98081,17 @@ 0.0, 0.0, 0.0, - 14.273, - 31.876, - 31.876, - 24.006, - 31.876, - 31.876, - 11.591, 0.0, 0.0, 0.0, 0.0, 0.0, + 16.997, + 18.851, + 18.851, + 18.851, + 18.851, + 12.494, 0.0, 0.0, 0.0, @@ -98161,18 +98104,18 @@ 0.0, 0.0, 0.0, - 15.351, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.642, 0.0, 0.0, 0.0, 0.0, 0.0, + 6.364, + 16.488, + 15.272, + 18.851, + 18.851, + 18.851, + 10.218, 0.0, 0.0, 0.0, @@ -98185,18 +98128,18 @@ 0.0, 0.0, 0.0, - 4.993, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 7.282, + 17.701, + 18.851, + 12.248, + 18.851, + 18.851, + 11.111, 0.0, 0.0, 0.0, @@ -98209,18 +98152,18 @@ 0.0, 0.0, 0.0, - 15.838, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.155, 0.0, 0.0, 0.0, 0.0, 0.0, + 7.832, + 18.392, + 18.851, + 18.851, + 18.851, + 18.851, + 3.268, 0.0, 0.0, 0.0, @@ -98233,18 +98176,18 @@ 0.0, 0.0, 0.0, - 15.432, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.561, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.547, + 18.655, + 18.851, + 18.851, + 18.851, + 18.851, + 8.288, 0.0, 0.0, 0.0, @@ -98257,19 +98200,18 @@ 0.0, 0.0, 0.0, - 4.19, - 21.148, - 26.483, - 31.876, - 29.148, - 16.643, - 31.876, - 16.01, 0.0, 0.0, 0.0, 0.0, 0.0, + 8.08, + 17.898, + 18.851, + 18.851, + 18.851, + 18.851, + 3.513, 0.0, 0.0, 0.0, @@ -98282,18 +98224,18 @@ 0.0, 0.0, 0.0, - 1.957, - 1.547, - 2.061, - 7.237, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 7.874, + 17.905, + 18.851, + 18.851, + 18.851, + 18.851, + 3.713, 0.0, 0.0, 0.0, @@ -98305,19 +98247,20 @@ 0.0, 0.0, 0.0, - 16.097, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 1.895, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.138, + 10.79, + 13.512, + 17.96, + 14.871, + 8.491, + 18.507, + 18.625, 0.0, 0.0, 0.0, @@ -98329,19 +98272,19 @@ 0.0, 0.0, 0.0, - 15.352, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.641, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.998, + 0.789, + 1.052, + 3.692, + 18.851, + 18.851, + 18.851, 0.0, 0.0, 0.0, @@ -98353,19 +98296,18 @@ 0.0, 0.0, 0.0, - 15.225, - 10.512, - 9.869, - 6.742, - 31.876, - 31.876, - 31.876, - 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, + 8.213, + 18.032, + 18.851, + 18.851, + 18.851, + 18.851, + 3.246, 0.0, 0.0, 0.0, @@ -98377,18 +98319,19 @@ 0.0, 0.0, 0.0, - 18.303, - 31.876, - 31.876, - 31.876, - 31.876, - 31.566, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 7.833, + 17.419, + 18.851, + 18.851, + 18.851, + 18.851, + 4.24, 0.0, 0.0, 0.0, @@ -98401,17 +98344,19 @@ 0.0, 0.0, 0.0, - 18.404, - 31.876, - 31.876, - 31.876, - 31.876, - 31.465, 0.0, 0.0, 0.0, 0.0, 0.0, + 7.768, + 5.363, + 5.035, + 3.44, + 18.851, + 18.851, + 18.851, + 16.745, 0.0, 0.0, 0.0, @@ -98425,16 +98370,16 @@ 0.0, 0.0, 0.0, - 17.452, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.541, 0.0, 0.0, 0.0, + 9.338, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 1.302, 0.0, 0.0, 0.0, @@ -98449,16 +98394,16 @@ 0.0, 0.0, 0.0, - 17.086, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.906, 0.0, 0.0, 0.0, + 9.39, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 1.251, 0.0, 0.0, 0.0, @@ -98473,16 +98418,16 @@ 0.0, 0.0, 0.0, - 0.293, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 17.7, 0.0, 0.0, 0.0, + 8.904, + 18.739, + 18.851, + 18.851, + 18.851, + 18.851, + 1.848, 0.0, 0.0, 0.0, @@ -98497,15 +98442,16 @@ 0.0, 0.0, 0.0, - 19.386, - 31.876, - 31.876, - 31.876, - 31.876, - 30.483, 0.0, 0.0, 0.0, + 8.718, + 18.6, + 18.851, + 18.851, + 18.851, + 18.851, + 2.173, 0.0, 0.0, 0.0, @@ -98521,16 +98467,15 @@ 0.0, 0.0, 0.0, - 2.006, - 22.408, - 17.817, - 24.96, - 31.876, - 5.358, - 31.876, - 22.334, 0.0, 0.0, + 0.149, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 10.491, 0.0, 0.0, 0.0, @@ -98545,16 +98490,16 @@ 0.0, 0.0, 0.0, - 5.09, - 21.122, - 26.598, - 31.876, - 31.876, - 31.876, - 28.936, 0.0, 0.0, 0.0, + 9.891, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.75, 0.0, 0.0, 0.0, @@ -98568,18 +98513,18 @@ 0.0, 0.0, 0.0, - 0.049, - 8.037, - 21.429, - 31.876, - 31.876, - 31.876, - 31.876, - 20.354, 0.0, 0.0, 0.0, 0.0, + 1.024, + 11.433, + 9.09, + 12.735, + 18.851, + 2.734, + 18.763, + 11.395, 0.0, 0.0, 0.0, @@ -98592,17 +98537,18 @@ 0.0, 0.0, 0.0, - 0.38, - 18.101, - 31.876, - 31.876, - 31.876, - 31.876, - 31.388, 0.0, 0.0, 0.0, 0.0, + 2.597, + 10.776, + 13.57, + 17.305, + 18.851, + 18.729, + 17.524, + 5.543, 0.0, 0.0, 0.0, @@ -98616,15 +98562,16 @@ 0.0, 0.0, 0.0, - 0.5, - 18.603, - 31.876, - 31.876, - 31.876, - 31.876, - 30.766, 0.0, 0.0, + 0.025, + 4.101, + 10.933, + 17.466, + 18.851, + 18.851, + 18.851, + 15.817, 0.0, 0.0, 0.0, @@ -98640,15 +98587,15 @@ 0.0, 0.0, 0.0, - 0.181, - 8.624, - 20.991, - 27.189, - 31.876, - 31.876, - 31.876, - 24.76, 0.0, + 0.194, + 9.235, + 18.633, + 17.497, + 18.851, + 18.851, + 18.851, + 2.784, 0.0, 0.0, 0.0, @@ -98664,14 +98611,15 @@ 0.0, 0.0, 0.0, - 1.132, - 19.436, - 31.876, - 31.876, - 31.876, - 31.876, - 29.301, 0.0, + 0.255, + 9.491, + 18.671, + 18.851, + 18.851, + 18.851, + 18.851, + 1.074, 0.0, 0.0, 0.0, @@ -98688,13 +98636,15 @@ 0.0, 0.0, 0.0, - 1.615, - 21.032, - 31.876, - 31.876, - 31.876, - 31.876, - 27.223, + 0.093, + 4.4, + 10.71, + 13.872, + 18.851, + 18.851, + 18.851, + 18.851, + 0.417, 0.0, 0.0, 0.0, @@ -98710,16 +98660,16 @@ 0.0, 0.0, 0.0, + 0.578, + 9.916, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.147, 0.0, 0.0, - 0.725, - 15.069, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 2.199, 0.0, 0.0, 0.0, @@ -98734,15 +98684,15 @@ 0.0, 0.0, 0.0, + 0.824, + 10.731, + 18.851, + 18.851, + 18.851, + 18.851, + 17.937, 0.0, 0.0, - 1.751, - 20.119, - 28.581, - 31.876, - 31.876, - 31.876, - 31.294, 0.0, 0.0, 0.0, @@ -98758,16 +98708,16 @@ 0.0, 0.0, 0.0, + 0.37, + 7.688, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 2.582, 0.0, 0.0, - 1.738, - 12.117, - 26.02, - 31.876, - 31.876, - 31.876, - 31.876, - 9.995, 0.0, 0.0, 0.0, @@ -98782,15 +98732,16 @@ 0.0, 0.0, 0.0, + 0.893, + 10.265, + 14.582, + 18.851, + 18.851, + 18.851, + 18.851, + 3.751, 0.0, 0.0, - 2.123, - 20.777, - 31.876, - 31.876, - 31.876, - 31.876, - 26.969, 0.0, 0.0, 0.0, @@ -98805,16 +98756,17 @@ 0.0, 0.0, 0.0, + 0.887, + 6.182, + 13.275, + 18.851, + 18.851, + 18.851, + 18.851, + 9.147, 0.0, 0.0, 0.0, - 2.292, - 20.534, - 31.876, - 31.876, - 31.876, - 31.876, - 27.043, 0.0, 0.0, 0.0, @@ -98828,17 +98780,17 @@ 0.0, 0.0, 0.0, + 1.083, + 10.601, + 18.851, + 18.851, + 18.851, + 18.851, + 17.808, 0.0, 0.0, 0.0, 0.0, - 2.715, - 21.28, - 31.876, - 31.876, - 31.876, - 31.876, - 25.875, 0.0, 0.0, 0.0, @@ -98852,17 +98804,17 @@ 0.0, 0.0, 0.0, + 1.169, + 10.477, + 18.851, + 18.851, + 18.851, + 18.851, + 17.845, 0.0, 0.0, 0.0, 0.0, - 2.883, - 21.31, - 31.876, - 31.876, - 31.876, - 31.876, - 25.676, 0.0, 0.0, 0.0, @@ -98876,17 +98828,17 @@ 0.0, 0.0, 0.0, + 1.385, + 10.857, + 18.851, + 18.851, + 18.851, + 18.851, + 17.249, 0.0, 0.0, 0.0, 0.0, - 2.777, - 20.16, - 31.876, - 31.876, - 31.876, - 31.876, - 26.932, 0.0, 0.0, 0.0, @@ -98900,17 +98852,17 @@ 0.0, 0.0, 0.0, + 1.471, + 10.872, + 18.851, + 18.851, + 18.851, + 18.851, + 17.148, 0.0, 0.0, 0.0, 0.0, - 3.424, - 22.35, - 31.876, - 31.876, - 31.876, - 31.876, - 24.095, 0.0, 0.0, 0.0, @@ -98924,17 +98876,17 @@ 0.0, 0.0, 0.0, + 1.417, + 10.286, + 18.851, + 18.851, + 18.851, + 18.851, + 17.789, 0.0, 0.0, 0.0, 0.0, - 3.638, - 22.832, - 31.876, - 31.876, - 31.876, - 31.876, - 23.4, 0.0, 0.0, 0.0, @@ -98948,17 +98900,17 @@ 0.0, 0.0, 0.0, + 1.747, + 11.403, + 18.851, + 18.851, + 18.851, + 18.851, + 16.341, 0.0, 0.0, 0.0, 0.0, - 3.763, - 22.924, - 31.876, - 31.876, - 31.876, - 31.876, - 23.183, 0.0, 0.0, 0.0, @@ -98972,18 +98924,17 @@ 0.0, 0.0, 0.0, + 1.856, + 11.649, + 18.851, + 18.851, + 18.851, + 18.851, + 15.986, 0.0, 0.0, 0.0, 0.0, - 1.599, - 12.464, - 23.196, - 31.876, - 31.876, - 31.876, - 31.876, - 12.61, 0.0, 0.0, 0.0, @@ -98997,16 +98948,16 @@ 0.0, 0.0, 0.0, + 1.92, + 11.696, + 18.851, + 18.851, + 18.851, + 18.851, + 15.876, 0.0, 0.0, 0.0, - 3.79, - 21.307, - 31.876, - 31.876, - 31.876, - 31.876, - 24.773, 0.0, 0.0, 0.0, @@ -99021,16 +98972,17 @@ 0.0, 0.0, 0.0, + 0.816, + 6.359, + 11.835, + 18.851, + 18.851, + 18.851, + 18.851, + 10.481, 0.0, 0.0, 0.0, - 3.749, - 20.538, - 31.876, - 31.876, - 31.876, - 31.876, - 25.582, 0.0, 0.0, 0.0, @@ -99044,17 +98996,17 @@ 0.0, 0.0, 0.0, + 1.933, + 10.871, + 18.851, + 18.851, + 18.851, + 18.851, + 16.687, 0.0, 0.0, 0.0, 0.0, - 4.069, - 21.391, - 28.331, - 31.876, - 31.876, - 31.876, - 27.955, 0.0, 0.0, 0.0, @@ -99068,17 +99020,17 @@ 0.0, 0.0, 0.0, + 1.913, + 10.478, + 18.851, + 18.851, + 18.851, + 18.851, + 17.1, 0.0, 0.0, 0.0, 0.0, - 3.942, - 20.637, - 27.404, - 31.876, - 31.876, - 31.876, - 29.763, 0.0, 0.0, 0.0, @@ -99092,17 +99044,18 @@ 0.0, 0.0, 0.0, + 2.076, + 10.914, + 14.454, + 18.851, + 18.851, + 18.851, + 18.851, + 2.047, 0.0, 0.0, 0.0, 0.0, - 4.103, - 20.859, - 31.876, - 31.876, - 31.876, - 31.876, - 24.907, 0.0, 0.0, 0.0, @@ -99115,19 +99068,19 @@ 0.0, 0.0, 0.0, + 2.011, + 10.529, + 13.981, + 18.851, + 18.851, + 18.851, + 18.851, + 2.97, 0.0, 0.0, 0.0, 0.0, 0.0, - 4.654, - 22.665, - 31.876, - 31.876, - 31.876, - 31.876, - 13.049, - 9.502, 0.0, 0.0, 0.0, @@ -99139,18 +99092,18 @@ 0.0, 0.0, 0.0, + 2.093, + 10.642, + 18.851, + 18.851, + 18.851, + 18.851, + 16.755, 0.0, 0.0, 0.0, 0.0, 0.0, - 4.656, - 22.754, - 31.876, - 31.876, - 31.876, - 31.876, - 22.46, 0.0, 0.0, 0.0, @@ -99163,18 +99116,19 @@ 0.0, 0.0, 0.0, + 2.374, + 11.564, + 18.851, + 18.851, + 18.851, + 18.851, + 6.658, + 8.896, 0.0, 0.0, 0.0, 0.0, 0.0, - 4.758, - 21.794, - 31.876, - 31.876, - 31.876, - 31.876, - 23.317, 0.0, 0.0, 0.0, @@ -99186,20 +99140,19 @@ 0.0, 0.0, 0.0, + 2.375, + 11.609, + 18.851, + 18.851, + 18.851, + 18.851, + 15.507, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 4.802, - 12.383, - 26.552, - 31.876, - 31.876, - 31.876, - 31.876, - 6.133, 0.0, 0.0, 0.0, @@ -99211,18 +99164,18 @@ 0.0, 0.0, 0.0, + 2.428, + 11.12, + 18.851, + 18.851, + 18.851, + 18.851, + 15.944, 0.0, 0.0, 0.0, 0.0, 0.0, - 5.595, - 25.037, - 31.876, - 31.876, - 31.876, - 31.876, - 19.237, 0.0, 0.0, 0.0, @@ -99235,18 +99188,19 @@ 0.0, 0.0, 0.0, + 2.45, + 6.318, + 13.547, + 18.851, + 18.851, + 18.851, + 18.851, + 7.177, 0.0, 0.0, 0.0, 0.0, 0.0, - 5.448, - 23.377, - 31.876, - 31.876, - 31.876, - 31.876, - 21.044, 0.0, 0.0, 0.0, @@ -99258,19 +99212,19 @@ 0.0, 0.0, 0.0, + 2.855, + 12.774, + 18.851, + 18.851, + 18.851, + 18.851, + 13.863, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 5.935, - 25.388, - 31.876, - 31.876, - 31.876, - 31.876, - 18.546, 0.0, 0.0, 0.0, @@ -99282,19 +99236,19 @@ 0.0, 0.0, 0.0, + 2.78, + 11.927, + 18.851, + 18.851, + 18.851, + 18.851, + 14.784, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 5.956, - 24.779, - 31.876, - 31.876, - 31.876, - 31.876, - 19.134, 0.0, 0.0, 0.0, @@ -99306,19 +99260,19 @@ 0.0, 0.0, 0.0, + 3.028, + 12.953, + 18.851, + 18.851, + 18.851, + 18.851, + 13.51, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 5.862, - 23.101, - 31.876, - 31.876, - 31.876, - 31.876, - 20.906, 0.0, 0.0, 0.0, @@ -99330,19 +99284,19 @@ 0.0, 0.0, 0.0, + 3.039, + 12.642, + 18.851, + 18.851, + 18.851, + 18.851, + 13.81, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.068, - 23.511, - 25.978, - 31.876, - 31.876, - 31.876, - 26.189, 0.0, 0.0, 0.0, @@ -99354,19 +99308,19 @@ 0.0, 0.0, 0.0, + 2.991, + 11.786, + 16.315, + 18.851, + 18.851, + 18.851, + 17.25, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.397, - 24.875, - 31.876, - 31.876, - 31.876, - 31.876, - 18.598, 0.0, 0.0, 0.0, @@ -99378,19 +99332,20 @@ 0.0, 0.0, 0.0, + 3.096, + 11.995, + 13.254, + 18.851, + 18.851, + 18.851, + 18.851, + 1.146, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.72, - 25.163, - 31.876, - 31.876, - 31.876, - 31.876, - 17.986, 0.0, 0.0, 0.0, @@ -99401,6 +99356,13 @@ 0.0, 0.0, 0.0, + 3.264, + 12.691, + 18.851, + 18.851, + 18.851, + 18.851, + 13.537, 0.0, 0.0, 0.0, @@ -99408,13 +99370,6 @@ 0.0, 0.0, 0.0, - 6.855, - 25.259, - 31.876, - 31.876, - 31.876, - 31.876, - 17.755, 0.0, 0.0, 0.0, @@ -99425,6 +99380,13 @@ 0.0, 0.0, 0.0, + 3.428, + 12.838, + 18.851, + 18.851, + 18.851, + 18.851, + 13.224, 0.0, 0.0, 0.0, @@ -99432,13 +99394,6 @@ 0.0, 0.0, 0.0, - 5.075, - 23.983, - 31.876, - 31.876, - 31.876, - 31.876, - 20.812, 0.0, 0.0, 0.0, @@ -99449,6 +99404,13 @@ 0.0, 0.0, 0.0, + 3.498, + 12.887, + 18.851, + 18.851, + 18.851, + 18.851, + 13.106, 0.0, 0.0, 0.0, @@ -99456,13 +99418,6 @@ 0.0, 0.0, 0.0, - 6.823, - 24.142, - 31.876, - 31.876, - 31.876, - 31.876, - 15.091, 0.0, 0.0, 0.0, @@ -99473,6 +99428,13 @@ 0.0, 0.0, 0.0, + 2.589, + 12.236, + 18.851, + 18.851, + 18.851, + 18.851, + 14.666, 0.0, 0.0, 0.0, @@ -99480,13 +99442,6 @@ 0.0, 0.0, 0.0, - 7.03, - 25.165, - 31.876, - 31.876, - 31.876, - 31.876, - 17.674, 0.0, 0.0, 0.0, @@ -99497,6 +99452,13 @@ 0.0, 0.0, 0.0, + 3.481, + 12.317, + 18.851, + 18.851, + 18.851, + 18.851, + 13.693, 0.0, 0.0, 0.0, @@ -99505,13 +99467,6 @@ 0.0, 0.0, 0.0, - 24.845, - 23.148, - 31.876, - 10.299, - 31.876, - 31.876, - 23.453, 0.0, 0.0, 0.0, @@ -99521,6 +99476,13 @@ 0.0, 0.0, 0.0, + 3.587, + 12.839, + 18.851, + 18.851, + 18.851, + 18.851, + 13.065, 0.0, 0.0, 0.0, @@ -99528,13 +99490,6 @@ 0.0, 0.0, 0.0, - 7.301, - 24.984, - 23.14, - 31.876, - 31.876, - 31.876, - 26.32, 0.0, 0.0, 0.0, @@ -99546,6 +99501,14 @@ 0.0, 0.0, 0.0, + 12.676, + 11.81, + 18.851, + 5.255, + 16.317, + 18.851, + 18.851, + 2.284, 0.0, 0.0, 0.0, @@ -99553,14 +99516,6 @@ 0.0, 0.0, 0.0, - 24.366, - 31.876, - 11.311, - 1.359, - 4.486, - 2.099, - 8.289, - 8.164, 0.0, 0.0, 0.0, @@ -99569,6 +99524,14 @@ 0.0, 0.0, 0.0, + 3.725, + 12.747, + 11.806, + 18.851, + 18.851, + 18.851, + 18.851, + 1.213, 0.0, 0.0, 0.0, @@ -99576,13 +99539,6 @@ 0.0, 0.0, 0.0, - 5.412, - 26.719, - 31.876, - 31.876, - 31.876, - 31.876, - 17.738, 0.0, 0.0, 0.0, @@ -99593,20 +99549,20 @@ 0.0, 0.0, 0.0, + 12.431, + 18.851, + 5.771, + 0.693, + 2.289, + 1.071, + 4.229, + 4.165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.096, - 7.472, - 25.061, - 31.876, - 31.876, - 31.876, - 31.876, - 17.24, 0.0, 0.0, 0.0, @@ -99616,6 +99572,13 @@ 0.0, 0.0, 0.0, + 2.761, + 13.632, + 18.851, + 18.851, + 18.851, + 18.851, + 13.098, 0.0, 0.0, 0.0, @@ -99623,14 +99586,6 @@ 0.0, 0.0, 0.0, - 0.13, - 7.389, - 24.706, - 31.876, - 31.876, - 31.876, - 31.876, - 13.831, 0.0, 0.0, 0.0, @@ -99640,6 +99595,14 @@ 0.0, 0.0, 0.0, + 0.049, + 3.812, + 12.786, + 18.851, + 18.851, + 18.851, + 18.851, + 12.844, 0.0, 0.0, 0.0, @@ -99647,14 +99610,6 @@ 0.0, 0.0, 0.0, - 0.16, - 7.246, - 24.564, - 31.876, - 31.876, - 31.876, - 31.876, - 17.899, 0.0, 0.0, 0.0, @@ -99664,6 +99619,14 @@ 0.0, 0.0, 0.0, + 0.066, + 3.77, + 12.605, + 18.851, + 18.851, + 18.851, + 18.851, + 13.05, 0.0, 0.0, 0.0, @@ -99671,14 +99634,6 @@ 0.0, 0.0, 0.0, - 0.326, - 6.195, - 24.389, - 31.876, - 31.876, - 31.876, - 31.876, - 18.96, 0.0, 0.0, 0.0, @@ -99688,6 +99643,14 @@ 0.0, 0.0, 0.0, + 0.082, + 3.697, + 12.533, + 18.851, + 18.851, + 18.851, + 18.851, + 13.18, 0.0, 0.0, 0.0, @@ -99695,14 +99658,6 @@ 0.0, 0.0, 0.0, - 0.287, - 7.389, - 24.776, - 31.876, - 31.876, - 31.876, - 31.876, - 17.417, 0.0, 0.0, 0.0, @@ -99712,6 +99667,14 @@ 0.0, 0.0, 0.0, + 0.166, + 3.161, + 12.443, + 18.851, + 18.851, + 18.851, + 18.851, + 13.721, 0.0, 0.0, 0.0, @@ -99719,14 +99682,6 @@ 0.0, 0.0, 0.0, - 0.243, - 7.377, - 23.159, - 31.876, - 31.876, - 31.876, - 31.876, - 19.089, 0.0, 0.0, 0.0, @@ -99736,6 +99691,14 @@ 0.0, 0.0, 0.0, + 0.147, + 3.77, + 12.641, + 18.851, + 18.851, + 18.851, + 18.851, + 12.934, 0.0, 0.0, 0.0, @@ -99743,14 +99706,6 @@ 0.0, 0.0, 0.0, - 0.287, - 7.444, - 24.4, - 31.876, - 31.876, - 31.876, - 31.876, - 17.739, 0.0, 0.0, 0.0, @@ -99760,6 +99715,14 @@ 0.0, 0.0, 0.0, + 0.124, + 3.764, + 11.816, + 18.851, + 18.851, + 18.851, + 18.851, + 13.787, 0.0, 0.0, 0.0, @@ -99767,14 +99730,6 @@ 0.0, 0.0, 0.0, - 0.307, - 7.469, - 23.988, - 31.876, - 31.876, - 31.876, - 31.876, - 18.106, 0.0, 0.0, 0.0, @@ -99784,6 +99739,14 @@ 0.0, 0.0, 0.0, + 0.146, + 3.798, + 12.449, + 18.851, + 18.851, + 18.851, + 18.851, + 13.098, 0.0, 0.0, 0.0, @@ -99791,14 +99754,6 @@ 0.0, 0.0, 0.0, - 0.377, - 8.023, - 25.0, - 31.876, - 31.876, - 31.876, - 31.876, - 8.843, 0.0, 0.0, 0.0, @@ -99808,6 +99763,14 @@ 0.0, 0.0, 0.0, + 0.157, + 3.811, + 12.239, + 18.851, + 18.851, + 18.851, + 18.851, + 13.285, 0.0, 0.0, 0.0, @@ -99815,14 +99778,6 @@ 0.0, 0.0, 0.0, - 0.509, - 5.223, - 24.572, - 31.876, - 31.876, - 31.876, - 27.822, - 23.619, 0.0, 0.0, 0.0, @@ -99832,6 +99787,14 @@ 0.0, 0.0, 0.0, + 0.192, + 4.093, + 12.755, + 18.851, + 18.851, + 18.851, + 18.851, + 12.451, 0.0, 0.0, 0.0, @@ -99840,14 +99803,6 @@ 0.0, 0.0, 0.0, - 6.015, - 17.877, - 23.514, - 28.059, - 13.013, - 31.876, - 31.876, - 25.144, 0.0, 0.0, 0.0, @@ -99856,6 +99811,15 @@ 0.0, 0.0, 0.0, + 0.26, + 2.665, + 12.537, + 18.851, + 18.851, + 18.851, + 14.195, + 16.937, + 1.749, 0.0, 0.0, 0.0, @@ -99863,14 +99827,6 @@ 0.0, 0.0, 0.0, - 0.512, - 7.851, - 25.115, - 31.876, - 31.876, - 31.876, - 31.876, - 16.392, 0.0, 0.0, 0.0, @@ -99880,6 +99836,15 @@ 0.0, 0.0, 0.0, + 3.069, + 9.121, + 11.997, + 14.316, + 6.639, + 18.123, + 18.851, + 18.851, + 3.928, 0.0, 0.0, 0.0, @@ -99887,14 +99852,6 @@ 0.0, 0.0, 0.0, - 0.645, - 8.327, - 25.919, - 31.876, - 31.876, - 31.876, - 31.876, - 14.979, 0.0, 0.0, 0.0, @@ -99902,6 +99859,14 @@ 0.0, 0.0, 0.0, + 0.261, + 4.006, + 12.814, + 18.851, + 18.851, + 18.851, + 18.851, + 12.411, 0.0, 0.0, 0.0, @@ -99911,14 +99876,6 @@ 0.0, 0.0, 0.0, - 0.701, - 8.372, - 25.077, - 31.876, - 31.876, - 31.876, - 31.876, - 15.719, 0.0, 0.0, 0.0, @@ -99926,6 +99883,14 @@ 0.0, 0.0, 0.0, + 0.329, + 4.248, + 13.224, + 18.851, + 18.851, + 18.851, + 18.851, + 11.69, 0.0, 0.0, 0.0, @@ -99935,14 +99900,6 @@ 0.0, 0.0, 0.0, - 0.803, - 8.431, - 24.847, - 31.876, - 31.876, - 31.876, - 31.876, - 15.788, 0.0, 0.0, 0.0, @@ -99950,6 +99907,14 @@ 0.0, 0.0, 0.0, + 0.357, + 4.272, + 12.795, + 18.851, + 18.851, + 18.851, + 18.851, + 12.068, 0.0, 0.0, 0.0, @@ -99959,14 +99924,6 @@ 0.0, 0.0, 0.0, - 0.817, - 8.272, - 24.202, - 31.876, - 31.876, - 31.876, - 31.876, - 5.139, 0.0, 0.0, 0.0, @@ -99974,6 +99931,14 @@ 0.0, 0.0, 0.0, + 0.41, + 4.301, + 12.677, + 18.851, + 18.851, + 18.851, + 18.851, + 12.103, 0.0, 0.0, 0.0, @@ -99983,14 +99948,6 @@ 0.0, 0.0, 0.0, - 0.8, - 8.17, - 25.352, - 31.876, - 31.876, - 31.876, - 31.876, - 15.547, 0.0, 0.0, 0.0, @@ -99998,6 +99955,14 @@ 0.0, 0.0, 0.0, + 0.417, + 4.22, + 12.348, + 18.851, + 18.851, + 18.851, + 18.851, + 12.506, 0.0, 0.0, 0.0, @@ -100007,14 +99972,6 @@ 0.0, 0.0, 0.0, - 0.897, - 8.139, - 24.64, - 31.876, - 31.876, - 31.876, - 31.876, - 16.192, 0.0, 0.0, 0.0, @@ -100022,6 +99979,14 @@ 0.0, 0.0, 0.0, + 0.408, + 4.168, + 12.935, + 18.851, + 18.851, + 18.851, + 18.851, + 11.98, 0.0, 0.0, 0.0, @@ -100031,14 +99996,6 @@ 0.0, 0.0, 0.0, - 0.843, - 7.871, - 24.024, - 31.876, - 31.876, - 31.876, - 31.876, - 17.131, 0.0, 0.0, 0.0, @@ -100046,6 +100003,14 @@ 0.0, 0.0, 0.0, + 0.458, + 4.153, + 12.572, + 18.851, + 18.851, + 18.851, + 18.851, + 12.309, 0.0, 0.0, 0.0, @@ -100055,14 +100020,6 @@ 0.0, 0.0, 0.0, - 0.972, - 8.019, - 23.336, - 31.876, - 31.876, - 31.876, - 31.876, - 17.541, 0.0, 0.0, 0.0, @@ -100070,6 +100027,14 @@ 0.0, 0.0, 0.0, + 0.43, + 4.016, + 12.257, + 18.851, + 18.851, + 18.851, + 18.851, + 12.788, 0.0, 0.0, 0.0, @@ -100079,14 +100044,6 @@ 0.0, 0.0, 0.0, - 1.043, - 8.38, - 24.639, - 31.876, - 31.876, - 31.876, - 31.876, - 15.807, 0.0, 0.0, 0.0, @@ -100094,6 +100051,14 @@ 0.0, 0.0, 0.0, + 0.496, + 4.092, + 11.906, + 18.439, + 18.851, + 18.851, + 18.851, + 13.409, 0.0, 0.0, 0.0, @@ -100103,14 +100068,6 @@ 0.0, 0.0, 0.0, - 1.387, - 8.949, - 21.047, - 31.876, - 31.876, - 31.876, - 31.876, - 18.486, 0.0, 0.0, 0.0, @@ -100118,6 +100075,14 @@ 0.0, 0.0, 0.0, + 0.532, + 4.276, + 12.571, + 18.851, + 18.851, + 18.851, + 18.851, + 12.112, 0.0, 0.0, 0.0, @@ -100127,14 +100092,6 @@ 0.0, 0.0, 0.0, - 1.644, - 9.392, - 25.499, - 19.465, - 31.876, - 31.876, - 31.876, - 14.102, 0.0, 0.0, 0.0, @@ -100142,6 +100099,15 @@ 0.0, 0.0, 0.0, + 0.708, + 4.566, + 10.738, + 18.134, + 18.851, + 18.851, + 18.851, + 10.369, + 3.827, 0.0, 0.0, 0.0, @@ -100151,20 +100117,21 @@ 0.0, 0.0, 0.0, - 1.278, - 8.91, - 26.08, - 31.876, - 31.876, - 31.876, - 31.876, - 13.601, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.839, + 4.792, + 13.01, + 9.931, + 18.851, + 18.851, + 18.851, + 18.851, + 0.92, 0.0, 0.0, 0.0, @@ -100175,19 +100142,19 @@ 0.0, 0.0, 0.0, - 1.397, - 8.673, - 23.823, - 31.876, - 31.876, - 31.876, - 31.876, - 15.976, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.652, + 4.546, + 13.306, + 18.851, + 18.334, + 18.851, + 18.851, + 11.504, 0.0, 0.0, 0.0, @@ -100199,19 +100166,19 @@ 0.0, 0.0, 0.0, - 1.758, - 9.278, - 24.153, - 31.876, - 31.876, - 31.876, - 31.876, - 14.68, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.713, + 4.425, + 12.155, + 18.851, + 18.851, + 18.851, + 18.851, + 12.199, 0.0, 0.0, 0.0, @@ -100223,19 +100190,19 @@ 0.0, 0.0, 0.0, - 1.63, - 9.039, - 24.641, - 31.876, - 31.876, - 31.876, - 31.876, - 14.559, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.897, + 4.734, + 12.323, + 18.851, + 18.851, + 18.851, + 18.851, + 11.537, 0.0, 0.0, 0.0, @@ -100247,19 +100214,19 @@ 0.0, 0.0, 0.0, - 1.409, - 8.882, - 25.172, - 31.876, - 31.876, - 31.876, - 31.876, - 14.406, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.832, + 4.612, + 12.572, + 18.851, + 18.851, + 18.851, + 18.851, + 11.476, 0.0, 0.0, 0.0, @@ -100271,19 +100238,19 @@ 0.0, 0.0, 0.0, - 1.377, - 9.286, - 27.434, - 31.876, - 31.876, - 31.876, - 31.876, - 11.772, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.719, + 4.532, + 12.843, + 18.851, + 18.851, + 18.851, + 18.851, + 11.398, 0.0, 0.0, 0.0, @@ -100295,18 +100262,19 @@ 0.0, 0.0, 0.0, - 1.672, - 9.2, - 26.069, - 31.876, - 31.876, - 31.876, - 28.515, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.703, + 4.738, + 13.997, + 18.851, + 18.851, + 18.851, + 18.851, + 10.054, 0.0, 0.0, 0.0, @@ -100319,18 +100287,18 @@ 0.0, 0.0, 0.0, - 2.021, - 9.471, - 25.601, - 31.876, - 31.876, - 31.876, - 31.876, - 12.777, 0.0, 0.0, 0.0, 0.0, + 0.853, + 4.694, + 13.3, + 18.851, + 18.851, + 18.851, + 18.851, + 9.706, 0.0, 0.0, 0.0, @@ -100343,18 +100311,18 @@ 0.0, 0.0, 0.0, - 1.901, - 9.117, - 24.912, - 31.876, - 31.876, - 31.876, - 31.876, - 13.939, 0.0, 0.0, 0.0, 0.0, + 1.031, + 4.832, + 13.062, + 18.851, + 18.851, + 18.851, + 18.851, + 10.566, 0.0, 0.0, 0.0, @@ -100367,18 +100335,18 @@ 0.0, 0.0, 0.0, - 1.8, - 9.007, - 24.846, - 31.876, - 31.876, - 31.876, - 31.876, - 14.216, 0.0, 0.0, 0.0, 0.0, + 0.97, + 4.652, + 12.71, + 18.851, + 18.851, + 18.851, + 18.851, + 11.16, 0.0, 0.0, 0.0, @@ -100391,18 +100359,18 @@ 0.0, 0.0, 0.0, - 1.446, - 8.692, - 25.407, - 31.876, - 31.876, - 31.876, - 31.876, - 14.324, 0.0, 0.0, 0.0, 0.0, + 0.918, + 4.595, + 12.677, + 18.851, + 18.851, + 18.851, + 18.851, + 11.301, 0.0, 0.0, 0.0, @@ -100415,18 +100383,18 @@ 0.0, 0.0, 0.0, - 1.421, - 8.653, - 25.472, - 31.876, - 31.876, - 31.876, - 31.876, - 14.322, 0.0, 0.0, 0.0, 0.0, + 0.738, + 4.435, + 12.963, + 18.851, + 18.851, + 18.851, + 18.851, + 11.356, 0.0, 0.0, 0.0, @@ -100439,18 +100407,18 @@ 0.0, 0.0, 0.0, - 1.454, - 8.428, - 24.594, - 31.876, - 31.876, - 31.876, - 31.876, - 15.393, 0.0, 0.0, 0.0, 0.0, + 0.725, + 4.415, + 12.996, + 18.851, + 18.851, + 18.851, + 18.851, + 11.355, 0.0, 0.0, 0.0, @@ -100463,17 +100431,18 @@ 0.0, 0.0, 0.0, - 1.433, - 8.233, - 23.663, - 31.876, - 31.876, - 31.876, - 31.731, 0.0, 0.0, 0.0, 0.0, + 0.742, + 4.3, + 12.548, + 18.851, + 18.851, + 18.851, + 18.851, + 11.902, 0.0, 0.0, 0.0, @@ -100487,17 +100456,17 @@ 0.0, 0.0, 0.0, - 1.329, - 8.248, - 24.209, - 31.876, - 31.876, - 31.876, - 31.876, - 16.083, 0.0, 0.0, 0.0, + 0.731, + 4.201, + 12.073, + 18.687, + 18.851, + 18.851, + 18.851, + 11.649, 0.0, 0.0, 0.0, @@ -100511,17 +100480,17 @@ 0.0, 0.0, 0.0, - 1.567, - 8.136, - 23.24, - 31.876, - 31.876, - 31.876, - 31.876, - 16.926, 0.0, 0.0, 0.0, + 0.678, + 4.208, + 12.352, + 18.851, + 18.851, + 18.851, + 18.851, + 12.254, 0.0, 0.0, 0.0, @@ -100535,17 +100504,17 @@ 0.0, 0.0, 0.0, - 1.374, - 8.252, - 18.628, - 31.876, - 31.876, - 31.876, - 31.876, - 21.614, 0.0, 0.0, 0.0, + 0.8, + 4.151, + 11.857, + 18.566, + 18.851, + 18.851, + 18.851, + 12.968, 0.0, 0.0, 0.0, @@ -100559,17 +100528,17 @@ 0.0, 0.0, 0.0, - 1.752, - 8.668, - 25.064, - 31.876, - 31.876, - 31.876, - 31.876, - 14.386, 0.0, 0.0, 0.0, + 0.701, + 4.21, + 9.504, + 18.851, + 18.851, + 18.851, + 18.851, + 15.076, 0.0, 0.0, 0.0, @@ -100583,17 +100552,17 @@ 0.0, 0.0, 0.0, - 2.075, - 9.131, - 24.968, - 31.876, - 31.876, - 31.876, - 31.876, - 13.695, 0.0, 0.0, 0.0, + 0.894, + 4.422, + 12.788, + 18.851, + 18.851, + 18.851, + 18.851, + 11.388, 0.0, 0.0, 0.0, @@ -100607,17 +100576,17 @@ 0.0, 0.0, 0.0, - 2.016, - 8.887, - 24.177, - 31.876, - 31.876, - 31.876, - 31.876, - 14.789, 0.0, 0.0, 0.0, + 1.059, + 4.659, + 12.739, + 18.851, + 18.851, + 18.851, + 18.851, + 11.035, 0.0, 0.0, 0.0, @@ -100631,16 +100600,17 @@ 0.0, 0.0, 0.0, - 1.706, - 8.381, - 23.799, - 31.876, - 31.876, - 31.876, - 26.403, 0.0, 0.0, 0.0, + 1.029, + 4.534, + 12.335, + 18.851, + 18.851, + 18.851, + 18.851, + 11.593, 0.0, 0.0, 0.0, @@ -100655,15 +100625,16 @@ 0.0, 0.0, 0.0, - 1.783, - 8.456, - 23.233, - 31.876, - 31.876, - 31.876, - 26.972, 0.0, 0.0, + 0.871, + 4.276, + 12.142, + 18.851, + 18.851, + 18.851, + 18.851, + 7.215, 0.0, 0.0, 0.0, @@ -100679,15 +100650,15 @@ 0.0, 0.0, 0.0, - 2.114, - 7.928, - 23.488, - 31.876, - 31.876, - 31.876, - 31.876, - 16.339, 0.0, + 0.91, + 4.314, + 11.853, + 18.536, + 18.851, + 18.851, + 18.851, + 7.735, 0.0, 0.0, 0.0, @@ -100703,16 +100674,15 @@ 0.0, 0.0, 0.0, - 2.088, - 7.76, - 17.531, - 19.113, - 31.876, - 31.876, - 31.876, - 26.615, - 8.639, 0.0, + 1.079, + 4.045, + 11.983, + 18.734, + 18.851, + 18.851, + 18.851, + 12.501, 0.0, 0.0, 0.0, @@ -100727,16 +100697,18 @@ 0.0, 0.0, 0.0, - 1.908, - 8.034, - 22.545, - 31.876, - 31.876, - 31.876, - 31.876, - 17.383, 0.0, 0.0, + 1.065, + 3.959, + 8.944, + 9.751, + 18.851, + 18.851, + 18.851, + 13.579, + 4.51, + 6.532, 0.0, 0.0, 0.0, @@ -100751,15 +100723,14 @@ 0.0, 0.0, 0.0, - 1.757, - 7.45, - 18.194, - 16.361, - 31.876, - 31.876, - 31.876, - 31.876, - 6.108, + 0.974, + 4.099, + 11.502, + 18.741, + 18.851, + 18.851, + 18.851, + 13.027, 0.0, 0.0, 0.0, @@ -100775,15 +100746,16 @@ 0.0, 0.0, 0.0, - 1.88, - 8.182, - 22.565, - 31.876, - 31.876, - 31.876, - 31.876, - 17.242, 0.0, + 0.896, + 3.801, + 9.283, + 8.347, + 18.227, + 18.851, + 18.851, + 18.851, + 7.787, 0.0, 0.0, 0.0, @@ -100799,13 +100771,14 @@ 0.0, 0.0, 0.0, - 1.751, - 7.799, - 22.52, - 31.876, - 31.876, - 31.876, - 27.572, + 0.959, + 4.175, + 11.513, + 18.163, + 18.851, + 18.851, + 18.851, + 13.532, 0.0, 0.0, 0.0, @@ -100822,17 +100795,15 @@ 0.0, 0.0, 0.0, + 0.893, + 3.979, + 11.49, + 18.117, + 18.851, + 18.851, + 18.851, + 8.657, 0.0, - 1.493, - 4.87, - 13.008, - 9.85, - 12.102, - 31.876, - 31.876, - 31.876, - 31.876, - 8.546, 0.0, 0.0, 0.0, @@ -100847,15 +100818,17 @@ 0.0, 0.0, 0.0, - 1.963, - 8.124, - 23.639, - 31.876, - 31.876, - 31.876, - 31.876, - 16.144, 0.0, + 0.762, + 2.485, + 6.637, + 5.026, + 6.175, + 18.851, + 18.851, + 18.851, + 18.851, + 8.408, 0.0, 0.0, 0.0, @@ -100870,15 +100843,15 @@ 0.0, 0.0, 0.0, + 1.001, + 4.145, + 12.061, + 18.851, + 18.851, + 18.851, + 18.851, + 12.284, 0.0, - 1.803, - 8.419, - 25.374, - 31.876, - 31.876, - 31.876, - 31.876, - 14.274, 0.0, 0.0, 0.0, @@ -100894,15 +100867,15 @@ 0.0, 0.0, 0.0, + 0.92, + 4.295, + 12.946, + 18.851, + 18.851, + 18.851, + 18.851, + 11.33, 0.0, - 1.632, - 8.42, - 25.707, - 31.876, - 31.876, - 31.876, - 31.876, - 14.11, 0.0, 0.0, 0.0, @@ -100918,15 +100891,15 @@ 0.0, 0.0, 0.0, + 0.833, + 4.296, + 13.116, + 18.851, + 18.851, + 18.851, + 18.851, + 11.247, 0.0, - 1.584, - 8.055, - 24.262, - 31.876, - 31.876, - 31.876, - 31.876, - 15.968, 0.0, 0.0, 0.0, @@ -100942,15 +100915,15 @@ 0.0, 0.0, 0.0, + 0.808, + 4.11, + 12.378, + 18.851, + 18.851, + 18.851, + 18.851, + 12.195, 0.0, - 1.716, - 7.809, - 23.518, - 31.876, - 31.876, - 31.876, - 31.876, - 16.825, 0.0, 0.0, 0.0, @@ -100966,14 +100939,15 @@ 0.0, 0.0, 0.0, + 0.876, + 3.984, + 11.999, + 18.851, + 18.851, + 18.851, + 18.851, + 12.632, 0.0, - 1.632, - 7.557, - 22.759, - 31.876, - 31.876, - 31.876, - 26.761, 0.0, 0.0, 0.0, @@ -100989,16 +100963,16 @@ 0.0, 0.0, 0.0, + 0.833, + 3.855, + 11.612, + 18.544, + 18.851, + 18.851, + 18.851, + 8.232, 0.0, 0.0, - 1.638, - 8.096, - 23.515, - 31.876, - 31.876, - 31.876, - 31.876, - 16.621, 0.0, 0.0, 0.0, @@ -101013,16 +100987,16 @@ 0.0, 0.0, 0.0, + 0.835, + 4.13, + 11.997, + 18.851, + 18.851, + 18.851, + 18.851, + 12.528, 0.0, 0.0, - 1.927, - 7.924, - 23.9, - 31.876, - 31.876, - 31.876, - 31.876, - 16.118, 0.0, 0.0, 0.0, @@ -101037,16 +101011,16 @@ 0.0, 0.0, 0.0, + 0.983, + 4.043, + 12.194, + 18.851, + 18.851, + 18.851, + 18.851, + 12.271, 0.0, 0.0, - 1.771, - 7.774, - 23.496, - 31.876, - 31.876, - 31.876, - 31.876, - 16.828, 0.0, 0.0, 0.0, @@ -101061,16 +101035,16 @@ 0.0, 0.0, 0.0, + 0.904, + 3.966, + 11.988, + 18.851, + 18.851, + 18.851, + 18.851, + 12.634, 0.0, 0.0, - 1.85, - 7.594, - 22.606, - 31.876, - 31.876, - 31.876, - 31.876, - 17.819, 0.0, 0.0, 0.0, @@ -101085,16 +101059,16 @@ 0.0, 0.0, 0.0, + 0.944, + 3.875, + 11.534, + 18.135, + 18.851, + 18.851, + 18.851, + 13.854, 0.0, 0.0, - 1.747, - 7.409, - 22.853, - 31.876, - 31.876, - 31.876, - 31.876, - 17.86, 0.0, 0.0, 0.0, @@ -101109,16 +101083,16 @@ 0.0, 0.0, 0.0, + 0.891, + 3.78, + 11.66, + 18.794, + 18.851, + 18.851, + 18.851, + 13.217, 0.0, 0.0, - 1.909, - 7.67, - 22.98, - 31.876, - 31.876, - 31.876, - 31.876, - 17.311, 0.0, 0.0, 0.0, @@ -101133,15 +101107,16 @@ 0.0, 0.0, 0.0, + 0.974, + 3.913, + 11.724, + 18.706, + 18.851, + 18.851, + 18.851, + 13.025, 0.0, 0.0, - 1.844, - 7.558, - 22.93, - 31.876, - 31.876, - 31.876, - 22.269, 0.0, 0.0, 0.0, @@ -101156,17 +101131,17 @@ 0.0, 0.0, 0.0, + 0.941, + 3.856, + 11.699, + 18.674, + 18.851, + 18.851, + 18.851, + 3.917, 0.0, 0.0, 0.0, - 2.203, - 7.935, - 22.315, - 31.876, - 31.876, - 31.876, - 31.876, - 17.416, 0.0, 0.0, 0.0, @@ -101180,17 +101155,17 @@ 0.0, 0.0, 0.0, + 1.124, + 4.048, + 11.385, + 18.088, + 18.851, + 18.851, + 18.851, + 13.697, 0.0, 0.0, 0.0, - 1.841, - 7.529, - 22.154, - 31.876, - 31.876, - 31.876, - 31.876, - 18.346, 0.0, 0.0, 0.0, @@ -101204,17 +101179,17 @@ 0.0, 0.0, 0.0, + 0.939, + 3.841, + 11.303, + 18.129, + 18.851, + 18.851, + 18.851, + 14.129, 0.0, 0.0, 0.0, - 1.796, - 7.315, - 22.481, - 31.876, - 31.876, - 31.876, - 31.876, - 18.276, 0.0, 0.0, 0.0, @@ -101228,17 +101203,17 @@ 0.0, 0.0, 0.0, + 0.917, + 3.732, + 11.47, + 18.395, + 18.851, + 18.851, + 18.851, + 13.828, 0.0, 0.0, 0.0, - 1.621, - 6.98, - 22.15, - 31.876, - 31.876, - 31.876, - 31.876, - 19.119, 0.0, 0.0, 0.0, @@ -101252,17 +101227,17 @@ 0.0, 0.0, 0.0, + 0.827, + 3.561, + 11.301, + 18.122, + 18.851, + 18.851, + 18.851, + 14.531, 0.0, 0.0, 0.0, - 1.558, - 6.924, - 21.959, - 31.876, - 31.876, - 31.876, - 31.876, - 19.428, 0.0, 0.0, 0.0, @@ -101276,17 +101251,17 @@ 0.0, 0.0, 0.0, + 0.795, + 3.533, + 11.204, + 17.952, + 18.851, + 18.851, + 18.851, + 14.858, 0.0, 0.0, 0.0, - 1.702, - 6.879, - 19.296, - 31.724, - 31.876, - 31.876, - 31.876, - 22.145, 0.0, 0.0, 0.0, @@ -101300,16 +101275,17 @@ 0.0, 0.0, 0.0, + 0.868, + 3.51, + 9.845, + 16.186, + 18.851, + 18.851, + 18.851, + 17.933, 0.0, 0.0, 0.0, - 1.719, - 7.15, - 20.02, - 31.876, - 31.876, - 31.876, - 25.93, 0.0, 0.0, 0.0, @@ -101323,18 +101299,18 @@ 0.0, 0.0, 0.0, + 0.877, + 3.648, + 10.214, + 16.631, + 18.851, + 18.851, + 18.851, + 7.755, 0.0, 0.0, 0.0, 0.0, - 1.664, - 6.797, - 20.874, - 31.876, - 31.876, - 31.876, - 31.876, - 20.534, 0.0, 0.0, 0.0, @@ -101347,18 +101323,18 @@ 0.0, 0.0, 0.0, + 0.849, + 3.468, + 10.65, + 16.938, + 18.851, + 18.851, + 18.851, + 16.437, 0.0, 0.0, 0.0, 0.0, - 1.618, - 6.902, - 21.027, - 31.876, - 31.876, - 31.876, - 31.876, - 20.323, 0.0, 0.0, 0.0, @@ -101371,18 +101347,18 @@ 0.0, 0.0, 0.0, + 0.825, + 3.521, + 10.728, + 17.481, + 18.851, + 18.851, + 18.851, + 15.787, 0.0, 0.0, 0.0, 0.0, - 1.704, - 7.16, - 22.42, - 31.876, - 31.876, - 31.876, - 31.876, - 18.584, 0.0, 0.0, 0.0, @@ -101395,18 +101371,18 @@ 0.0, 0.0, 0.0, + 0.869, + 3.653, + 11.439, + 18.663, + 18.851, + 18.851, + 18.851, + 13.717, 0.0, 0.0, 0.0, 0.0, - 1.831, - 7.265, - 23.056, - 31.876, - 31.876, - 31.876, - 31.876, - 17.717, 0.0, 0.0, 0.0, @@ -101419,18 +101395,18 @@ 0.0, 0.0, 0.0, + 0.934, + 3.706, + 11.763, + 18.851, + 18.851, + 18.851, + 18.851, + 13.087, 0.0, 0.0, 0.0, 0.0, - 1.504, - 6.7, - 22.049, - 31.876, - 31.876, - 31.876, - 31.876, - 19.616, 0.0, 0.0, 0.0, @@ -101443,18 +101419,18 @@ 0.0, 0.0, 0.0, + 0.767, + 3.419, + 11.249, + 18.068, + 18.851, + 18.851, + 18.851, + 14.839, 0.0, 0.0, 0.0, 0.0, - 1.212, - 6.487, - 22.695, - 31.876, - 31.876, - 31.876, - 31.876, - 19.476, 0.0, 0.0, 0.0, @@ -101467,17 +101443,18 @@ 0.0, 0.0, 0.0, + 0.618, + 3.309, + 11.579, + 18.768, + 18.851, + 18.851, + 18.851, + 14.067, 0.0, 0.0, 0.0, 0.0, - 1.207, - 6.535, - 22.814, - 31.876, - 31.876, - 31.876, - 23.744, 0.0, 0.0, 0.0, @@ -101490,19 +101467,19 @@ 0.0, 0.0, 0.0, + 0.616, + 3.334, + 11.64, + 18.851, + 18.851, + 18.851, + 18.851, + 4.92, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.165, - 6.6, - 22.665, - 31.876, - 31.876, - 31.876, - 31.876, - 19.439, 0.0, 0.0, 0.0, @@ -101514,19 +101491,19 @@ 0.0, 0.0, 0.0, + 0.594, + 3.367, + 11.564, + 18.627, + 18.851, + 18.851, + 18.851, + 14.189, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.152, - 6.486, - 21.85, - 31.876, - 31.876, - 31.876, - 31.876, - 20.382, 0.0, 0.0, 0.0, @@ -101538,18 +101515,19 @@ 0.0, 0.0, 0.0, + 0.588, + 3.309, + 11.148, + 17.711, + 18.851, + 18.851, + 18.851, + 15.587, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.558, - 6.661, - 20.26, - 31.876, - 31.876, - 31.876, - 26.384, 0.0, 0.0, 0.0, @@ -101561,20 +101539,20 @@ 0.0, 0.0, 0.0, + 0.795, + 3.398, + 10.337, + 16.858, + 18.851, + 18.851, + 18.851, + 7.741, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.975, - 7.552, - 19.96, - 31.876, - 31.876, - 31.876, - 31.876, - 20.382, 0.0, 0.0, 0.0, @@ -101585,20 +101563,20 @@ 0.0, 0.0, 0.0, + 1.008, + 3.853, + 10.184, + 16.703, + 18.851, + 18.851, + 18.851, + 16.594, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.496, - 6.561, - 20.993, - 31.876, - 31.876, - 31.876, - 31.876, - 20.82, 0.0, 0.0, 0.0, @@ -101609,20 +101587,20 @@ 0.0, 0.0, 0.0, + 0.763, + 3.347, + 10.711, + 17.712, + 18.851, + 18.851, + 18.851, + 15.809, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.217, - 6.214, - 21.535, - 31.876, - 31.876, - 31.876, - 31.876, - 20.904, 0.0, 0.0, 0.0, @@ -101633,19 +101611,20 @@ 0.0, 0.0, 0.0, + 0.621, + 3.17, + 10.987, + 18.25, + 18.851, + 18.851, + 18.851, + 15.313, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.397, - 6.445, - 21.148, - 31.876, - 31.876, - 31.876, - 25.531, 0.0, 0.0, 0.0, @@ -101656,6 +101635,14 @@ 0.0, 0.0, 0.0, + 0.713, + 3.288, + 10.79, + 17.717, + 18.851, + 18.851, + 18.851, + 6.863, 0.0, 0.0, 0.0, @@ -101663,15 +101650,6 @@ 0.0, 0.0, 0.0, - 1.436, - 5.334, - 17.213, - 13.688, - 31.876, - 31.876, - 31.876, - 31.876, - 12.198, 0.0, 0.0, 0.0, @@ -101681,20 +101659,21 @@ 0.0, 0.0, 0.0, + 0.733, + 2.721, + 8.782, + 6.984, + 18.851, + 18.851, + 18.323, + 18.851, + 10.799, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.687, - 7.026, - 21.413, - 31.876, - 31.876, - 31.876, - 31.876, - 19.743, 0.0, 0.0, 0.0, @@ -101704,6 +101683,14 @@ 0.0, 0.0, 0.0, + 0.861, + 3.585, + 10.925, + 18.253, + 18.851, + 18.851, + 18.851, + 14.719, 0.0, 0.0, 0.0, @@ -101711,14 +101698,6 @@ 0.0, 0.0, 0.0, - 1.146, - 6.292, - 21.875, - 31.876, - 31.876, - 31.876, - 31.876, - 20.556, 0.0, 0.0, 0.0, @@ -101728,6 +101707,14 @@ 0.0, 0.0, 0.0, + 0.585, + 3.21, + 11.161, + 18.413, + 18.851, + 18.851, + 18.851, + 14.973, 0.0, 0.0, 0.0, @@ -101735,14 +101722,6 @@ 0.0, 0.0, 0.0, - 1.059, - 6.008, - 21.7, - 31.876, - 31.876, - 31.876, - 31.876, - 21.102, 0.0, 0.0, 0.0, @@ -101752,6 +101731,14 @@ 0.0, 0.0, 0.0, + 0.54, + 3.065, + 11.072, + 18.216, + 18.851, + 18.851, + 18.851, + 15.449, 0.0, 0.0, 0.0, @@ -101759,15 +101746,6 @@ 0.0, 0.0, 0.0, - 0.361, - 4.818, - 16.861, - 25.918, - 31.876, - 22.631, - 29.625, - 29.76, - 15.524, 0.0, 0.0, 0.0, @@ -101777,20 +101755,22 @@ 0.0, 0.0, 0.0, + 0.184, + 2.458, + 8.603, + 13.224, + 16.894, + 11.546, + 15.115, + 15.184, + 17.536, + 4.151, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.51, - 5.761, - 19.947, - 31.876, - 31.876, - 31.876, - 31.876, - 23.651, 0.0, 0.0, 0.0, @@ -101799,6 +101779,14 @@ 0.0, 0.0, 0.0, + 0.26, + 2.939, + 10.177, + 16.905, + 18.851, + 18.851, + 18.851, + 18.06, 0.0, 0.0, 0.0, @@ -101807,13 +101795,6 @@ 0.0, 0.0, 0.0, - 1.13, - 5.861, - 20.52, - 31.876, - 31.876, - 31.876, - 27.878, 0.0, 0.0, 0.0, @@ -101822,6 +101803,14 @@ 0.0, 0.0, 0.0, + 0.577, + 2.99, + 10.469, + 17.456, + 18.851, + 18.851, + 18.851, + 7.808, 0.0, 0.0, 0.0, @@ -101831,14 +101820,6 @@ 0.0, 0.0, 0.0, - 0.989, - 5.959, - 21.428, - 31.876, - 31.876, - 31.876, - 31.876, - 21.493, 0.0, 0.0, 0.0, @@ -101846,6 +101827,14 @@ 0.0, 0.0, 0.0, + 0.504, + 3.041, + 10.933, + 18.131, + 18.851, + 18.851, + 18.851, + 15.733, 0.0, 0.0, 0.0, @@ -101855,14 +101844,6 @@ 0.0, 0.0, 0.0, - 0.947, - 5.963, - 21.65, - 31.876, - 31.876, - 31.876, - 31.876, - 21.309, 0.0, 0.0, 0.0, @@ -101870,6 +101851,14 @@ 0.0, 0.0, 0.0, + 0.483, + 3.042, + 11.046, + 18.344, + 18.851, + 18.851, + 18.851, + 15.426, 0.0, 0.0, 0.0, @@ -101879,14 +101868,6 @@ 0.0, 0.0, 0.0, - 0.898, - 5.871, - 21.401, - 31.876, - 31.876, - 31.876, - 31.876, - 21.7, 0.0, 0.0, 0.0, @@ -101894,6 +101875,14 @@ 0.0, 0.0, 0.0, + 0.458, + 2.996, + 10.919, + 18.164, + 18.851, + 18.851, + 18.851, + 15.806, 0.0, 0.0, 0.0, @@ -101903,14 +101892,6 @@ 0.0, 0.0, 0.0, - 0.901, - 5.817, - 21.614, - 31.876, - 31.876, - 31.876, - 31.876, - 21.537, 0.0, 0.0, 0.0, @@ -101918,6 +101899,14 @@ 0.0, 0.0, 0.0, + 0.46, + 2.968, + 11.028, + 18.229, + 18.851, + 18.851, + 18.851, + 15.658, 0.0, 0.0, 0.0, @@ -101927,14 +101916,6 @@ 0.0, 0.0, 0.0, - 0.939, - 5.975, - 21.184, - 31.876, - 31.876, - 31.876, - 31.876, - 21.772, 0.0, 0.0, 0.0, @@ -101942,6 +101923,14 @@ 0.0, 0.0, 0.0, + 0.479, + 3.048, + 10.808, + 17.998, + 18.851, + 18.851, + 18.851, + 16.008, 0.0, 0.0, 0.0, @@ -101951,14 +101940,6 @@ 0.0, 0.0, 0.0, - 1.03, - 5.86, - 20.277, - 31.876, - 31.876, - 31.876, - 31.876, - 22.701, 0.0, 0.0, 0.0, @@ -101966,6 +101947,14 @@ 0.0, 0.0, 0.0, + 0.525, + 2.99, + 10.346, + 17.167, + 18.851, + 18.851, + 18.851, + 17.314, 0.0, 0.0, 0.0, @@ -101976,15 +101965,6 @@ 0.0, 0.0, 0.0, - 0.099, - 3.982, - 4.433, - 4.095, - 31.876, - 31.876, - 31.876, - 3.831, - 12.208, 0.0, 0.0, 0.0, @@ -101992,6 +101972,15 @@ 0.0, 0.0, 0.0, + 0.051, + 2.032, + 2.262, + 2.089, + 18.851, + 18.851, + 18.851, + 1.955, + 6.229, 0.0, 0.0, 0.0, @@ -101999,14 +101988,6 @@ 0.0, 0.0, 0.0, - 0.95, - 5.872, - 19.965, - 31.876, - 31.876, - 31.876, - 31.876, - 23.082, 0.0, 0.0, 0.0, @@ -102014,6 +101995,14 @@ 0.0, 0.0, 0.0, + 0.485, + 2.996, + 10.186, + 16.924, + 18.851, + 18.851, + 18.851, + 17.751, 0.0, 0.0, 0.0, @@ -102023,14 +102012,6 @@ 0.0, 0.0, 0.0, - 0.823, - 5.623, - 20.71, - 31.876, - 31.876, - 31.876, - 31.876, - 22.713, 0.0, 0.0, 0.0, @@ -102038,6 +102019,14 @@ 0.0, 0.0, 0.0, + 0.42, + 2.869, + 10.567, + 17.651, + 18.851, + 18.851, + 18.851, + 16.836, 0.0, 0.0, 0.0, @@ -102047,14 +102036,6 @@ 0.0, 0.0, 0.0, - 0.814, - 5.656, - 20.774, - 31.876, - 31.876, - 31.876, - 31.876, - 22.625, 0.0, 0.0, 0.0, @@ -102062,6 +102043,14 @@ 0.0, 0.0, 0.0, + 0.415, + 2.886, + 10.599, + 17.692, + 18.851, + 18.851, + 18.851, + 16.75, 0.0, 0.0, 0.0, @@ -102071,14 +102060,6 @@ 0.0, 0.0, 0.0, - 0.852, - 5.707, - 20.364, - 31.876, - 31.876, - 31.876, - 31.876, - 22.946, 0.0, 0.0, 0.0, @@ -102086,6 +102067,14 @@ 0.0, 0.0, 0.0, + 0.435, + 2.912, + 10.39, + 17.354, + 18.851, + 18.851, + 18.851, + 17.252, 0.0, 0.0, 0.0, @@ -102095,14 +102084,6 @@ 0.0, 0.0, 0.0, - 0.858, - 5.868, - 20.613, - 31.876, - 31.876, - 31.876, - 31.876, - 22.53, 0.0, 0.0, 0.0, @@ -102110,6 +102091,14 @@ 0.0, 0.0, 0.0, + 0.438, + 2.994, + 10.517, + 17.534, + 18.851, + 18.851, + 18.851, + 16.859, 0.0, 0.0, 0.0, @@ -102119,14 +102108,6 @@ 0.0, 0.0, 0.0, - 0.76, - 5.776, - 20.715, - 31.876, - 31.876, - 31.876, - 31.876, - 22.618, 0.0, 0.0, 0.0, @@ -102134,6 +102115,14 @@ 0.0, 0.0, 0.0, + 0.388, + 2.947, + 10.569, + 17.636, + 18.851, + 18.851, + 18.851, + 16.802, 0.0, 0.0, 0.0, @@ -102143,14 +102132,6 @@ 0.0, 0.0, 0.0, - 0.752, - 5.849, - 20.691, - 31.876, - 31.876, - 31.876, - 31.876, - 1.263, 0.0, 0.0, 0.0, @@ -102158,6 +102139,14 @@ 0.0, 0.0, 0.0, + 0.383, + 2.984, + 10.556, + 17.567, + 18.851, + 18.851, + 18.851, + 11.956, 0.0, 0.0, 0.0, @@ -102167,14 +102156,6 @@ 0.0, 0.0, 0.0, - 0.699, - 5.884, - 20.407, - 31.876, - 31.876, - 31.876, - 31.876, - 22.879, 0.0, 0.0, 0.0, @@ -102182,6 +102163,15 @@ 0.0, 0.0, 0.0, + 0.356, + 3.002, + 10.412, + 17.38, + 18.851, + 18.851, + 18.851, + 17.192, + 0.0, 0.0, 0.0, 0.0, @@ -102192,20 +102182,20 @@ 0.0, 0.0, 0.0, - 3.332, - 0.518, - 27.961, - 31.876, - 31.876, - 31.876, - 31.876, - 18.058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.7, + 0.264, + 14.266, + 18.851, + 18.851, + 18.851, + 18.851, + 13.261, 0.0, 0.0, 0.0, @@ -102215,20 +102205,20 @@ 0.0, 0.0, 0.0, - 0.656, - 5.995, - 20.468, - 31.876, - 31.876, - 31.876, - 31.876, - 22.75, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.335, + 3.059, + 10.443, + 17.386, + 18.851, + 18.851, + 18.851, + 17.119, 0.0, 0.0, 0.0, @@ -102239,20 +102229,20 @@ 0.0, 0.0, 0.0, - 0.555, - 5.773, - 21.078, - 31.876, - 31.876, - 31.876, - 31.876, - 22.464, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.283, + 2.945, + 10.754, + 17.767, + 18.851, + 18.851, + 18.851, + 16.593, 0.0, 0.0, 0.0, @@ -102263,20 +102253,20 @@ 0.0, 0.0, 0.0, - 0.535, - 6.079, - 20.762, - 31.876, - 31.876, - 31.876, - 31.876, - 22.494, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.273, + 3.101, + 10.593, + 17.615, + 18.851, + 18.851, + 18.851, + 16.759, 0.0, 0.0, 0.0, @@ -102287,20 +102277,20 @@ 0.0, 0.0, 0.0, - 0.515, - 6.611, - 20.805, - 31.876, - 31.876, - 31.876, - 31.876, - 21.938, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.263, + 3.373, + 10.615, + 17.724, + 18.851, + 18.851, + 18.851, + 16.367, 0.0, 0.0, 0.0, @@ -102311,20 +102301,20 @@ 0.0, 0.0, 0.0, - 0.541, - 6.247, - 22.568, - 31.876, - 31.876, - 31.876, - 31.876, - 3.828, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.276, + 3.187, + 11.514, + 18.851, + 18.851, + 18.851, + 18.851, + 13.543, 0.0, 0.0, 0.0, @@ -102335,20 +102325,20 @@ 0.0, 0.0, 0.0, - 0.381, - 6.005, - 22.41, - 31.876, - 31.876, - 31.876, - 31.876, - 21.073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.194, + 3.064, + 11.434, + 18.851, + 18.851, + 18.851, + 18.851, + 14.799, 0.0, 0.0, 0.0, @@ -102359,20 +102349,20 @@ 0.0, 0.0, 0.0, - 0.378, - 6.08, - 22.606, - 31.876, - 31.876, - 31.876, - 31.876, - 20.805, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.193, + 3.102, + 11.534, + 18.851, + 18.851, + 18.851, + 18.851, + 14.663, 0.0, 0.0, 0.0, @@ -102383,20 +102373,20 @@ 0.0, 0.0, 0.0, - 0.337, - 6.012, - 22.441, - 31.876, - 31.876, - 31.876, - 31.876, - 21.079, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.172, + 3.067, + 11.45, + 18.851, + 18.851, + 18.851, + 18.851, + 14.802, 0.0, 0.0, 0.0, @@ -102407,20 +102397,20 @@ 0.0, 0.0, 0.0, - 0.297, - 6.002, - 22.325, - 31.876, - 31.876, - 31.876, - 31.876, - 21.245, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.151, + 3.062, + 11.39, + 18.724, + 18.851, + 18.851, + 18.851, + 15.014, 0.0, 0.0, 0.0, @@ -102431,20 +102421,20 @@ 0.0, 0.0, 0.0, - 0.341, - 6.054, - 22.246, - 31.876, - 31.876, - 31.876, - 31.876, - 21.228, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.174, + 3.089, + 11.35, + 18.851, + 18.851, + 18.851, + 18.851, + 14.878, 0.0, 0.0, 0.0, @@ -102455,20 +102445,20 @@ 0.0, 0.0, 0.0, - 0.299, - 5.873, - 21.504, - 31.876, - 31.876, - 31.876, - 31.876, - 22.193, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.153, + 2.996, + 10.972, + 18.146, + 18.851, + 18.851, + 18.851, + 16.076, 0.0, 0.0, 0.0, @@ -102479,20 +102469,20 @@ 0.0, 0.0, 0.0, - 0.294, - 5.831, - 21.31, - 31.876, - 31.876, - 31.876, - 31.876, - 6.446, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.15, + 2.975, + 10.873, + 18.013, + 18.851, + 18.851, + 18.851, + 15.476, 0.0, 0.0, 0.0, @@ -102503,20 +102493,20 @@ 0.0, 0.0, 0.0, - 0.257, - 5.788, - 21.102, - 31.876, - 31.876, - 31.876, - 31.876, - 22.723, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.131, + 2.953, + 10.766, + 17.738, + 18.851, + 18.851, + 18.851, + 16.754, 0.0, 0.0, 0.0, @@ -102527,20 +102517,20 @@ 0.0, 0.0, 0.0, - 0.199, - 5.984, - 21.046, - 31.876, - 31.876, - 31.876, - 31.876, - 22.641, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.101, + 3.053, + 10.738, + 17.784, + 18.851, + 18.851, + 18.851, + 16.666, 0.0, 0.0, 0.0, @@ -102551,20 +102541,20 @@ 0.0, 0.0, 0.0, - 0.171, - 6.056, - 20.941, - 31.876, - 31.876, - 31.876, - 31.876, - 22.702, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.087, + 3.09, + 10.684, + 17.622, + 18.851, + 18.851, + 18.851, + 16.859, 0.0, 0.0, 0.0, @@ -102575,20 +102565,20 @@ 0.0, 0.0, 0.0, - 0.213, - 5.987, - 20.871, - 31.876, - 31.876, - 31.876, - 31.876, - 22.798, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.109, + 3.055, + 10.648, + 17.642, + 18.851, + 18.851, + 18.851, + 16.888, 0.0, 0.0, 0.0, @@ -102599,20 +102589,20 @@ 0.0, 0.0, 0.0, - 0.213, - 5.939, - 21.487, - 31.876, - 31.876, - 31.876, - 31.876, - 22.23, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.109, + 3.03, + 10.963, + 18.219, + 18.851, + 18.851, + 18.851, + 16.021, 0.0, 0.0, 0.0, @@ -102623,20 +102613,20 @@ 0.0, 0.0, 0.0, - 0.255, - 5.763, - 22.394, - 31.876, - 31.876, - 31.876, - 31.876, - 21.457, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.13, + 2.94, + 11.425, + 18.851, + 18.851, + 18.851, + 18.851, + 14.995, 0.0, 0.0, 0.0, @@ -102647,20 +102637,20 @@ 0.0, 0.0, 0.0, - 0.181, - 6.268, - 22.978, - 31.876, - 31.876, - 31.876, - 31.876, - 9.003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.093, + 3.198, + 11.724, + 18.851, + 18.851, + 18.851, + 18.851, + 14.477, 0.0, 0.0, 0.0, @@ -102671,20 +102661,20 @@ 0.0, 0.0, 0.0, - 0.137, - 6.164, - 22.411, - 31.876, - 31.876, - 31.876, - 31.876, - 21.157, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.07, + 3.145, + 11.434, + 18.759, + 18.851, + 18.851, + 18.851, + 14.934, 0.0, 0.0, 0.0, @@ -102695,20 +102685,20 @@ 0.0, 0.0, 0.0, - 0.1, - 6.071, - 22.357, - 31.876, - 31.876, - 31.876, - 31.876, - 21.341, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.051, + 3.097, + 11.407, + 18.789, + 18.851, + 18.851, + 18.851, + 14.998, 0.0, 0.0, 0.0, @@ -102719,20 +102709,20 @@ 0.0, 0.0, 0.0, - 0.107, - 6.36, - 23.135, - 31.876, - 31.876, - 31.876, - 31.876, - 20.267, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.055, + 3.245, + 11.803, + 18.851, + 18.851, + 18.851, + 18.851, + 14.388, 0.0, 0.0, 0.0, @@ -102743,20 +102733,20 @@ 0.0, 0.0, 0.0, - 0.067, - 6.321, - 22.723, - 31.876, - 31.876, - 31.876, - 31.876, - 20.758, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.034, + 3.225, + 11.593, + 18.792, + 18.851, + 18.851, + 18.851, + 14.697, 0.0, 0.0, 0.0, @@ -102767,20 +102757,20 @@ 0.0, 0.0, 0.0, - 0.022, - 6.028, - 21.212, - 31.876, - 31.876, - 31.876, - 31.876, - 22.607, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.011, + 3.076, + 10.822, + 18.055, + 18.851, + 18.851, + 18.851, + 16.378, 0.0, 0.0, 0.0, @@ -102792,19 +102782,19 @@ 0.0, 0.0, 0.0, - 6.035, - 20.671, - 31.814, - 31.876, - 31.876, - 31.876, - 23.226, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.079, + 10.546, + 16.231, + 18.851, + 18.851, + 18.851, + 18.485, 0.0, 0.0, 0.0, @@ -102816,19 +102806,19 @@ 0.0, 0.0, 0.0, - 5.952, - 21.263, - 31.876, - 31.876, - 31.876, - 31.876, - 15.028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.037, + 10.848, + 17.899, + 18.851, + 18.851, + 18.851, + 16.558, 0.0, 0.0, 0.0, @@ -102840,19 +102830,19 @@ 0.0, 0.0, 0.0, - 5.993, - 21.914, - 31.876, - 31.876, - 31.876, - 31.876, - 21.962, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.058, + 11.181, + 17.956, + 18.851, + 18.851, + 18.851, + 16.148, 0.0, 0.0, 0.0, @@ -102864,19 +102854,19 @@ 0.0, 0.0, 0.0, - 6.041, - 21.757, - 31.876, - 31.876, - 31.876, - 31.876, - 22.071, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.082, + 11.1, + 17.614, + 18.851, + 18.851, + 18.851, + 16.546, 0.0, 0.0, 0.0, @@ -102888,19 +102878,19 @@ 0.0, 0.0, 0.0, - 2.692, - 21.432, - 31.876, - 31.876, - 31.876, - 31.876, - 25.745, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.373, + 10.935, + 17.88, + 18.851, + 18.851, + 18.851, + 18.154, 0.0, 0.0, 0.0, @@ -102912,19 +102902,19 @@ 0.0, 0.0, 0.0, - 5.98, - 20.555, - 31.876, - 31.876, - 31.876, - 31.876, - 23.333, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.051, + 10.487, + 17.084, + 18.851, + 18.851, + 18.851, + 17.72, 0.0, 0.0, 0.0, @@ -102936,19 +102926,19 @@ 0.0, 0.0, 0.0, - 6.473, - 22.975, - 31.876, - 31.876, - 31.876, - 31.876, - 20.421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.303, + 11.722, + 18.64, + 18.851, + 18.851, + 18.851, + 14.677, 0.0, 0.0, 0.0, @@ -102960,21 +102950,21 @@ 0.0, 0.0, 0.0, - 6.518, - 23.237, - 31.876, - 31.876, - 31.876, - 31.876, - 13.137, - 1.361, - 1.053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.325, + 11.856, + 18.544, + 18.851, + 18.851, + 18.851, + 6.703, + 0.695, + 0.537, 0.0, 0.0, 0.0, @@ -102984,19 +102974,19 @@ 0.0, 0.0, 0.0, - 6.336, - 22.544, - 31.876, - 31.876, - 31.876, - 31.876, - 20.99, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.232, + 11.502, + 18.589, + 18.851, + 18.851, + 18.851, + 15.018, 0.0, 0.0, 0.0, @@ -103008,19 +102998,19 @@ 0.0, 0.0, 0.0, - 6.369, - 22.729, - 31.876, - 31.876, - 31.876, - 31.876, - 16.958, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.25, + 11.596, + 18.481, + 18.851, + 18.851, + 18.851, + 15.015, 0.0, 0.0, 0.0, @@ -103032,19 +103022,19 @@ 0.0, 0.0, 0.0, - 6.275, - 22.14, - 31.876, - 31.876, - 31.876, - 31.876, - 21.453, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.202, + 11.296, + 18.308, + 18.851, + 18.851, + 18.851, + 15.536, 0.0, 0.0, 0.0, @@ -103056,19 +103046,19 @@ 0.0, 0.0, 0.0, - 6.309, - 22.121, - 31.876, - 31.876, - 31.876, - 31.876, - 21.439, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.219, + 11.286, + 18.452, + 18.851, + 18.851, + 18.851, + 15.384, 0.0, 0.0, 0.0, @@ -103080,19 +103070,19 @@ 0.0, 0.0, 0.0, - 6.405, - 22.431, - 31.876, - 31.876, - 31.876, - 31.876, - 21.032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.268, + 11.445, + 18.543, + 18.851, + 18.851, + 18.851, + 15.086, 0.0, 0.0, 0.0, @@ -103104,19 +103094,19 @@ 0.0, 0.0, 0.0, - 6.856, - 24.35, - 31.876, - 31.876, - 31.876, - 31.876, - 18.663, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.498, + 12.424, + 18.851, + 18.851, + 18.851, + 18.851, + 13.569, 0.0, 0.0, 0.0, @@ -103128,19 +103118,19 @@ 0.0, 0.0, 0.0, - 7.023, - 24.748, - 31.876, - 31.876, - 31.876, - 31.876, - 18.099, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.583, + 12.626, + 18.851, + 18.851, + 18.851, + 18.851, + 13.282, 0.0, 0.0, 0.0, @@ -103152,19 +103142,19 @@ 0.0, 0.0, 0.0, - 6.871, - 23.893, - 31.876, - 31.876, - 31.876, - 31.876, - 19.105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.506, + 12.191, + 18.851, + 18.851, + 18.851, + 18.851, + 13.795, 0.0, 0.0, 0.0, @@ -103176,19 +103166,19 @@ 0.0, 0.0, 0.0, - 6.77, - 24.113, - 31.876, - 31.876, - 31.876, - 31.876, - 18.986, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.454, + 12.302, + 18.851, + 18.851, + 18.851, + 18.851, + 13.734, 0.0, 0.0, 0.0, @@ -103200,19 +103190,19 @@ 0.0, 0.0, 0.0, - 6.558, - 23.506, - 31.876, - 31.876, - 31.876, - 31.876, - 19.805, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.346, + 11.993, + 18.851, + 18.851, + 18.851, + 18.851, + 14.152, 0.0, 0.0, 0.0, @@ -103224,19 +103214,19 @@ 0.0, 0.0, 0.0, - 6.338, - 22.971, - 31.876, - 31.876, - 31.876, - 31.876, - 20.56, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.234, + 11.72, + 18.851, + 18.851, + 18.851, + 18.851, + 14.538, 0.0, 0.0, 0.0, @@ -103248,19 +103238,19 @@ 0.0, 0.0, 0.0, - 5.947, - 20.988, - 31.876, - 31.876, - 31.876, - 31.876, - 22.934, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.034, + 10.708, + 17.948, + 18.851, + 18.851, + 18.851, + 16.652, 0.0, 0.0, 0.0, @@ -103272,19 +103262,19 @@ 0.0, 0.0, 0.0, - 7.144, - 25.521, - 31.876, - 31.876, - 31.876, - 31.876, - 17.204, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.645, + 13.021, + 18.851, + 18.851, + 18.851, + 18.851, + 12.825, 0.0, 0.0, 0.0, @@ -103296,19 +103286,19 @@ 0.0, 0.0, 0.0, - 7.619, - 26.948, - 31.876, - 31.876, - 31.876, - 31.876, - 15.302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.887, + 13.749, + 18.851, + 18.851, + 18.851, + 18.851, + 11.855, 0.0, 0.0, 0.0, @@ -103320,19 +103310,19 @@ 0.0, 0.0, 0.0, - 7.555, - 26.529, - 31.876, - 31.876, - 31.876, - 31.876, - 15.785, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.855, + 13.535, + 18.851, + 18.851, + 18.851, + 18.851, + 12.101, 0.0, 0.0, 0.0, @@ -103344,19 +103334,19 @@ 0.0, 0.0, 0.0, - 7.357, - 25.677, - 31.876, - 31.876, - 31.876, - 31.876, - 16.836, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.753, + 13.1, + 18.851, + 18.851, + 18.851, + 18.851, + 12.637, 0.0, 0.0, 0.0, @@ -103368,19 +103358,19 @@ 0.0, 0.0, 0.0, - 6.825, - 23.945, - 31.876, - 31.876, - 31.876, - 31.876, - 19.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.482, + 12.217, + 18.851, + 18.851, + 18.851, + 18.851, + 13.793, 0.0, 0.0, 0.0, @@ -103392,19 +103382,19 @@ 0.0, 0.0, 0.0, - 7.401, - 26.138, - 31.876, - 31.876, - 31.876, - 31.876, - 16.33, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.776, + 13.336, + 18.851, + 18.851, + 18.851, + 18.851, + 12.379, 0.0, 0.0, 0.0, @@ -103416,19 +103406,19 @@ 0.0, 0.0, 0.0, - 7.235, - 25.155, - 31.876, - 31.876, - 31.876, - 31.876, - 17.479, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.691, + 12.834, + 18.851, + 18.851, + 18.851, + 18.851, + 12.966, 0.0, 0.0, 0.0, @@ -103440,19 +103430,19 @@ 0.0, 0.0, 0.0, - 6.246, - 22.512, - 31.876, - 31.876, - 31.876, - 31.876, - 21.11, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.187, + 11.486, + 18.851, + 18.851, + 18.851, + 18.851, + 14.818, 0.0, 0.0, 0.0, @@ -103464,19 +103454,19 @@ 0.0, 0.0, 0.0, - 7.55, - 26.843, - 31.876, - 31.876, - 31.876, - 31.876, - 15.477, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.852, + 13.695, + 18.851, + 18.851, + 18.851, + 18.851, + 11.944, 0.0, 0.0, 0.0, @@ -103488,19 +103478,19 @@ 0.0, 0.0, 0.0, - 7.514, - 26.469, - 31.876, - 31.876, - 31.876, - 31.876, - 15.886, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.834, + 13.504, + 18.851, + 18.851, + 18.851, + 18.851, + 12.153, 0.0, 0.0, 0.0, @@ -103512,19 +103502,19 @@ 0.0, 0.0, 0.0, - 7.346, - 26.295, - 31.876, - 31.876, - 31.876, - 31.876, - 16.228, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.748, + 13.416, + 18.851, + 18.851, + 18.851, + 18.851, + 12.328, 0.0, 0.0, 0.0, @@ -103536,19 +103526,19 @@ 0.0, 0.0, 0.0, - 6.829, - 24.531, - 31.876, - 31.876, - 31.876, - 31.876, - 18.509, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.484, + 12.516, + 18.851, + 18.851, + 18.851, + 18.851, + 13.491, 0.0, 0.0, 0.0, @@ -103560,19 +103550,19 @@ 0.0, 0.0, 0.0, - 7.389, - 25.824, - 31.876, - 31.876, - 31.876, - 31.876, - 16.657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.77, + 13.175, + 18.851, + 18.851, + 18.851, + 18.851, + 12.546, 0.0, 0.0, 0.0, @@ -103584,19 +103574,19 @@ 0.0, 0.0, 0.0, - 5.401, - 22.222, - 31.876, - 31.876, - 31.876, - 31.876, - 22.246, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.755, + 11.338, + 16.325, + 18.851, + 18.851, + 18.851, + 17.923, 0.0, 0.0, 0.0, @@ -103608,19 +103598,19 @@ 0.0, 0.0, 0.0, - 6.541, - 24.072, - 31.876, - 31.876, - 31.876, - 31.876, - 19.256, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.337, + 12.282, + 18.851, + 18.851, + 18.851, + 18.851, + 13.872, 0.0, 0.0, 0.0, @@ -103632,19 +103622,19 @@ 0.0, 0.0, 0.0, - 6.62, - 24.403, - 31.876, - 31.876, - 31.876, - 31.876, - 18.846, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.378, + 12.45, + 18.851, + 18.851, + 18.851, + 18.851, + 13.663, 0.0, 0.0, 0.0, @@ -103656,19 +103646,19 @@ 0.0, 0.0, 0.0, - 6.821, - 24.395, - 31.876, - 31.876, - 31.876, - 31.876, - 18.653, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.48, + 12.447, + 18.851, + 18.851, + 18.851, + 18.851, + 13.564, 0.0, 0.0, 0.0, @@ -103680,19 +103670,19 @@ 0.0, 0.0, 0.0, - 3.05, - 21.433, - 31.876, - 31.876, - 31.876, - 31.876, - 25.386, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.556, + 10.935, + 18.851, + 18.851, + 18.851, + 18.851, + 17.0, 0.0, 0.0, 0.0, @@ -103704,19 +103694,19 @@ 0.0, 0.0, 0.0, - 6.6, - 24.589, - 31.876, - 31.876, - 31.876, - 31.876, - 18.68, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.367, + 12.545, + 18.851, + 18.851, + 18.851, + 18.851, + 13.578, 0.0, 0.0, 0.0, @@ -103728,19 +103718,19 @@ 0.0, 0.0, 0.0, - 6.173, - 24.948, - 31.876, - 31.876, - 31.876, - 31.876, - 18.748, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.149, + 12.729, + 18.851, + 18.851, + 18.851, + 18.851, + 13.613, 0.0, 0.0, 0.0, @@ -103752,21 +103742,21 @@ 0.0, 0.0, 0.0, - 5.444, - 3.621, - 16.532, - 31.876, - 26.745, - 31.876, - 31.876, - 10.141, - 15.479, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.778, + 1.847, + 8.435, + 18.851, + 13.645, + 18.851, + 18.851, + 5.174, + 7.898, 0.0, 0.0, 0.0, @@ -103776,20 +103766,20 @@ 0.0, 0.0, 0.0, - 7.207, - 27.584, - 31.876, - 31.876, - 31.876, - 31.876, - 6.826, - 8.252, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.677, + 14.074, + 18.851, + 18.851, + 18.851, + 18.851, + 3.482, + 8.258, 0.0, 0.0, 0.0, @@ -103800,19 +103790,19 @@ 0.0, 0.0, 0.0, - 7.273, - 27.146, - 31.876, - 31.876, - 31.876, - 31.876, - 15.45, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.711, + 13.85, + 18.851, + 18.851, + 18.851, + 18.851, + 11.93, 0.0, 0.0, 0.0, @@ -103824,19 +103814,19 @@ 0.0, 0.0, 0.0, - 6.92, - 26.362, - 31.876, - 31.876, - 31.876, - 31.876, - 16.587, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.531, + 13.45, + 18.851, + 18.851, + 18.851, + 18.851, + 12.511, 0.0, 0.0, 0.0, @@ -103848,19 +103838,19 @@ 0.0, 0.0, 0.0, - 6.9, - 26.471, - 31.876, - 31.876, - 31.876, - 31.876, - 16.498, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.52, + 13.506, + 18.851, + 18.851, + 18.851, + 18.851, + 12.465, 0.0, 0.0, 0.0, @@ -103872,19 +103862,19 @@ 0.0, 0.0, 0.0, - 6.528, - 25.611, - 31.876, - 31.876, - 31.876, - 31.876, - 17.731, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.33, + 13.067, + 18.851, + 18.851, + 18.851, + 18.851, + 13.094, 0.0, 0.0, 0.0, @@ -103896,19 +103886,19 @@ 0.0, 0.0, 0.0, - 6.405, - 25.59, - 31.876, - 31.876, - 31.876, - 31.876, - 17.875, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.268, + 13.056, + 18.851, + 18.851, + 18.851, + 18.851, + 13.168, 0.0, 0.0, 0.0, @@ -103920,19 +103910,19 @@ 0.0, 0.0, 0.0, - 6.586, - 26.121, - 31.876, - 31.876, - 31.876, - 31.876, - 17.162, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.36, + 13.327, + 18.851, + 18.851, + 18.851, + 18.851, + 12.804, 0.0, 0.0, 0.0, @@ -103944,19 +103934,19 @@ 0.0, 0.0, 0.0, - 6.505, - 26.008, - 31.876, - 31.876, - 31.876, - 31.876, - 17.357, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.319, + 13.269, + 18.851, + 18.851, + 18.851, + 18.851, + 12.903, 0.0, 0.0, 0.0, @@ -103968,19 +103958,19 @@ 0.0, 0.0, 0.0, - 6.348, - 25.13, - 31.876, - 31.876, - 31.876, - 31.876, - 18.391, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.239, + 12.822, + 18.851, + 18.851, + 18.851, + 18.851, + 13.431, 0.0, 0.0, 0.0, @@ -103992,19 +103982,19 @@ 0.0, 0.0, 0.0, - 5.446, - 22.009, - 31.876, - 31.876, - 31.876, - 31.876, - 22.414, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.779, + 11.229, + 18.851, + 18.851, + 18.851, + 18.851, + 15.484, 0.0, 0.0, 0.0, @@ -104016,19 +104006,19 @@ 0.0, 0.0, 0.0, - 5.776, - 24.677, - 31.876, - 31.876, - 31.876, - 31.876, - 19.416, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.947, + 12.59, + 18.851, + 18.851, + 18.851, + 18.851, + 13.954, 0.0, 0.0, 0.0, @@ -104040,19 +104030,19 @@ 0.0, 0.0, 0.0, - 5.86, - 25.752, - 31.876, - 31.876, - 31.876, - 31.876, - 18.258, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.99, + 13.139, + 18.851, + 18.851, + 18.851, + 18.851, + 13.363, 0.0, 0.0, 0.0, @@ -104064,19 +104054,19 @@ 0.0, 0.0, 0.0, - 5.928, - 26.126, - 31.876, - 31.876, - 31.876, - 31.876, - 17.815, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.025, + 13.33, + 18.851, + 18.851, + 18.851, + 18.851, + 13.137, 0.0, 0.0, 0.0, @@ -104088,19 +104078,19 @@ 0.0, 0.0, 0.0, - 5.302, - 25.638, - 31.876, - 31.876, - 31.876, - 31.876, - 18.93, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.705, + 13.08, + 18.851, + 18.851, + 18.851, + 18.851, + 13.706, 0.0, 0.0, 0.0, @@ -104112,19 +104102,19 @@ 0.0, 0.0, 0.0, - 4.702, - 25.126, - 31.876, - 31.876, - 31.876, - 31.876, - 20.041, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.399, + 12.819, + 18.851, + 18.851, + 18.851, + 18.851, + 14.273, 0.0, 0.0, 0.0, @@ -104136,19 +104126,19 @@ 0.0, 0.0, 0.0, - 4.308, - 24.871, - 31.876, - 31.876, - 31.876, - 31.876, - 20.69, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.198, + 12.689, + 18.851, + 18.851, + 18.851, + 18.851, + 14.604, 0.0, 0.0, 0.0, @@ -104160,19 +104150,19 @@ 0.0, 0.0, 0.0, - 4.037, - 25.202, - 31.876, - 31.876, - 31.876, - 31.876, - 20.629, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.06, + 12.858, + 18.851, + 18.851, + 18.851, + 18.851, + 14.573, 0.0, 0.0, 0.0, @@ -104184,19 +104174,19 @@ 0.0, 0.0, 0.0, - 3.894, - 25.228, - 31.876, - 31.876, - 31.876, - 31.876, - 20.748, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.987, + 12.871, + 18.851, + 18.851, + 18.851, + 18.851, + 14.633, 0.0, 0.0, 0.0, @@ -104208,19 +104198,19 @@ 0.0, 0.0, 0.0, - 2.891, - 22.647, - 31.876, - 31.876, - 31.876, - 31.876, - 24.331, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.475, + 11.555, + 18.851, + 18.851, + 18.851, + 18.851, + 16.462, 0.0, 0.0, 0.0, @@ -104232,19 +104222,19 @@ 0.0, 0.0, 0.0, - 2.649, - 22.347, - 31.876, - 31.876, - 31.876, - 31.876, - 24.873, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.351, + 11.402, + 18.851, + 18.851, + 18.851, + 18.851, + 16.738, 0.0, 0.0, 0.0, @@ -104256,19 +104246,19 @@ 0.0, 0.0, 0.0, - 2.595, - 23.098, - 31.876, - 31.876, - 31.876, - 31.876, - 24.176, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.324, + 11.784, + 18.851, + 18.851, + 18.851, + 18.851, + 16.383, 0.0, 0.0, 0.0, @@ -104280,19 +104270,19 @@ 0.0, 0.0, 0.0, - 3.137, - 26.602, - 31.876, - 31.876, - 31.876, - 31.876, - 20.13, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.601, + 13.573, + 18.851, + 18.851, + 18.851, + 18.851, + 14.318, 0.0, 0.0, 0.0, @@ -104304,19 +104294,19 @@ 0.0, 0.0, 0.0, - 2.921, - 26.425, - 31.876, - 31.876, - 31.876, - 31.876, - 20.523, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.49, + 13.482, + 18.851, + 18.851, + 18.851, + 18.851, + 14.519, 0.0, 0.0, 0.0, @@ -104328,19 +104318,19 @@ 0.0, 0.0, 0.0, - 2.563, - 25.599, - 31.876, - 31.876, - 31.876, - 31.876, - 21.707, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.308, + 13.061, + 18.851, + 18.851, + 18.851, + 18.851, + 15.123, 0.0, 0.0, 0.0, @@ -104352,19 +104342,19 @@ 0.0, 0.0, 0.0, - 2.37, - 25.363, - 31.876, - 31.876, - 31.876, - 31.876, - 22.137, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.209, + 12.94, + 18.851, + 18.851, + 18.851, + 18.851, + 15.342, 0.0, 0.0, 0.0, @@ -104376,19 +104366,19 @@ 0.0, 0.0, 0.0, - 2.221, - 24.891, - 31.876, - 31.876, - 31.876, - 31.876, - 22.756, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.133, + 12.7, + 18.851, + 18.851, + 18.851, + 18.851, + 15.658, 0.0, 0.0, 0.0, @@ -104400,19 +104390,20 @@ 0.0, 0.0, 0.0, - 1.887, - 24.365, - 31.876, - 31.876, - 31.876, - 31.876, - 23.617, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.963, + 12.431, + 18.851, + 18.851, + 18.851, + 17.887, + 12.662, + 4.4, 0.0, 0.0, 0.0, @@ -104424,18 +104415,18 @@ 0.0, 0.0, 0.0, - 1.08, - 23.317, - 31.876, - 31.876, - 31.876, - 31.876, - 25.472, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.551, + 11.897, + 18.851, + 18.851, + 18.851, + 18.851, + 17.044, 0.0, 0.0, 0.0, @@ -104448,18 +104439,18 @@ 0.0, 0.0, 0.0, - 1.421, - 26.249, - 31.876, - 31.876, - 31.876, - 31.876, - 22.199, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.725, + 13.392, + 18.851, + 18.851, + 18.851, + 18.851, + 15.374, 0.0, 0.0, 0.0, @@ -104472,18 +104463,18 @@ 0.0, 0.0, 0.0, - 1.177, - 25.33, - 31.876, - 31.876, - 31.876, - 31.876, - 23.362, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.601, + 12.924, + 18.851, + 18.851, + 18.851, + 18.851, + 15.967, 0.0, 0.0, 0.0, @@ -104496,18 +104487,18 @@ 0.0, 0.0, 0.0, - 0.843, - 23.879, - 31.876, - 31.876, - 31.876, - 31.876, - 25.147, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.43, + 12.183, + 18.851, + 18.851, + 18.851, + 18.851, + 16.878, 0.0, 0.0, 0.0, @@ -104520,18 +104511,18 @@ 0.0, 0.0, 0.0, - 0.677, - 23.366, - 31.876, - 31.876, - 31.876, - 31.876, - 25.826, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.345, + 11.922, + 18.851, + 18.851, + 18.851, + 18.851, + 17.225, 0.0, 0.0, 0.0, @@ -104544,18 +104535,18 @@ 0.0, 0.0, 0.0, - 0.622, - 23.439, - 31.876, - 31.876, - 31.876, - 31.876, - 25.808, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.317, + 11.959, + 18.851, + 18.851, + 18.851, + 18.851, + 17.215, 0.0, 0.0, 0.0, @@ -104568,18 +104559,18 @@ 0.0, 0.0, 0.0, - 0.24, - 22.932, - 31.876, - 31.876, - 31.876, - 31.876, - 26.697, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.123, + 11.7, + 18.851, + 18.851, + 18.851, + 18.851, + 17.668, 0.0, 0.0, 0.0, @@ -104592,18 +104583,18 @@ 0.0, 0.0, 0.0, - 0.33, - 22.336, - 31.876, - 31.876, - 31.876, - 31.876, - 27.203, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.168, + 11.396, + 18.851, + 18.851, + 18.851, + 18.851, + 17.927, 0.0, 0.0, 0.0, @@ -104617,17 +104608,17 @@ 0.0, 0.0, 0.0, - 22.931, - 31.876, - 31.876, - 31.876, - 31.876, - 26.938, 0.0, 0.0, 0.0, 0.0, 0.0, + 11.7, + 18.851, + 18.851, + 18.851, + 18.851, + 17.792, 0.0, 0.0, 0.0, @@ -104641,18 +104632,18 @@ 0.0, 0.0, 0.0, - 17.899, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 0.094, 0.0, 0.0, 0.0, 0.0, 0.0, + 9.132, + 18.108, + 18.851, + 18.851, + 18.851, + 18.851, + 2.251, 0.0, 0.0, 0.0, @@ -104665,18 +104656,18 @@ 0.0, 0.0, 0.0, - 18.102, - 21.929, - 31.876, - 31.876, - 31.876, - 31.876, - 9.838, 0.0, 0.0, 0.0, 0.0, 0.0, + 9.236, + 11.188, + 18.851, + 18.851, + 18.851, + 18.851, + 9.067, 0.0, 0.0, 0.0, @@ -104689,18 +104680,18 @@ 0.0, 0.0, 0.0, - 7.838, - 22.472, - 31.876, - 31.876, - 31.876, - 31.876, - 19.559, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.999, + 11.465, + 18.851, + 18.851, + 18.851, + 18.851, + 14.027, 0.0, 0.0, 0.0, @@ -104713,18 +104704,18 @@ 0.0, 0.0, 0.0, - 1.588, - 31.876, - 30.315, - 31.876, - 31.876, - 31.876, - 17.966, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.81, + 18.851, + 15.467, + 18.851, + 18.851, + 18.851, + 13.214, 0.0, 0.0, 0.0, @@ -104737,17 +104728,18 @@ 0.0, 0.0, 0.0, - 19.789, - 31.876, - 31.876, - 31.876, - 31.876, - 30.08, 0.0, 0.0, 0.0, 0.0, 0.0, + 10.097, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.544, 0.0, 0.0, 0.0, @@ -104761,16 +104753,16 @@ 0.0, 0.0, 0.0, - 23.431, - 31.876, - 31.876, - 31.876, - 31.876, - 26.438, 0.0, 0.0, 0.0, 0.0, + 11.955, + 18.851, + 18.851, + 18.851, + 18.851, + 17.537, 0.0, 0.0, 0.0, @@ -104785,16 +104777,16 @@ 0.0, 0.0, 0.0, - 22.056, - 31.876, - 31.876, - 31.876, - 31.876, - 27.813, 0.0, 0.0, 0.0, 0.0, + 11.253, + 18.851, + 18.851, + 18.851, + 18.851, + 18.238, 0.0, 0.0, 0.0, @@ -104809,18 +104801,18 @@ 0.0, 0.0, 0.0, - 7.745, - 24.869, - 31.876, - 31.876, - 31.876, - 27.948, - 19.744, - 1.439, 0.0, 0.0, 0.0, 0.0, + 3.951, + 12.688, + 18.851, + 18.851, + 18.851, + 14.259, + 10.074, + 3.987, 0.0, 0.0, 0.0, @@ -104833,17 +104825,18 @@ 0.0, 0.0, 0.0, - 19.208, - 17.805, - 31.876, - 31.876, - 31.876, - 13.095, - 31.637, 0.0, 0.0, 0.0, 0.0, + 9.8, + 9.084, + 18.851, + 18.851, + 18.851, + 6.681, + 18.851, + 3.926, 0.0, 0.0, 0.0, @@ -104857,15 +104850,16 @@ 0.0, 0.0, 0.0, - 20.198, - 31.876, - 31.876, - 31.876, - 31.876, - 29.671, 0.0, 0.0, 0.0, + 10.305, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.336, 0.0, 0.0, 0.0, @@ -104881,14 +104875,15 @@ 0.0, 0.0, 0.0, - 19.415, - 31.876, - 31.876, - 31.876, - 31.876, - 30.454, 0.0, 0.0, + 9.906, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.735, 0.0, 0.0, 0.0, @@ -104905,14 +104900,14 @@ 0.0, 0.0, 0.0, - 6.339, - 24.146, - 31.876, - 31.876, - 31.876, - 31.876, - 19.383, 0.0, + 3.234, + 12.32, + 16.537, + 18.851, + 18.851, + 18.851, + 16.251, 0.0, 0.0, 0.0, @@ -104929,13 +104924,14 @@ 0.0, 0.0, 0.0, - 19.857, - 31.876, - 31.876, - 31.876, - 31.876, - 30.012, 0.0, + 10.131, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 0.509, 0.0, 0.0, 0.0, @@ -104953,13 +104949,13 @@ 0.0, 0.0, 0.0, - 6.402, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.591, + 3.266, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 7.374, 0.0, 0.0, 0.0, @@ -104977,13 +104973,13 @@ 0.0, 0.0, 0.0, - 6.397, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 11.596, + 3.264, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 7.377, 0.0, 0.0, 0.0, @@ -105001,13 +104997,13 @@ 0.0, 0.0, 0.0, - 7.048, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 10.944, + 3.596, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 7.044, 0.0, 0.0, 0.0, @@ -105025,13 +105021,13 @@ 0.0, 0.0, 0.0, - 5.16, - 20.946, - 31.876, - 31.876, - 31.876, - 31.876, - 23.763, + 2.633, + 10.687, + 16.885, + 18.851, + 18.851, + 18.851, + 18.138, 0.0, 0.0, 0.0, @@ -105049,13 +105045,13 @@ 0.0, 0.0, 0.0, - 5.253, - 22.21, - 31.876, - 31.876, - 31.876, - 31.876, - 22.407, + 2.68, + 11.332, + 18.851, + 18.851, + 18.851, + 18.851, + 15.48, 0.0, 0.0, 0.0, @@ -105073,13 +105069,13 @@ 0.0, 0.0, 0.0, - 16.053, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 1.94, + 8.19, + 18.751, + 18.851, + 18.851, + 18.851, + 18.851, + 2.55, 0.0, 0.0, 0.0, @@ -105097,14 +105093,14 @@ 0.0, 0.0, 0.0, - 0.979, - 11.424, - 17.071, - 0.776, - 4.615, - 1.697, - 2.141, - 6.267, + 0.499, + 5.828, + 8.71, + 0.396, + 2.355, + 0.866, + 1.092, + 3.198, 0.0, 0.0, 0.0, @@ -105121,13 +105117,13 @@ 0.0, 0.0, 0.0, - 14.09, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 3.902, + 7.189, + 17.92, + 18.851, + 18.851, + 18.851, + 18.851, + 4.383, 0.0, 0.0, 0.0, @@ -105145,14 +105141,14 @@ 0.0, 0.0, 0.0, - 2.96, - 6.413, - 5.631, - 9.193, - 31.656, - 30.277, - 31.876, - 29.202, + 1.51, + 3.272, + 2.873, + 4.69, + 16.151, + 15.447, + 18.851, + 14.899, 0.0, 0.0, 0.0, @@ -105169,14 +105165,14 @@ 0.0, 0.0, 0.0, - 13.526, - 0.29, - 31.876, - 27.618, - 31.876, - 31.876, - 16.369, - 0.332, + 6.901, + 0.148, + 18.851, + 14.091, + 17.707, + 18.851, + 8.352, + 0.169, 0.0, 0.0, 0.0, @@ -105193,13 +105189,13 @@ 0.0, 0.0, 0.0, - 14.064, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 3.929, + 7.175, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 3.465, 0.0, 0.0, 0.0, @@ -105217,13 +105213,13 @@ 0.0, 0.0, 0.0, - 14.028, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 3.965, + 7.157, + 18.605, + 18.851, + 18.851, + 18.851, + 18.851, + 3.729, 0.0, 0.0, 0.0, @@ -105241,13 +105237,13 @@ 0.0, 0.0, 0.0, - 13.197, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 4.796, + 6.733, + 18.721, + 18.851, + 18.851, + 18.851, + 18.851, + 4.037, 0.0, 0.0, 0.0, @@ -105265,13 +105261,13 @@ 0.0, 0.0, 0.0, - 13.26, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 4.733, + 6.765, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 3.875, 0.0, 0.0, 0.0, @@ -105289,13 +105285,13 @@ 0.0, 0.0, 0.0, - 12.884, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 5.109, + 6.573, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 4.067, 0.0, 0.0, 0.0, @@ -105313,13 +105309,13 @@ 0.0, 0.0, 0.0, - 12.11, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 5.882, + 6.179, + 18.365, + 18.851, + 18.851, + 18.851, + 18.851, + 4.948, 0.0, 0.0, 0.0, @@ -105337,14 +105333,14 @@ 0.0, 0.0, 0.0, - 11.255, - 31.876, - 31.876, - 29.739, - 31.876, - 1.816, - 15.591, - 5.215, + 5.742, + 18.277, + 18.851, + 15.173, + 18.851, + 0.927, + 7.954, + 2.661, 0.0, 0.0, 0.0, @@ -105361,13 +105357,13 @@ 0.0, 0.0, 0.0, - 11.84, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 6.153, + 6.041, + 18.75, + 18.851, + 18.851, + 18.851, + 18.851, + 4.7, 0.0, 0.0, 0.0, @@ -105385,13 +105381,13 @@ 0.0, 0.0, 0.0, - 11.829, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 6.164, + 6.035, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 4.605, 0.0, 0.0, 0.0, @@ -105409,13 +105405,13 @@ 0.0, 0.0, 0.0, - 10.827, - 16.443, - 31.876, - 31.876, - 31.876, - 31.876, - 22.599, + 5.524, + 8.389, + 18.851, + 18.851, + 18.851, + 18.851, + 15.578, 0.0, 0.0, 0.0, @@ -105433,14 +105429,14 @@ 0.0, 0.0, 0.0, - 9.456, - 18.183, - 31.876, - 31.876, - 31.876, - 31.876, - 5.219, - 17.011, + 4.825, + 9.277, + 18.851, + 18.851, + 18.851, + 18.851, + 2.663, + 12.727, 0.0, 0.0, 0.0, @@ -105457,13 +105453,13 @@ 0.0, 0.0, 0.0, - 10.511, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 7.482, + 5.363, + 18.736, + 18.851, + 18.851, + 18.851, + 18.851, + 5.392, 0.0, 0.0, 0.0, @@ -105481,13 +105477,13 @@ 0.0, 0.0, 0.0, - 10.839, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 7.154, + 5.53, + 18.741, + 18.851, + 18.851, + 18.851, + 18.851, + 5.22, 0.0, 0.0, 0.0, @@ -105505,14 +105501,14 @@ 0.0, 0.0, 0.0, - 7.502, - 5.092, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 5.4, + 3.827, + 2.598, + 18.851, + 18.851, + 18.851, + 18.851, + 18.851, + 4.215, 0.0, 0.0, 0.0, @@ -105529,13 +105525,13 @@ 0.0, 0.0, 0.0, - 9.959, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 8.034, + 5.081, + 18.536, + 18.851, + 18.851, + 18.851, + 18.851, + 5.874, 0.0, 0.0, 0.0, @@ -105553,13 +105549,13 @@ 0.0, 0.0, 0.0, - 9.435, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 8.558, + 4.814, + 17.934, + 18.851, + 18.851, + 18.851, + 18.851, + 6.744, 0.0, 0.0, 0.0, @@ -105577,14 +105573,14 @@ 0.0, 0.0, 0.0, - 3.006, - 15.722, - 24.133, - 31.876, - 31.876, - 31.876, - 31.876, - 7.008, + 1.534, + 8.021, + 12.313, + 18.851, + 18.851, + 18.851, + 18.851, + 7.623, 0.0, 0.0, 0.0, @@ -105601,13 +105597,13 @@ 0.0, 0.0, 0.0, - 8.368, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.625, + 4.269, + 16.845, + 18.851, + 18.851, + 18.851, + 18.851, + 8.377, 0.0, 0.0, 0.0, @@ -105625,13 +105621,13 @@ 0.0, 0.0, 0.0, - 8.541, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.451, + 4.358, + 17.374, + 18.851, + 18.851, + 18.851, + 18.851, + 7.759, 0.0, 0.0, 0.0, @@ -105649,13 +105645,13 @@ 0.0, 0.0, 0.0, - 8.246, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.747, + 4.207, + 16.955, + 18.851, + 18.851, + 18.851, + 18.851, + 8.329, 0.0, 0.0, 0.0, @@ -105673,13 +105669,13 @@ 0.0, 0.0, 0.0, - 9.088, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 8.905, + 4.637, + 18.68, + 18.851, + 18.851, + 18.851, + 18.851, + 6.175, 0.0, 0.0, 0.0, @@ -105697,13 +105693,13 @@ 0.0, 0.0, 0.0, - 8.878, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.115, + 4.53, + 18.461, + 18.851, + 18.851, + 18.851, + 18.851, + 6.501, 0.0, 0.0, 0.0, @@ -105721,13 +105717,13 @@ 0.0, 0.0, 0.0, - 8.098, - 31.876, - 31.876, - 31.876, - 31.876, - 31.876, - 9.895, + 4.131, + 17.404, + 18.851, + 18.851, + 18.851, + 18.851, + 7.956, 0.0, 0.0, 0.0, @@ -105745,14 +105741,14 @@ 0.0, 0.0, 0.0, - 1.302, - 8.694, - 11.926, - 25.307, - 31.876, - 31.876, - 31.369, - 16.333, + 0.664, + 4.436, + 6.085, + 12.912, + 18.851, + 18.851, + 16.004, + 8.333, 0.0, 0.0, 0.0, @@ -105769,14 +105765,14 @@ 0.0, 0.0, 0.0, - 0.511, - 20.929, - 31.876, - 25.548, - 10.876, - 10.004, - 2.77, - 6.76, + 0.261, + 10.678, + 17.13, + 13.035, + 5.549, + 5.104, + 1.413, + 3.449, 0.0, 0.0, 0.0, @@ -105793,14 +105789,14 @@ 0.0, 0.0, 0.0, - 1.121, - 0.44, - 11.828, - 5.469, - 8.316, - 3.164, - 7.318, - 30.83, + 0.572, + 0.224, + 6.035, + 2.79, + 4.243, + 1.614, + 3.734, + 15.73, 0.0, 0.0, 0.0, @@ -105817,14 +105813,14 @@ 0.0, 0.0, 0.0, - 6.351, - 2.691, - 17.047, - 3.41, - 10.469, - 10.636, - 8.969, - 6.265, + 3.24, + 1.373, + 8.698, + 1.74, + 5.341, + 5.426, + 4.576, + 3.196, 0.0, 0.0, 0.0, @@ -105841,13 +105837,13 @@ 0.0, 0.0, 0.0, - 6.485, - 30.981, - 31.876, - 31.876, - 31.876, - 31.876, - 12.403, + 3.309, + 15.807, + 18.851, + 18.851, + 18.851, + 18.851, + 10.376, 0.0, 0.0, 0.0, @@ -114621,8 +114617,8 @@ 0.0, 0.0 ], - "lifecycle_om_cost_after_tax": 12772.0, - "lcoe_per_kwh": 0.0283 + "lifecycle_om_cost_after_tax": 6516.0, + "lcoe_per_kwh": 0.0555 }, { "electric_to_grid_series_kw": [ @@ -202268,159 +202264,159 @@ ], "Financial": { "net_present_cost": 0.0, - "lcc": 2.1607552999e6, - "year_one_om_costs_before_tax": 1946.6667, + "lcc": 2.4262768171e6, + "year_one_om_costs_before_tax": 1306.6667, "lifecycle_generation_tech_capital_costs": 45554.4483, "lifecycle_offgrid_other_annual_costs_after_tax": 0.0, - "initial_capital_costs_after_incentives": 111136.229, + "initial_capital_costs_after_incentives": 84337.6523, "lifecycle_MG_upgrade_and_fuel_cost": 0.0, - "lifecycle_elecbill_after_tax": 1.9628039643e6, + "lifecycle_elecbill_after_tax": 2.2629262389e6, "lifecycle_offgrid_other_capital_costs": 0.0, - "om_and_replacement_present_cost_after_tax": 48907.9073, - "replacements_future_cost_after_tax": 89626.194, + "om_and_replacement_present_cost_after_tax": 30442.3327, + "replacements_future_cost_after_tax": 53002.3876, "developer_annual_free_cashflows": [], - "initial_capital_costs": 207302.2781, - "lifecycle_om_costs_after_tax_bau": 10947.5032, + "initial_capital_costs": 156372.6302, + "lifecycle_om_costs_after_tax_bau": 4691.7871, "offtaker_annual_free_cashflows_bau": [ 0.0, - -178945.02, - -183062.46, - -187274.64, - -191583.74, - -195991.99, - -200501.68, - -205115.15, - -209834.76, - -214662.98, - -219602.3, - -224655.28, - -229824.52, - -235112.72, - -240522.59, - -246056.96, - -251718.67, - -257510.66, - -263435.92, - -269497.54, - -275698.63, - -282042.41, - -288532.17, - -295171.27, - -301963.13, - -308911.28 + -199051.79, + -203630.71, + -208314.96, + -213106.97, + -218009.22, + -223024.23, + -228154.61, + -233403.01, + -238772.15, + -244264.8, + -249883.8, + -255632.06, + -261512.55, + -267528.32, + -273682.47, + -279978.2, + -286418.75, + -293007.46, + -299747.74, + -306643.08, + -313697.03, + -320913.26, + -328295.48, + -335847.53, + -343573.31 ], - "lifecycle_capital_costs": 141016.3332, + "lifecycle_capital_costs": 102007.8979, "lifecycle_production_incentive_after_tax": 0.0, - "internal_rate_of_return": 0.19, - "lifecycle_elecbill_after_tax_bau": 2.2542869359e6, + "internal_rate_of_return": 0.22, + "lifecycle_elecbill_after_tax_bau": 2.5149377808e6, "lifecycle_chp_standby_cost_after_tax": 0.0, - "lifecycle_om_costs_before_tax_bau": 14793.9232, - "lifecycle_om_costs_after_tax": 19027.8031, - "replacements_present_cost_after_tax": 29880.1042, - "lifecycle_outage_cost": 38003.691, - "lifecycle_storage_capital_costs": 95461.8849, + "lifecycle_om_costs_before_tax_bau": 6340.2528, + "lifecycle_om_costs_after_tax": 12772.087, + "replacements_present_cost_after_tax": 17670.2456, + "lifecycle_outage_cost": 48626.9251, + "lifecycle_storage_capital_costs": 56453.4496, "offtaker_annual_free_cashflows": [ - -207302.28, - -56136.74, - -158798.32, - -162870.37, - -166917.1, - -170971.32, - -174918.79, - -178956.01, - -183332.99, - -187804.51, - -258452.53, - -196550.24, - -201074.67, - -205703.27, - -210438.41, - -215282.57, - -220238.24, - -225308.0, - -230494.46, - -235800.33, - -241228.34, - -246781.32, - -252462.12, - -258273.71, - -264219.09, - -270301.34 + -156372.63, + -103968.28, + -183107.98, + -187567.89, + -192060.03, + -196604.88, + -201136.0, + -205770.73, + -210658.07, + -215654.2, + -259838.12, + -225693.32, + -230886.8, + -236199.8, + -241635.06, + -247195.4, + -252883.69, + -258702.89, + -264656.0, + -270746.1, + -276976.35, + -283349.98, + -289870.28, + -296540.62, + -303364.47, + -310345.35 ], - "year_one_om_costs_before_tax_bau": 1120.0, - "lifecycle_emissions_cost_health_bau": 51794.8, + "year_one_om_costs_before_tax_bau": 480.0, + "lifecycle_emissions_cost_health_bau": 58230.94, "lifecycle_fuel_costs_after_tax_bau": 0.0, - "developer_om_and_replacement_present_cost_after_tax": 48907.9073, + "developer_om_and_replacement_present_cost_after_tax": 30442.3327, "offtaker_discounted_annual_free_cashflows": [ - -207302.28, - -51834.48, - -135390.75, - -128220.28, - -121335.25, - -114757.47, - -108409.1, - -102411.11, - -96875.28, - -91632.58, - -116438.4, - -81763.7, - -77235.31, - -72957.72, - -68917.04, - -65100.15, - -61494.66, - -58088.86, - -54871.68, - -51832.69, - -48962.01, - -46250.31, - -43688.81, - -41269.17, - -38983.54, - -36824.49 + -156372.63, + -96000.26, + -156117.06, + -147663.49, + -139612.13, + -131962.95, + -124657.69, + -117756.37, + -111314.17, + -105220.85, + -117062.64, + -93887.05, + -88686.52, + -83774.07, + -79133.72, + -74750.4, + -70609.89, + -66698.72, + -63004.2, + -59514.33, + -56217.76, + -53103.8, + -50162.32, + -47383.78, + -44759.14, + -42279.89 ], - "lifecycle_emissions_cost_climate_bau": 307867.42, - "lcc_bau": 2.3311493105e6, - "lifecycle_capital_costs_plus_om_after_tax": 160044.1364, - "lifecycle_emissions_cost_health": 46648.31, - "lifecycle_om_costs_before_tax": 25713.2475, + "lifecycle_emissions_cost_climate_bau": 349351.91, + "lcc_bau": 2.5855444392e6, + "lifecycle_capital_costs_plus_om_after_tax": 114779.9849, + "lifecycle_emissions_cost_health": 53193.98, + "lifecycle_om_costs_before_tax": 17259.5771, "annualized_payment_to_third_party": 0.0, - "lifecycle_emissions_cost_climate": 277850.82, + "lifecycle_emissions_cost_climate": 318712.32, "lifecycle_fuel_costs_after_tax": 0.0, "lifecycle_chp_standby_cost_after_tax_bau": 0.0, "lifecycle_production_incentive_after_tax_bau": 0.0, "offtaker_discounted_annual_free_cashflows_bau": [ 0.0, - -165230.86, - -156078.25, - -147432.62, - -139265.91, - -131551.57, - -124264.56, - -117381.2, - -110879.12, - -104737.22, - -98935.54, - -93455.23, - -88278.49, - -83388.5, - -78769.39, - -74406.14, - -70284.59, - -66391.34, - -62713.75, - -59239.87, - -55958.42, - -52858.74, - -49930.76, - -47164.97, - -44552.39, - -42084.52 + -183796.67, + -173614.65, + -163996.7, + -154911.56, + -146329.73, + -138223.32, + -130565.99, + -123332.86, + -116500.44, + -110046.52, + -103950.14, + -98191.49, + -92751.85, + -87613.57, + -82759.93, + -78175.18, + -73844.42, + -69753.57, + -65889.35, + -62239.2, + -58791.27, + -55534.34, + -52457.84, + -49551.77, + -46806.7 ], - "npv": 170394.01, + "npv": 159267.62, "lifecycle_MG_upgrade_and_fuel_cost_bau": 0.0, - "simple_payback_years": 4.45, - "year_one_om_costs_after_tax": 1440.5333, + "simple_payback_years": 3.95, + "year_one_om_costs_after_tax": 966.9333, "lifecycle_outage_cost_bau": 65914.3623 } } diff --git a/test/debugging_tests.jl b/test/debugging_tests.jl index b637d5562..1cf1ddb8c 100644 --- a/test/debugging_tests.jl +++ b/test/debugging_tests.jl @@ -34,7 +34,7 @@ using DelimitedFiles @test ground_pv["annual_energy_produced_kwh"] ≈ 145904.83 atol=0.1 @test roof_west["annual_energy_produced_kwh"] ≈ 45938.58 atol=0.1 @test roof_east["annual_energy_produced_kwh"] ≈ 16714.41 atol=0.1 - @test sum(ground_pv["electric_to_storage_series_kw"]) ≈ 63124.386 atol=0.1 + @test sum(ground_pv["electric_to_storage_series_kw"]) ≈ 63160.44 atol=0.1 @test sum(roof_west["electric_to_storage_series_kw"]) ≈ 0 atol=0.1 @test sum(roof_east["electric_to_storage_series_kw"]) ≈ 0 atol=0.1 expected_outage_results = Dict( diff --git a/test/scenarios/ac_dc_pvs.json b/test/scenarios/ac_dc_pvs.json index 1dbd041f7..153d748ec 100644 --- a/test/scenarios/ac_dc_pvs.json +++ b/test/scenarios/ac_dc_pvs.json @@ -15,9 +15,7 @@ "ElectricLoad": { "doe_reference_name": "RetailStore", "annual_kwh": 1000000.0, - "year": 2017, - "loads_kw_is_net": false, - "critical_loads_kw_is_net": false + "year": 2017 }, "ElectricTariff": { "blended_annual_energy_rate": 0.3, @@ -36,7 +34,7 @@ { "name": "ground", "dc_coupled_with_storage": true, - "existing_kw": 40.0, + "existing_kw": 0.0, "installed_cost_per_kw": 1600.0, "om_cost_per_kw": 16.0, "macrs_option_years": 5, From b581cc00ee70a0a66b75e498c55775ce6375994e Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Wed, 14 Aug 2024 16:27:55 -0600 Subject: [PATCH 7/8] Revert "test rm existing PV from ac dc test - fails" This reverts commit 8f7eb7ec45cb1ec1aa8b44840e5b7d2d322d06c8. --- test/ac_dc_pvs_results.json | 51746 ++++++++++++++++---------------- test/scenarios/ac_dc_pvs.json | 2 +- 2 files changed, 25876 insertions(+), 25872 deletions(-) diff --git a/test/ac_dc_pvs_results.json b/test/ac_dc_pvs_results.json index 9c9934d1a..33631c1a4 100644 --- a/test/ac_dc_pvs_results.json +++ b/test/ac_dc_pvs_results.json @@ -1,9 +1,9 @@ { "Site": { "annual_emissions_from_fuelburn_tonnes_PM25": 0.0, - "lifecycle_emissions_tonnes_CO2_bau": 10619.11, - "annual_emissions_tonnes_CO2_bau": 493.46, - "lifecycle_emissions_reduction_CO2_fraction": 0.08770414846441935, + "lifecycle_emissions_tonnes_CO2_bau": 10653.83, + "annual_emissions_tonnes_CO2_bau": 495.07, + "lifecycle_emissions_reduction_CO2_fraction": 0.08563586991720352, "lifecycle_emissions_tonnes_PM25": 0.54, "lifecycle_emissions_tonnes_PM25_bau": 0.6, "annual_emissions_from_fuelburn_tonnes_NOx_bau": 0.0, @@ -13,22 +13,22 @@ "annual_emissions_from_fuelburn_tonnes_NOx": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_SO2_bau": 0.0, "annual_emissions_tonnes_NOx": 0.13, - "renewable_electricity_fraction_bau": 0.043832, + "renewable_electricity_fraction_bau": 0.040913, "annual_emissions_tonnes_SO2": 0.03, "annual_emissions_tonnes_PM25": 0.03, - "total_renewable_energy_fraction_bau": 0.043832, + "total_renewable_energy_fraction_bau": 0.040913, "lifecycle_emissions_from_fuelburn_tonnes_CO2_bau": 0.0, "lifecycle_emissions_tonnes_NOx": 2.84, "annual_emissions_from_fuelburn_tonnes_CO2": 0.0, "annual_emissions_from_fuelburn_tonnes_CO2_bau": 0.0, "annual_emissions_tonnes_PM25_bau": 0.03, - "total_renewable_energy_fraction": 0.127111, + "total_renewable_energy_fraction": 0.179195, "annual_emissions_from_fuelburn_tonnes_SO2": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_NOx_bau": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_SO2": 0.0, "annual_renewable_electricity_kwh_bau": 45938.78, - "renewable_electricity_fraction": 0.127111, - "lifecycle_emissions_tonnes_NOx_bau": 3.1, + "renewable_electricity_fraction": 0.179195, + "lifecycle_emissions_tonnes_NOx_bau": 3.11, "lifecycle_emissions_tonnes_SO2_bau": 0.69, "lifecycle_emissions_from_fuelburn_tonnes_CO2": 0.0, "annual_emissions_from_fuelburn_tonnes_PM25_bau": 0.0, @@ -36,19 +36,19 @@ "lifecycle_emissions_from_fuelburn_tonnes_PM25_bau": 0.0, "annual_emissions_tonnes_NOx_bau": 0.14, "lifecycle_emissions_from_fuelburn_tonnes_NOx": 0.0, - "annual_renewable_electricity_kwh": 133220.29, - "annual_emissions_tonnes_CO2": 450.18, - "lifecycle_emissions_tonnes_CO2": 9687.77 + "annual_renewable_electricity_kwh": 201205.81, + "annual_emissions_tonnes_CO2": 452.67, + "lifecycle_emissions_tonnes_CO2": 9741.48 }, "Outages": { - "expected_outage_cost": 48626.925060989764, + "expected_outage_cost": 38003.69101517182, "electric_storage_microgrid_upgraded": true, "unserved_load_per_outage_kwh": [ [ - 3755.3 + 2934.9 ] ], - "pv_microgrid_size_kw": 81.6667, + "pv_microgrid_size_kw": 121.6667, "pv_to_storage_series_kw": [ [ [ @@ -312,32 +312,32 @@ ], [ [ - 0.0 + 2.467 ] ], [ [ - 0.0 + 7.593 ] ], [ [ - 4.696 + 27.479 ] ], [ [ - 0.0 + 14.63 ] ], [ [ - 0.0 + 21.782 ] ], [ [ - 0.0 + 4.668 ] ], [ @@ -1015,7 +1015,7 @@ ], "pv_microgrid_upgrade_cost": 0.0, "max_outage_cost_per_outage_duration": [ - 48626.925060989764 + 38003.69101517182 ], "unserved_load_series_kw": [ [ @@ -1040,52 +1040,52 @@ ], [ [ - 37.433546077563356 + 4.4985749249905425 ] ], [ [ - 24.533637324522715 + 0.0 ] ], [ [ - 62.79802787330266 + 38.954240578951485 ] ], [ [ - 53.370084406028745 + 25.215782278447378 ] ], [ [ - 48.47706568845373 + 18.46897149460871 ] ], [ [ - 48.14388256624365 + 18.526527228529417 ] ], [ [ - 60.465546485892446 + 38.47081039497125 ] ], [ [ - 53.674890636684914 + 57.809153953554144 ] ], [ [ - 72.33464724259885 + 56.7607599028973 ] ], [ [ - 96.81708998727834 + 94.84041781498684 ] ], [ @@ -1105,7 +1105,7 @@ ], [ [ - 75.87522944749999 + 43.99892355189999 ] ], [ @@ -1160,52 +1160,52 @@ ], [ [ - 28.85677334013075 + 27.545618904499626 ] ], [ [ - 25.78576249215584 + 8.992402886784191 ] ], [ [ - 20.163808459202798 + 15.780079410714663 ] ], [ [ - 66.54813870915874 + 47.66268221460136 ] ], [ [ - 66.46938080672783 + 48.483197172743154 ] ], [ [ - 59.1240574308129 + 36.54749512535171 ] ], [ [ - 51.92081975310418 + 25.114796075762854 ] ], [ [ - 59.7028329893292 + 37.42444801644768 ] ], [ [ - 72.01904184917512 + 24.598784868702396 ] ], [ [ - 93.12035599694865 + 88.85549108487504 ] ], [ @@ -1280,52 +1280,52 @@ ], [ [ - 1.1344715129870426 + 0.0 ] ], [ [ - 8.603499720987141 + 3.552713678800501e-15 ] ], [ [ - 0.0 + 3.552713678800501e-15 ] ], [ [ - 7.105427357601002e-15 + 0.0 ] ], [ [ - 7.415687529864961 + 0.0 ] ], [ [ - 24.41137127316086 + 0.0 ] ], [ [ - 27.720069784593868 + 0.0 ] ], [ [ - 35.66391434900611 + 13.438481755355632 ] ], [ [ - 48.18733523581045 + 0.9567510014497458 ] ], [ [ - 68.84667065747823 + 64.50725185406851 ] ], [ @@ -1385,7 +1385,7 @@ ], [ [ - 0.0 + 16.553543950349997 ] ], [ @@ -1400,52 +1400,52 @@ ], [ [ - 34.32778428328436 + 30.509936857109146 ] ], [ [ - 42.64199954824281 + 25.36579835636666 ] ], [ [ - 61.15474487046113 + 4.641551207752826 ] ], [ [ - 50.954835497072466 + 21.587254811716633 ] ], [ [ - 45.3847677164197 + 13.769712185780705 ] ], [ [ - 44.82597037053687 + 13.496360661803237 ] ], [ [ - 48.64383054096701 + 19.900055645888102 ] ], [ [ - 56.79658689733885 + 32.82177591806004 ] ], [ [ - 57.23547494336699 + 21.53986100962777 ] ], [ [ - 91.86080623558979 + 86.83480344212165 ] ], [ @@ -1465,7 +1465,7 @@ ], [ [ - 75.3876981175 + 63.96130186104654 ] ], [ @@ -1522,252 +1522,252 @@ ], [ [ - 1.0 + 0.84 ] ], [ [ - 0.84 + 0.707 ] ], [ [ - 0.84 + 0.707 ] ], [ [ - 0.84 + 0.707 ] ], [ [ - 0.84 + 0.707 ] ], [ [ - 0.84 + 0.707 ] ], [ [ - 0.84 + 0.707 ] ], [ [ - 0.68 + 0.707 ] ], [ [ - 0.68 + 0.707 ] ], [ [ - 0.68 + 0.707 ] ], [ [ - 0.68 + 0.707 ] ], [ [ - 0.68 + 0.707 ] ], [ [ - 0.68 + 0.707 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.68 + 0.547 ] ], [ [ - 0.52 + 0.547 ] ], [ [ - 0.52 + 0.547 ] ], [ [ - 0.52 + 0.547 ] ], [ [ - 0.52 + 0.547 ] ], [ [ - 0.52 + 0.547 ] ], [ [ - 0.52 + 0.547 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.387 ] ], [ [ - 0.52 + 0.398 ] ], [ [ - 0.52 + 0.432 ] ], [ @@ -1777,172 +1777,172 @@ ], [ [ - 0.45 + 0.622 ] ], [ [ - 0.45 + 0.721 ] ], [ [ - 0.45 + 0.742 ] ], [ [ - 0.45 + 0.737 ] ], [ [ - 0.45 + 0.737 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.45 + 0.577 ] ], [ [ - 0.309 + 0.577 ] ], [ [ - 0.309 + 0.577 ] ], [ [ - 0.309 + 0.577 ] ], [ [ - 0.309 + 0.577 ] ], [ [ - 0.309 + 0.577 ] ], [ [ - 0.309 + 0.417 ] ], [ [ - 0.309 + 0.417 ] ], [ [ - 0.309 + 0.417 ] ], [ [ - 0.309 + 0.417 ] ], [ [ - 0.309 + 0.417 ] ], [ [ - 0.309 + 0.417 ] ], [ [ - 0.2 + 0.257 ] ], [ [ - 0.2 + 0.257 ] ], [ [ - 0.2 + 0.257 ] ], [ [ - 0.2 + 0.257 ] ], [ [ - 0.2 + 0.257 ] ], [ @@ -2487,52 +2487,52 @@ ], [ [ - 1.7 + 2.758 ] ], [ [ - 22.347 + 39.255 ] ], [ [ - 35.829 + 59.673 ] ], [ [ - 45.21 + 73.365 ] ], [ [ - 50.045 + 80.053 ] ], [ [ - 50.379 + 79.996 ] ], [ [ - 38.071 + 60.066 ] ], [ [ - 26.011 + 40.728 ] ], [ [ - 26.053 + 41.627 ] ], [ [ - 3.209 + 5.186 ] ], [ @@ -2607,52 +2607,52 @@ ], [ [ - 1.952 + 3.263 ] ], [ [ - 22.211 + 39.004 ] ], [ [ - 35.026 + 58.26 ] ], [ [ - 31.526 + 50.412 ] ], [ [ - 31.605 + 49.591 ] ], [ [ - 38.95 + 61.527 ] ], [ [ - 46.154 + 72.96 ] ], [ [ - 38.372 + 60.65 ] ], [ [ - 26.055 + 41.599 ] ], [ [ - 6.667 + 10.932 ] ], [ @@ -2727,12 +2727,12 @@ ], [ [ - 4.563 + 5.697 ] ], [ [ - 21.442 + 30.045 ] ], [ @@ -2742,37 +2742,37 @@ ], [ [ - 43.747 + 56.252 ] ], [ [ - 48.836 + 56.252 ] ], [ [ - 49.554 + 73.966 ] ], [ [ - 46.246 + 73.101 ] ], [ [ - 38.302 + 60.527 ] ], [ [ - 25.778 + 41.133 ] ], [ [ - 6.832 + 11.171 ] ], [ @@ -2847,52 +2847,52 @@ ], [ [ - 4.822 + 8.639 ] ], [ [ - 22.808 + 40.084 ] ], [ [ - 36.927 + 61.564 ] ], [ [ - 47.12 + 76.487 ] ], [ [ - 52.69 + 84.305 ] ], [ [ - 53.249 + 84.578 ] ], [ [ - 49.431 + 78.174 ] ], [ [ - 41.278 + 65.253 ] ], [ [ - 27.976 + 44.658 ] ], [ [ - 7.927 + 12.953 ] ], [ @@ -2969,12 +2969,12 @@ ], [ [ - 0.0 + 31.8763058956 ] ], [ [ - 18.850742673440678 + 26.477048520759453 ] ], [ @@ -3004,7 +3004,7 @@ ], [ [ - 18.850742673440678 + 0.0 ] ], [ @@ -3034,7 +3034,7 @@ ], [ [ - 0.0 + 31.8763058956 ] ], [ @@ -3099,7 +3099,7 @@ ], [ [ - 18.850742673440678 + 0.0 ] ], [ @@ -3129,7 +3129,7 @@ ], [ [ - 0.0 + 31.8763058956 ] ], [ @@ -3224,7 +3224,7 @@ ], [ [ - 12.504537023484826 + 0.0 ] ], [ @@ -3239,7 +3239,7 @@ ], [ [ - 0.0 + 0.8641905819693108 ] ], [ @@ -3249,7 +3249,7 @@ ], [ [ - 0.0 + 31.8763058956 ] ], [ @@ -3314,7 +3314,7 @@ ], [ [ - 16.553543950349997 + 0.0 ] ], [ @@ -3339,7 +3339,7 @@ ], [ [ - 0.0 + 31.8763058956 ] ], [ @@ -3369,7 +3369,7 @@ ], [ [ - 12.862832454464847 + 31.8763058956 ] ], [ @@ -3394,7 +3394,7 @@ ], [ [ - 0.0 + 11.426396256453451 ] ], [ @@ -3431,10 +3431,10 @@ "microgrid_upgrade_capital_cost": 0.0 }, "ElectricStorage": { - "size_kw": 18.85, - "size_kwh": 124.29, - "initial_capital_cost": 73705.45000000001, - "dc_couple_inverter_size_kw": 43.05, + "size_kw": 31.88, + "size_kwh": 210.17, + "initial_capital_cost": 124638.15, + "dc_couple_inverter_size_kw": 82.18, "soc_series_fraction": [ 0.5, 0.5, @@ -3443,10 +3443,10 @@ 0.5, 0.5, 0.5, - 0.509, - 0.646, - 0.789, - 0.933, + 0.51, + 0.654, + 0.798, + 0.941, 1.0, 1.0, 1.0, @@ -3467,12 +3467,12 @@ 0.2, 0.2, 0.2, - 0.209, - 0.348, - 0.491, - 0.635, - 0.779, - 0.923, + 0.21, + 0.354, + 0.497, + 0.641, + 0.785, + 0.929, 1.0, 1.0, 0.84, @@ -3491,13 +3491,13 @@ 0.2, 0.2, 0.2, - 0.209, - 0.269, - 0.413, - 0.556, - 0.7, - 0.844, - 0.988, + 0.21, + 0.28, + 0.424, + 0.567, + 0.711, + 0.855, + 0.999, 1.0, 0.84, 0.68, @@ -3515,12 +3515,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.371, - 0.515, - 0.658, - 0.802, - 0.946, + 0.236, + 0.38, + 0.523, + 0.667, + 0.811, + 0.955, 1.0, 1.0, 1.0, @@ -3563,12 +3563,12 @@ 0.2, 0.2, 0.2, - 0.21, - 0.344, - 0.488, - 0.631, - 0.774, - 0.918, + 0.212, + 0.356, + 0.5, + 0.643, + 0.787, + 0.931, 1.0, 1.0, 0.84, @@ -3587,12 +3587,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.357, - 0.501, - 0.645, - 0.789, - 0.932, + 0.233, + 0.377, + 0.521, + 0.664, + 0.808, + 0.952, 1.0, 1.0, 0.84, @@ -3611,12 +3611,12 @@ 0.2, 0.2, 0.2, - 0.23, - 0.368, - 0.511, - 0.655, - 0.799, - 0.943, + 0.235, + 0.379, + 0.523, + 0.666, + 0.81, + 0.954, 1.0, 1.0, 0.84, @@ -3635,84 +3635,12 @@ 0.2, 0.2, 0.2, - 0.208, - 0.27, - 0.414, - 0.558, - 0.702, - 0.846, - 0.989, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.212, - 0.346, - 0.489, - 0.633, - 0.777, - 0.921, - 1.0, - 1.0, - 0.861, - 0.701, - 0.541, - 0.381, - 0.221, - 0.221, - 0.221, - 0.221, - 0.221, - 0.221, - 0.221, - 0.221, - 0.221, - 0.221, - 0.221, - 0.221, - 0.222, - 0.23, - 0.281, + 0.209, + 0.282, 0.425, 0.569, - 0.712, - 0.856, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.227, - 0.356, - 0.499, - 0.643, - 0.787, - 0.931, + 0.713, + 0.857, 1.0, 1.0, 0.84, @@ -3731,7 +3659,7 @@ 0.2, 0.2, 0.2, - 0.229, + 0.214, 0.358, 0.502, 0.645, @@ -3739,318 +3667,30 @@ 0.933, 1.0, 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.231, - 0.366, - 0.51, - 0.653, - 0.797, - 0.941, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, + 0.851, + 0.691, + 0.531, + 0.371, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, + 0.211, 0.213, - 0.338, - 0.481, - 0.625, - 0.769, - 0.874, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.228, - 0.349, - 0.493, - 0.637, - 0.781, - 0.924, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.229, - 0.352, - 0.496, - 0.64, - 0.783, - 0.927, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, 0.222, - 0.313, - 0.414, - 0.557, - 0.701, - 0.845, - 0.959, - 1.0, - 0.981, - 0.821, - 0.661, - 0.501, - 0.341, - 0.341, - 0.341, - 0.341, - 0.341, - 0.341, - 0.341, - 0.341, - 0.341, - 0.341, - 0.341, - 0.341, - 0.365, - 0.377, - 0.433, - 0.526, - 0.61, - 0.754, - 0.898, - 1.0, - 0.925, - 0.765, - 0.605, - 0.445, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.285, - 0.314, - 0.439, - 0.583, - 0.726, - 0.87, - 0.96, - 0.976, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.21, - 0.262, - 0.397, - 0.541, - 0.685, - 0.828, - 0.967, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.235, - 0.365, - 0.508, - 0.652, - 0.796, - 0.94, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.233, - 0.357, - 0.5, - 0.644, - 0.788, - 0.932, - 1.0, - 1.0, - 1.0, - 1.0, - 0.879, - 0.719, - 0.559, - 0.559, - 0.559, - 0.559, - 0.559, - 0.559, - 0.559, - 0.559, - 0.559, - 0.559, - 0.559, - 0.559, - 0.564, - 0.612, - 0.664, - 0.744, - 0.823, - 0.907, - 0.977, - 1.0, - 1.0, - 1.0, - 0.891, - 0.731, - 0.571, - 0.571, - 0.571, - 0.571, - 0.571, - 0.571, - 0.571, - 0.571, - 0.571, - 0.571, - 0.571, - 0.571, - 0.571, - 0.587, - 0.633, - 0.661, - 0.711, + 0.281, + 0.425, + 0.569, 0.712, 0.856, 1.0, - 0.968, - 0.808, - 0.648, - 0.488, - 0.328, - 0.328, - 0.328, - 0.328, - 0.328, - 0.328, - 0.328, - 0.328, - 0.328, - 0.328, - 0.328, - 0.328, - 0.359, - 0.431, - 0.566, - 0.573, - 0.717, - 0.86, - 0.997, - 1.0, 0.84, 0.68, 0.52, @@ -4067,7 +3707,7 @@ 0.2, 0.2, 0.2, - 0.238, + 0.232, 0.376, 0.519, 0.663, @@ -4091,12 +3731,12 @@ 0.2, 0.2, 0.2, - 0.245, - 0.387, - 0.531, - 0.675, - 0.819, - 0.962, + 0.233, + 0.377, + 0.521, + 0.665, + 0.808, + 0.952, 1.0, 1.0, 0.84, @@ -4115,12 +3755,12 @@ 0.2, 0.2, 0.2, - 0.245, - 0.385, - 0.528, - 0.672, - 0.816, - 0.96, + 0.236, + 0.38, + 0.524, + 0.668, + 0.811, + 0.955, 1.0, 1.0, 0.84, @@ -4139,37 +3779,13 @@ 0.2, 0.2, 0.2, - 0.214, - 0.344, - 0.488, - 0.632, - 0.776, - 0.919, - 1.0, + 0.216, + 0.359, + 0.503, + 0.647, + 0.791, + 0.912, 1.0, - 0.849, - 0.689, - 0.529, - 0.369, - 0.209, - 0.209, - 0.209, - 0.209, - 0.209, - 0.209, - 0.209, - 0.209, - 0.209, - 0.209, - 0.209, - 0.209, - 0.209, - 0.215, - 0.295, - 0.425, - 0.569, - 0.712, - 0.856, 1.0, 0.84, 0.68, @@ -4187,12 +3803,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.351, - 0.495, - 0.639, - 0.783, - 0.926, + 0.232, + 0.373, + 0.517, + 0.661, + 0.804, + 0.948, 1.0, 1.0, 0.84, @@ -4211,12 +3827,12 @@ 0.2, 0.2, 0.2, - 0.248, - 0.388, - 0.532, - 0.676, - 0.819, - 0.963, + 0.234, + 0.376, + 0.52, + 0.664, + 0.807, + 0.951, 1.0, 1.0, 0.84, @@ -4235,13 +3851,61 @@ 0.2, 0.2, 0.2, - 0.253, - 0.393, - 0.537, - 0.681, - 0.825, - 0.968, + 0.226, + 0.332, + 0.448, + 0.591, + 0.735, + 0.879, + 1.0, + 1.0, + 0.922, + 0.762, + 0.602, + 0.442, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.31, + 0.324, + 0.388, + 0.497, + 0.594, + 0.738, + 0.882, 1.0, + 0.88, + 0.72, + 0.56, + 0.4, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.24, + 0.274, + 0.418, + 0.562, + 0.706, + 0.849, + 0.954, + 0.972, 1.0, 0.84, 0.68, @@ -4259,13 +3923,13 @@ 0.2, 0.2, 0.2, - 0.25, - 0.385, - 0.529, - 0.673, - 0.816, - 0.96, - 1.0, + 0.212, + 0.272, + 0.416, + 0.559, + 0.703, + 0.847, + 0.991, 1.0, 0.84, 0.68, @@ -4283,13 +3947,13 @@ 0.2, 0.2, 0.2, - 0.211, - 0.277, - 0.388, - 0.532, - 0.675, - 0.819, - 0.963, + 0.24, + 0.384, + 0.528, + 0.671, + 0.815, + 0.959, + 1.0, 1.0, 0.84, 0.68, @@ -4307,14 +3971,86 @@ 0.2, 0.2, 0.2, - 0.251, + 0.238, 0.382, - 0.526, - 0.67, + 0.525, + 0.669, 0.813, 0.957, 1.0, 1.0, + 1.0, + 0.969, + 0.809, + 0.649, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.489, + 0.495, + 0.55, + 0.611, + 0.703, + 0.795, + 0.892, + 0.973, + 1.0, + 1.0, + 1.0, + 0.869, + 0.709, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.549, + 0.567, + 0.62, + 0.653, + 0.711, + 0.712, + 0.856, + 1.0, + 0.934, + 0.774, + 0.614, + 0.454, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.294, + 0.329, + 0.413, + 0.557, + 0.565, + 0.709, + 0.852, + 0.996, + 1.0, 0.84, 0.68, 0.52, @@ -4331,85 +4067,13 @@ 0.2, 0.2, 0.2, - 0.227, - 0.321, - 0.456, - 0.6, - 0.744, - 0.887, - 1.0, - 1.0, - 0.863, - 0.703, - 0.543, - 0.383, - 0.223, - 0.223, - 0.223, - 0.223, - 0.223, - 0.223, - 0.223, - 0.223, - 0.223, - 0.223, - 0.223, - 0.223, - 0.247, - 0.303, - 0.413, - 0.525, - 0.615, - 0.758, - 0.902, - 1.0, - 0.966, - 0.806, - 0.646, - 0.486, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.373, - 0.461, - 0.594, - 0.732, - 0.876, - 0.921, - 0.972, + 0.244, + 0.388, + 0.532, + 0.676, + 0.819, + 0.963, 1.0, - 0.938, - 0.778, - 0.618, - 0.458, - 0.298, - 0.298, - 0.298, - 0.298, - 0.298, - 0.298, - 0.298, - 0.298, - 0.298, - 0.298, - 0.298, - 0.298, - 0.304, - 0.358, - 0.382, - 0.436, - 0.58, - 0.723, - 0.867, 1.0, 0.84, 0.68, @@ -4427,12 +4091,12 @@ 0.2, 0.2, 0.2, - 0.2, - 0.33, - 0.473, - 0.617, - 0.761, - 0.905, + 0.253, + 0.396, + 0.54, + 0.684, + 0.828, + 0.972, 1.0, 1.0, 0.84, @@ -4451,12 +4115,12 @@ 0.2, 0.2, 0.2, - 0.249, - 0.374, - 0.491, - 0.635, - 0.778, - 0.922, + 0.253, + 0.396, + 0.54, + 0.684, + 0.828, + 0.971, 1.0, 1.0, 0.84, @@ -4475,12 +4139,12 @@ 0.2, 0.2, 0.2, - 0.256, - 0.391, - 0.534, - 0.628, - 0.771, - 0.915, + 0.216, + 0.36, + 0.503, + 0.647, + 0.791, + 0.935, 1.0, 1.0, 0.84, @@ -4499,13 +4163,13 @@ 0.2, 0.2, 0.2, - 0.26, - 0.4, - 0.544, - 0.688, - 0.831, - 0.975, - 1.0, + 0.2, + 0.208, + 0.3, + 0.443, + 0.587, + 0.731, + 0.875, 1.0, 0.84, 0.68, @@ -4523,12 +4187,12 @@ 0.2, 0.2, 0.2, - 0.219, - 0.362, - 0.505, - 0.649, - 0.793, - 0.937, + 0.239, + 0.375, + 0.519, + 0.663, + 0.807, + 0.95, 1.0, 1.0, 0.84, @@ -4547,12 +4211,12 @@ 0.2, 0.2, 0.2, - 0.262, - 0.398, - 0.542, - 0.686, - 0.829, - 0.973, + 0.256, + 0.399, + 0.543, + 0.687, + 0.831, + 0.975, 1.0, 1.0, 0.84, @@ -4571,12 +4235,12 @@ 0.2, 0.2, 0.2, - 0.26, - 0.397, - 0.54, - 0.684, - 0.828, - 0.972, + 0.261, + 0.405, + 0.549, + 0.692, + 0.836, + 0.98, 1.0, 1.0, 0.84, @@ -4595,37 +4259,13 @@ 0.2, 0.2, 0.2, - 0.216, - 0.299, + 0.258, 0.402, - 0.539, - 0.652, - 0.717, - 0.858, - 1.0, + 0.546, + 0.689, + 0.833, + 0.977, 1.0, - 0.999, - 0.839, - 0.679, - 0.519, - 0.519, - 0.519, - 0.519, - 0.519, - 0.519, - 0.519, - 0.519, - 0.519, - 0.519, - 0.519, - 0.519, - 0.519, - 0.526, - 0.533, - 0.541, - 0.569, - 0.712, - 0.856, 1.0, 0.84, 0.68, @@ -4643,13 +4283,13 @@ 0.2, 0.2, 0.2, - 0.263, - 0.4, - 0.544, - 0.688, - 0.831, - 0.975, - 1.0, + 0.213, + 0.289, + 0.418, + 0.561, + 0.705, + 0.849, + 0.993, 1.0, 0.84, 0.68, @@ -4667,37 +4307,13 @@ 0.2, 0.2, 0.2, - 0.26, - 0.393, - 0.536, - 0.68, - 0.824, - 0.968, - 1.0, + 0.259, + 0.403, + 0.547, + 0.691, + 0.834, + 0.978, 1.0, - 0.916, - 0.756, - 0.596, - 0.436, - 0.276, - 0.276, - 0.276, - 0.276, - 0.276, - 0.276, - 0.276, - 0.276, - 0.276, - 0.276, - 0.276, - 0.276, - 0.335, - 0.376, - 0.415, - 0.441, - 0.585, - 0.729, - 0.872, 1.0, 0.84, 0.68, @@ -4715,12 +4331,12 @@ 0.2, 0.2, 0.2, - 0.271, - 0.415, - 0.559, - 0.703, - 0.846, - 0.99, + 0.231, + 0.34, + 0.484, + 0.628, + 0.771, + 0.915, 1.0, 1.0, 0.84, @@ -4739,13 +4355,61 @@ 0.2, 0.2, 0.2, - 0.272, - 0.415, - 0.559, - 0.703, - 0.847, - 0.99, + 0.227, + 0.292, + 0.42, + 0.55, + 0.654, + 0.797, + 0.941, + 1.0, + 0.908, + 0.748, + 0.588, + 0.428, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.268, + 0.323, + 0.425, + 0.569, + 0.713, + 0.856, + 0.909, + 0.967, 1.0, + 0.905, + 0.745, + 0.585, + 0.425, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.265, + 0.272, + 0.334, + 0.362, + 0.425, + 0.569, + 0.712, + 0.856, 1.0, 0.84, 0.68, @@ -4763,12 +4427,12 @@ 0.2, 0.2, 0.2, - 0.268, - 0.411, - 0.555, - 0.698, - 0.842, - 0.986, + 0.2, + 0.344, + 0.488, + 0.631, + 0.775, + 0.919, 1.0, 1.0, 0.84, @@ -4787,12 +4451,12 @@ 0.2, 0.2, 0.2, - 0.266, - 0.408, - 0.552, - 0.696, - 0.84, - 0.983, + 0.256, + 0.4, + 0.535, + 0.679, + 0.823, + 0.966, 1.0, 1.0, 0.84, @@ -4811,12 +4475,12 @@ 0.2, 0.2, 0.2, - 0.201, - 0.345, - 0.489, - 0.632, - 0.776, - 0.92, + 0.264, + 0.408, + 0.552, + 0.66, + 0.804, + 0.948, 1.0, 1.0, 0.84, @@ -4835,37 +4499,13 @@ 0.2, 0.2, 0.2, - 0.275, - 0.419, - 0.563, - 0.707, - 0.851, - 0.994, - 1.0, + 0.269, + 0.413, + 0.557, + 0.701, + 0.844, + 0.988, 1.0, - 0.984, - 0.824, - 0.664, - 0.504, - 0.344, - 0.344, - 0.344, - 0.344, - 0.344, - 0.344, - 0.344, - 0.344, - 0.344, - 0.344, - 0.344, - 0.344, - 0.352, - 0.439, - 0.508, - 0.605, - 0.749, - 0.77, - 0.913, 1.0, 0.84, 0.68, @@ -4883,13 +4523,13 @@ 0.2, 0.2, 0.2, - 0.22, - 0.302, - 0.405, - 0.537, - 0.681, - 0.824, - 0.958, + 0.223, + 0.366, + 0.51, + 0.654, + 0.798, + 0.941, + 1.0, 1.0, 0.84, 0.68, @@ -4907,12 +4547,12 @@ 0.2, 0.2, 0.2, - 0.231, - 0.315, - 0.448, - 0.592, - 0.736, - 0.879, + 0.271, + 0.415, + 0.559, + 0.703, + 0.847, + 0.99, 1.0, 1.0, 0.84, @@ -4930,13 +4570,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.272, - 0.414, - 0.547, - 0.691, - 0.835, - 0.979, + 0.2, + 0.27, + 0.413, + 0.557, + 0.701, + 0.845, + 0.988, 1.0, 1.0, 0.84, @@ -4954,15 +4594,39 @@ 0.2, 0.2, 0.2, - 0.202, - 0.274, - 0.417, - 0.56, - 0.704, - 0.848, - 0.992, + 0.2, + 0.219, + 0.314, + 0.434, + 0.578, + 0.709, + 0.784, + 0.928, 1.0, 1.0, + 0.991, + 0.831, + 0.671, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.511, + 0.52, + 0.527, + 0.536, + 0.569, + 0.712, + 0.856, + 1.0, 0.84, 0.68, 0.52, @@ -4978,14 +4642,14 @@ 0.2, 0.2, 0.2, - 0.201, - 0.234, - 0.316, - 0.422, - 0.566, - 0.709, - 0.853, - 0.997, + 0.2, + 0.273, + 0.416, + 0.56, + 0.704, + 0.848, + 0.991, + 1.0, 1.0, 0.84, 0.68, @@ -5002,15 +4666,39 @@ 0.2, 0.2, 0.2, - 0.204, - 0.28, - 0.424, - 0.568, - 0.711, - 0.855, - 0.999, + 0.2, + 0.269, + 0.413, + 0.557, + 0.701, + 0.844, + 0.988, 1.0, 1.0, + 0.874, + 0.714, + 0.554, + 0.394, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.303, + 0.35, + 0.395, + 0.425, + 0.569, + 0.712, + 0.856, + 1.0, 0.84, 0.68, 0.52, @@ -5026,12 +4714,12 @@ 0.2, 0.2, 0.2, - 0.206, - 0.288, - 0.432, - 0.576, - 0.719, - 0.863, + 0.2, + 0.283, + 0.426, + 0.57, + 0.714, + 0.858, 1.0, 1.0, 1.0, @@ -5050,13 +4738,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.261, - 0.405, - 0.549, - 0.693, - 0.837, - 0.98, + 0.2, + 0.283, + 0.427, + 0.571, + 0.714, + 0.858, + 1.0, 1.0, 1.0, 0.84, @@ -5074,13 +4762,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.285, - 0.396, - 0.54, - 0.684, - 0.828, - 0.971, + 0.2, + 0.279, + 0.422, + 0.566, + 0.71, + 0.854, + 0.998, 1.0, 1.0, 0.84, @@ -5098,13 +4786,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.254, - 0.355, - 0.499, - 0.643, - 0.786, - 0.93, + 0.2, + 0.277, + 0.421, + 0.565, + 0.708, + 0.852, + 0.996, 1.0, 1.0, 0.84, @@ -5122,13 +4810,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.289, - 0.433, - 0.577, - 0.72, - 0.864, - 1.0, + 0.2, + 0.201, + 0.345, + 0.489, + 0.633, + 0.776, + 0.92, 1.0, 1.0, 0.84, @@ -5146,14 +4834,38 @@ 0.2, 0.2, 0.2, - 0.209, - 0.289, - 0.433, - 0.576, - 0.72, - 0.864, + 0.2, + 0.287, + 0.431, + 0.575, + 0.719, + 0.863, + 1.0, 1.0, 1.0, + 0.925, + 0.765, + 0.605, + 0.445, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.285, + 0.294, + 0.395, + 0.475, + 0.588, + 0.731, + 0.756, + 0.899, 1.0, 0.84, 0.68, @@ -5170,13 +4882,13 @@ 0.2, 0.2, 0.2, - 0.211, - 0.293, - 0.437, - 0.581, - 0.725, - 0.868, - 1.0, + 0.2, + 0.223, + 0.318, + 0.438, + 0.582, + 0.726, + 0.87, 1.0, 1.0, 0.84, @@ -5194,13 +4906,13 @@ 0.2, 0.2, 0.2, - 0.211, - 0.294, - 0.438, - 0.582, - 0.725, - 0.869, - 1.0, + 0.2, + 0.236, + 0.333, + 0.477, + 0.621, + 0.764, + 0.908, 1.0, 1.0, 0.84, @@ -5218,12 +4930,12 @@ 0.2, 0.2, 0.2, - 0.211, - 0.289, - 0.433, - 0.577, - 0.721, - 0.864, + 0.202, + 0.283, + 0.427, + 0.571, + 0.715, + 0.858, 1.0, 1.0, 1.0, @@ -5242,12 +4954,12 @@ 0.2, 0.2, 0.2, - 0.213, - 0.3, - 0.444, - 0.588, - 0.732, - 0.875, + 0.202, + 0.286, + 0.43, + 0.574, + 0.717, + 0.861, 1.0, 1.0, 1.0, @@ -5266,13 +4978,13 @@ 0.2, 0.2, 0.2, - 0.214, - 0.303, - 0.447, - 0.591, - 0.734, - 0.878, - 1.0, + 0.201, + 0.24, + 0.334, + 0.457, + 0.601, + 0.745, + 0.888, 1.0, 1.0, 0.84, @@ -5290,12 +5002,12 @@ 0.2, 0.2, 0.2, - 0.215, - 0.304, - 0.448, - 0.591, - 0.735, - 0.879, + 0.205, + 0.293, + 0.437, + 0.58, + 0.724, + 0.868, 1.0, 1.0, 1.0, @@ -5314,13 +5026,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.255, - 0.345, - 0.489, - 0.633, - 0.776, - 0.92, + 0.207, + 0.302, + 0.446, + 0.59, + 0.733, + 0.877, + 1.0, 1.0, 1.0, 0.84, @@ -5338,13 +5050,13 @@ 0.2, 0.2, 0.2, - 0.215, - 0.298, - 0.441, - 0.585, - 0.729, - 0.873, - 1.0, + 0.203, + 0.271, + 0.415, + 0.559, + 0.703, + 0.846, + 0.99, 1.0, 1.0, 0.84, @@ -5362,12 +5074,12 @@ 0.2, 0.2, 0.2, - 0.215, - 0.295, - 0.438, - 0.582, - 0.726, - 0.87, + 0.208, + 0.299, + 0.428, + 0.571, + 0.715, + 0.859, 1.0, 1.0, 1.0, @@ -5386,13 +5098,13 @@ 0.2, 0.2, 0.2, - 0.216, - 0.299, - 0.409, - 0.553, - 0.697, - 0.841, - 0.984, + 0.208, + 0.262, + 0.38, + 0.524, + 0.667, + 0.811, + 0.955, 1.0, 1.0, 0.84, @@ -5410,13 +5122,13 @@ 0.2, 0.2, 0.2, - 0.215, - 0.296, - 0.402, - 0.546, - 0.69, - 0.834, - 0.977, + 0.21, + 0.303, + 0.447, + 0.591, + 0.735, + 0.878, + 1.0, 1.0, 1.0, 0.84, @@ -5434,12 +5146,12 @@ 0.2, 0.2, 0.2, - 0.216, - 0.297, - 0.441, - 0.585, - 0.728, - 0.872, + 0.21, + 0.303, + 0.447, + 0.59, + 0.734, + 0.878, 1.0, 1.0, 1.0, @@ -5458,13 +5170,13 @@ 0.2, 0.2, 0.2, - 0.218, - 0.306, - 0.45, - 0.594, - 0.738, - 0.881, - 0.932, + 0.212, + 0.308, + 0.452, + 0.596, + 0.74, + 0.883, + 1.0, 1.0, 1.0, 0.84, @@ -5482,12 +5194,12 @@ 0.2, 0.2, 0.2, - 0.218, - 0.307, - 0.45, - 0.594, - 0.738, - 0.882, + 0.213, + 0.309, + 0.453, + 0.597, + 0.74, + 0.884, 1.0, 1.0, 1.0, @@ -5506,12 +5218,12 @@ 0.2, 0.2, 0.2, - 0.219, + 0.213, 0.303, 0.447, 0.591, 0.735, - 0.878, + 0.879, 1.0, 1.0, 1.0, @@ -5530,13 +5242,13 @@ 0.2, 0.2, 0.2, - 0.219, - 0.267, - 0.37, - 0.514, - 0.658, - 0.801, - 0.945, + 0.215, + 0.316, + 0.46, + 0.604, + 0.748, + 0.891, + 1.0, 1.0, 1.0, 0.84, @@ -5554,7 +5266,7 @@ 0.2, 0.2, 0.2, - 0.222, + 0.216, 0.319, 0.463, 0.607, @@ -5578,12 +5290,12 @@ 0.2, 0.2, 0.2, - 0.221, - 0.312, - 0.456, - 0.6, - 0.743, - 0.887, + 0.217, + 0.32, + 0.464, + 0.608, + 0.752, + 0.895, 1.0, 1.0, 1.0, @@ -5602,13 +5314,13 @@ 0.2, 0.2, 0.2, - 0.223, - 0.322, - 0.466, - 0.609, - 0.753, - 0.897, - 1.0, + 0.207, + 0.263, + 0.368, + 0.512, + 0.656, + 0.799, + 0.943, 1.0, 1.0, 0.84, @@ -5626,15 +5338,15 @@ 0.2, 0.2, 0.2, - 0.223, - 0.32, - 0.463, - 0.607, - 0.751, - 0.895, - 1.0, - 1.0, - 1.0, + 0.217, + 0.313, + 0.457, + 0.601, + 0.745, + 0.888, + 1.0, + 1.0, + 1.0, 0.84, 0.68, 0.52, @@ -5650,12 +5362,12 @@ 0.2, 0.2, 0.2, - 0.223, - 0.313, - 0.437, - 0.581, - 0.725, - 0.868, + 0.217, + 0.31, + 0.453, + 0.597, + 0.741, + 0.885, 1.0, 1.0, 1.0, @@ -5674,13 +5386,13 @@ 0.2, 0.2, 0.2, - 0.224, + 0.218, 0.315, - 0.416, - 0.56, - 0.704, - 0.847, - 0.991, + 0.443, + 0.586, + 0.73, + 0.874, + 1.0, 1.0, 1.0, 0.84, @@ -5698,12 +5410,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.322, - 0.465, - 0.609, - 0.753, - 0.897, + 0.218, + 0.311, + 0.434, + 0.578, + 0.722, + 0.866, 1.0, 1.0, 1.0, @@ -5722,12 +5434,12 @@ 0.2, 0.2, 0.2, - 0.226, - 0.324, - 0.468, - 0.612, - 0.755, - 0.899, + 0.219, + 0.313, + 0.456, + 0.6, + 0.744, + 0.888, 1.0, 1.0, 1.0, @@ -5746,13 +5458,13 @@ 0.2, 0.2, 0.2, - 0.227, - 0.325, - 0.469, - 0.612, - 0.756, - 0.9, - 1.0, + 0.221, + 0.323, + 0.467, + 0.611, + 0.755, + 0.898, + 0.957, 1.0, 1.0, 0.84, @@ -5770,12 +5482,12 @@ 0.2, 0.2, 0.2, - 0.22, - 0.313, - 0.457, - 0.601, - 0.744, - 0.888, + 0.221, + 0.324, + 0.467, + 0.611, + 0.755, + 0.899, 1.0, 1.0, 1.0, @@ -5794,12 +5506,12 @@ 0.2, 0.2, 0.2, - 0.227, + 0.221, 0.32, 0.464, - 0.608, - 0.752, - 0.896, + 0.607, + 0.751, + 0.895, 1.0, 1.0, 1.0, @@ -5818,13 +5530,13 @@ 0.2, 0.2, 0.2, - 0.227, - 0.325, - 0.469, - 0.613, - 0.757, - 0.9, - 1.0, + 0.222, + 0.278, + 0.397, + 0.541, + 0.685, + 0.829, + 0.972, 1.0, 1.0, 0.84, @@ -5842,14 +5554,14 @@ 0.2, 0.2, 0.2, - 0.2, - 0.297, - 0.387, - 0.531, - 0.571, - 0.695, - 0.839, - 0.983, + 0.225, + 0.338, + 0.482, + 0.626, + 0.769, + 0.913, + 1.0, + 1.0, 1.0, 0.84, 0.68, @@ -5866,38 +5578,38 @@ 0.2, 0.2, 0.2, - 0.228, - 0.326, - 0.416, - 0.559, - 0.703, - 0.847, - 0.991, + 0.225, + 0.33, + 0.474, + 0.618, + 0.761, + 0.905, 1.0, 1.0, 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.227, + 0.341, + 0.485, + 0.629, + 0.773, + 0.916, + 1.0, 1.0, - 0.942, - 0.782, - 0.622, - 0.622, - 0.622, - 0.622, - 0.622, - 0.622, - 0.622, - 0.622, - 0.622, - 0.622, - 0.622, - 0.622, - 0.717, - 0.861, - 0.905, - 0.91, - 0.928, - 0.936, - 0.968, 1.0, 0.84, 0.68, @@ -5914,12 +5626,12 @@ 0.2, 0.2, 0.2, - 0.221, - 0.325, - 0.469, - 0.613, - 0.756, - 0.9, + 0.227, + 0.339, + 0.482, + 0.626, + 0.77, + 0.914, 1.0, 1.0, 1.0, @@ -5938,12 +5650,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.327, - 0.471, - 0.615, - 0.758, - 0.902, + 0.226, + 0.331, + 0.474, + 0.618, + 0.762, + 0.906, 1.0, 1.0, 1.0, @@ -5961,13 +5673,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.229, - 0.325, - 0.469, - 0.613, - 0.757, - 0.9, + 0.2, + 0.227, + 0.333, + 0.451, + 0.594, + 0.738, + 0.882, 1.0, 1.0, 1.0, @@ -5985,13 +5697,13 @@ 0.2, 0.2, 0.2, - 0.201, + 0.2, 0.229, - 0.324, - 0.468, - 0.612, - 0.756, - 0.899, + 0.341, + 0.485, + 0.629, + 0.772, + 0.916, 1.0, 1.0, 1.0, @@ -6009,13 +5721,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.225, - 0.32, - 0.464, - 0.608, - 0.752, - 0.895, + 0.2, + 0.23, + 0.344, + 0.488, + 0.631, + 0.775, + 0.919, 1.0, 1.0, 1.0, @@ -6033,13 +5745,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.23, - 0.326, - 0.47, - 0.614, - 0.758, - 0.901, + 0.2, + 0.231, + 0.345, + 0.489, + 0.632, + 0.776, + 0.92, 1.0, 1.0, 1.0, @@ -6057,13 +5769,37 @@ 0.2, 0.2, 0.2, - 0.201, - 0.23, - 0.32, - 0.464, - 0.607, - 0.751, - 0.895, + 0.2, + 0.223, + 0.331, + 0.475, + 0.619, + 0.762, + 0.906, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.377, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.248, + 0.357, + 0.501, + 0.644, + 0.788, + 0.932, 1.0, 1.0, 1.0, @@ -6081,13 +5817,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.23, - 0.325, - 0.469, - 0.613, - 0.756, - 0.9, + 0.2, + 0.232, + 0.345, + 0.489, + 0.633, + 0.777, + 0.92, 1.0, 1.0, 1.0, @@ -6105,14 +5841,14 @@ 0.2, 0.2, 0.2, - 0.201, - 0.23, - 0.324, - 0.467, - 0.611, - 0.755, - 0.899, - 1.0, + 0.2, + 0.2, + 0.312, + 0.416, + 0.56, + 0.607, + 0.75, + 0.894, 1.0, 1.0, 0.84, @@ -6129,16 +5865,40 @@ 0.2, 0.2, 0.2, - 0.201, + 0.2, 0.233, - 0.33, - 0.474, - 0.618, - 0.761, - 0.905, + 0.346, + 0.45, + 0.594, + 0.738, + 0.881, + 1.0, + 1.0, 1.0, 1.0, 1.0, + 0.905, + 0.745, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.585, + 0.695, + 0.839, + 0.89, + 0.896, + 0.916, + 0.926, + 0.963, + 1.0, 0.84, 0.68, 0.52, @@ -6153,14 +5913,14 @@ 0.2, 0.2, 0.2, - 0.202, - 0.222, - 0.318, - 0.462, - 0.605, - 0.749, - 0.857, - 0.987, + 0.2, + 0.224, + 0.345, + 0.489, + 0.632, + 0.776, + 0.92, + 1.0, 1.0, 1.0, 0.84, @@ -6178,14 +5938,38 @@ 0.2, 0.2, 0.2, - 0.223, - 0.293, - 0.384, - 0.494, - 0.544, - 0.683, - 0.826, - 0.97, + 0.234, + 0.347, + 0.491, + 0.635, + 0.778, + 0.922, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.377, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.218, + 0.251, + 0.363, + 0.506, + 0.65, + 0.794, + 0.938, + 1.0, + 1.0, 1.0, 0.84, 0.68, @@ -6201,13 +5985,13 @@ 0.2, 0.2, 0.2, - 0.202, + 0.201, 0.233, - 0.33, - 0.474, - 0.618, - 0.762, - 0.905, + 0.344, + 0.488, + 0.632, + 0.776, + 0.919, 1.0, 1.0, 1.0, @@ -6225,13 +6009,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.235, - 0.336, - 0.48, - 0.623, - 0.767, - 0.911, + 0.201, + 0.229, + 0.339, + 0.483, + 0.627, + 0.771, + 0.914, 1.0, 1.0, 1.0, @@ -6249,13 +6033,13 @@ 0.2, 0.2, 0.2, - 0.203, + 0.201, 0.235, - 0.333, - 0.477, - 0.62, - 0.764, - 0.908, + 0.346, + 0.49, + 0.634, + 0.778, + 0.921, 1.0, 1.0, 1.0, @@ -6273,13 +6057,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.236, - 0.333, - 0.476, - 0.62, - 0.764, - 0.908, + 0.201, + 0.234, + 0.339, + 0.483, + 0.626, + 0.77, + 0.914, 1.0, 1.0, 1.0, @@ -6297,13 +6081,13 @@ 0.2, 0.2, 0.2, - 0.203, + 0.201, 0.235, - 0.33, - 0.473, - 0.617, - 0.761, - 0.905, + 0.345, + 0.489, + 0.632, + 0.776, + 0.92, 1.0, 1.0, 1.0, @@ -6321,13 +6105,37 @@ 0.2, 0.2, 0.2, - 0.203, + 0.201, 0.235, - 0.334, - 0.477, - 0.621, - 0.765, - 0.909, + 0.343, + 0.487, + 0.631, + 0.775, + 0.918, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.394, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.236, + 0.272, + 0.385, + 0.529, + 0.673, + 0.816, + 0.96, 1.0, 1.0, 1.0, @@ -6345,13 +6153,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.235, - 0.331, - 0.475, - 0.619, - 0.762, - 0.906, + 0.202, + 0.226, + 0.337, + 0.48, + 0.624, + 0.768, + 0.893, 1.0, 1.0, 1.0, @@ -6369,14 +6177,14 @@ 0.2, 0.2, 0.2, - 0.203, - 0.234, - 0.327, - 0.471, - 0.615, - 0.759, - 0.902, - 1.0, + 0.2, + 0.227, + 0.308, + 0.414, + 0.54, + 0.599, + 0.743, + 0.887, 1.0, 1.0, 0.84, @@ -6393,13 +6201,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.235, - 0.326, - 0.466, - 0.61, - 0.754, - 0.898, + 0.202, + 0.238, + 0.351, + 0.495, + 0.639, + 0.782, + 0.926, 1.0, 1.0, 1.0, @@ -6417,13 +6225,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.237, - 0.333, - 0.476, - 0.62, - 0.764, - 0.908, + 0.203, + 0.24, + 0.357, + 0.501, + 0.645, + 0.789, + 0.932, 1.0, 1.0, 1.0, @@ -6441,14 +6249,14 @@ 0.2, 0.2, 0.2, - 0.205, - 0.24, - 0.322, - 0.46, - 0.604, - 0.748, - 0.892, - 0.971, + 0.203, + 0.241, + 0.354, + 0.498, + 0.642, + 0.785, + 0.929, + 1.0, 1.0, 1.0, 0.84, @@ -6465,14 +6273,38 @@ 0.2, 0.2, 0.2, - 0.206, - 0.243, - 0.342, - 0.418, - 0.562, - 0.705, - 0.849, - 0.993, + 0.204, + 0.242, + 0.354, + 0.497, + 0.641, + 0.785, + 0.929, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.412, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.255, + 0.293, + 0.402, + 0.546, + 0.689, + 0.833, + 0.977, + 1.0, 1.0, 1.0, 0.84, @@ -6489,13 +6321,13 @@ 0.2, 0.2, 0.2, - 0.205, + 0.204, 0.24, - 0.341, - 0.485, - 0.625, - 0.768, - 0.912, + 0.355, + 0.499, + 0.642, + 0.786, + 0.93, 1.0, 1.0, 1.0, @@ -6513,13 +6345,13 @@ 0.2, 0.2, 0.2, - 0.205, - 0.239, - 0.332, - 0.476, - 0.619, - 0.763, - 0.907, + 0.204, + 0.241, + 0.352, + 0.496, + 0.639, + 0.783, + 0.927, 1.0, 1.0, 1.0, @@ -6537,13 +6369,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.243, - 0.337, - 0.481, - 0.624, - 0.768, - 0.912, + 0.204, + 0.239, + 0.348, + 0.491, + 0.635, + 0.779, + 0.923, 1.0, 1.0, 1.0, @@ -6561,13 +6393,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.242, - 0.337, - 0.481, - 0.625, - 0.769, - 0.912, + 0.204, + 0.241, + 0.346, + 0.49, + 0.633, + 0.777, + 0.921, 1.0, 1.0, 1.0, @@ -6586,12 +6418,12 @@ 0.2, 0.2, 0.205, - 0.24, - 0.338, - 0.482, - 0.626, - 0.769, - 0.913, + 0.243, + 0.354, + 0.497, + 0.641, + 0.785, + 0.929, 1.0, 1.0, 1.0, @@ -6609,37 +6441,37 @@ 0.2, 0.2, 0.2, - 0.205, - 0.241, - 0.348, - 0.492, - 0.636, - 0.78, - 0.923, + 0.206, + 0.247, + 0.342, + 0.485, + 0.629, + 0.773, + 0.917, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.367, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.214, - 0.249, - 0.351, - 0.495, - 0.638, - 0.782, - 0.926, + 0.412, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.259, + 0.302, + 0.417, + 0.504, + 0.648, + 0.792, + 0.936, 1.0, 1.0, 1.0, @@ -6657,13 +6489,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.245, - 0.344, - 0.488, - 0.632, - 0.776, - 0.919, + 0.206, + 0.246, + 0.364, + 0.507, + 0.651, + 0.795, + 0.939, 1.0, 1.0, 1.0, @@ -6681,13 +6513,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.243, - 0.34, - 0.484, - 0.627, - 0.771, - 0.915, + 0.206, + 0.245, + 0.353, + 0.497, + 0.64, + 0.784, + 0.928, 1.0, 1.0, 1.0, @@ -6705,13 +6537,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.242, - 0.339, - 0.483, - 0.626, - 0.77, - 0.914, + 0.208, + 0.25, + 0.359, + 0.502, + 0.646, + 0.79, + 0.934, 1.0, 1.0, 1.0, @@ -6729,13 +6561,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.239, - 0.338, - 0.482, - 0.626, - 0.77, - 0.913, + 0.207, + 0.248, + 0.359, + 0.503, + 0.647, + 0.791, + 0.934, 1.0, 1.0, 1.0, @@ -6754,12 +6586,12 @@ 0.2, 0.2, 0.206, - 0.239, - 0.338, - 0.482, - 0.626, - 0.77, - 0.913, + 0.246, + 0.36, + 0.504, + 0.647, + 0.791, + 0.935, 1.0, 1.0, 1.0, @@ -6778,36 +6610,36 @@ 0.2, 0.2, 0.206, - 0.238, - 0.334, - 0.478, - 0.622, - 0.765, - 0.909, + 0.248, + 0.372, + 0.516, + 0.659, + 0.803, + 0.947, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.368, - 0.208, - 0.208, - 0.208, - 0.208, - 0.208, - 0.208, - 0.208, - 0.208, - 0.208, - 0.208, - 0.213, - 0.245, - 0.337, - 0.48, - 0.624, - 0.767, - 0.911, + 0.43, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.277, + 0.319, + 0.436, + 0.58, + 0.724, + 0.868, + 1.0, 1.0, 1.0, 1.0, @@ -6825,13 +6657,13 @@ 0.2, 0.2, 0.2, - 0.205, - 0.237, - 0.331, - 0.475, - 0.619, - 0.763, - 0.907, + 0.209, + 0.252, + 0.367, + 0.511, + 0.655, + 0.799, + 0.942, 1.0, 1.0, 1.0, @@ -6849,13 +6681,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.238, - 0.328, - 0.47, - 0.614, - 0.757, - 0.901, + 0.209, + 0.25, + 0.362, + 0.506, + 0.65, + 0.793, + 0.937, 1.0, 1.0, 1.0, @@ -6873,13 +6705,13 @@ 0.2, 0.2, 0.2, - 0.205, - 0.237, - 0.31, - 0.454, - 0.597, - 0.741, - 0.885, + 0.208, + 0.249, + 0.361, + 0.505, + 0.648, + 0.792, + 0.936, 1.0, 1.0, 1.0, @@ -6898,12 +6730,12 @@ 0.2, 0.2, 0.207, - 0.241, - 0.338, - 0.482, - 0.626, - 0.769, - 0.913, + 0.246, + 0.36, + 0.504, + 0.648, + 0.792, + 0.935, 1.0, 1.0, 1.0, @@ -6921,13 +6753,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.244, - 0.341, - 0.485, - 0.628, - 0.772, - 0.916, + 0.206, + 0.245, + 0.36, + 0.504, + 0.648, + 0.792, + 0.935, 1.0, 1.0, 1.0, @@ -6945,61 +6777,37 @@ 0.2, 0.2, 0.2, - 0.208, - 0.242, - 0.337, - 0.48, - 0.624, - 0.768, - 0.912, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.398, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, + 0.207, 0.245, - 0.277, - 0.37, - 0.514, - 0.657, - 0.801, - 0.945, + 0.355, + 0.499, + 0.643, + 0.787, + 0.931, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.398, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.238, - 0.245, - 0.278, - 0.368, - 0.51, - 0.653, - 0.797, - 0.941, + 0.43, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.276, + 0.313, + 0.42, + 0.564, + 0.708, + 0.851, + 0.995, 1.0, 1.0, 1.0, @@ -7017,13 +6825,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.239, - 0.33, - 0.473, - 0.617, - 0.761, - 0.905, + 0.206, + 0.243, + 0.352, + 0.496, + 0.64, + 0.784, + 0.927, 1.0, 1.0, 1.0, @@ -7041,15 +6849,15 @@ 0.2, 0.2, 0.2, - 0.208, - 0.238, - 0.307, - 0.381, - 0.525, - 0.668, - 0.812, - 0.916, - 0.95, + 0.207, + 0.244, + 0.349, + 0.492, + 0.636, + 0.78, + 0.924, + 1.0, + 1.0, 1.0, 0.84, 0.68, @@ -7065,13 +6873,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.239, - 0.326, - 0.469, - 0.613, - 0.757, - 0.901, + 0.206, + 0.243, + 0.327, + 0.471, + 0.615, + 0.759, + 0.903, 1.0, 1.0, 1.0, @@ -7089,14 +6897,14 @@ 0.2, 0.2, 0.2, - 0.207, - 0.236, - 0.307, - 0.37, - 0.509, - 0.653, - 0.797, - 0.941, + 0.208, + 0.247, + 0.36, + 0.504, + 0.648, + 0.791, + 0.935, + 1.0, 1.0, 1.0, 0.84, @@ -7113,37 +6921,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.239, - 0.327, - 0.465, - 0.609, - 0.753, - 0.897, - 1.0, - 1.0, - 1.0, - 0.84, - 0.68, - 0.52, - 0.4, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.247, - 0.277, - 0.364, - 0.503, - 0.646, - 0.79, - 0.934, + 0.209, + 0.251, + 0.363, + 0.507, + 0.651, + 0.794, + 0.938, 1.0, 1.0, 1.0, @@ -7161,15 +6945,63 @@ 0.2, 0.2, 0.2, - 0.206, - 0.225, - 0.275, - 0.314, - 0.361, - 0.505, - 0.648, - 0.792, - 0.936, + 0.209, + 0.249, + 0.358, + 0.502, + 0.646, + 0.79, + 0.933, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.448, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.295, + 0.333, + 0.441, + 0.584, + 0.728, + 0.872, + 1.0, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.448, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.288, + 0.296, + 0.334, + 0.439, + 0.583, + 0.726, + 0.87, + 1.0, + 1.0, + 1.0, 1.0, 0.84, 0.68, @@ -7185,13 +7017,13 @@ 0.2, 0.2, 0.2, - 0.208, - 0.239, - 0.331, - 0.475, - 0.619, - 0.763, - 0.906, + 0.21, + 0.245, + 0.351, + 0.495, + 0.639, + 0.783, + 0.926, 1.0, 1.0, 1.0, @@ -7209,14 +7041,14 @@ 0.2, 0.2, 0.2, - 0.207, - 0.24, - 0.339, - 0.482, - 0.626, - 0.77, - 0.914, - 1.0, + 0.209, + 0.244, + 0.323, + 0.41, + 0.553, + 0.697, + 0.841, + 0.961, 1.0, 1.0, 0.84, @@ -7233,13 +7065,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.239, - 0.339, - 0.483, - 0.627, - 0.77, - 0.914, + 0.209, + 0.245, + 0.347, + 0.49, + 0.634, + 0.778, + 0.922, 1.0, 1.0, 1.0, @@ -7257,14 +7089,14 @@ 0.2, 0.2, 0.2, - 0.206, - 0.238, - 0.332, - 0.476, - 0.619, - 0.763, - 0.907, - 1.0, + 0.208, + 0.242, + 0.324, + 0.397, + 0.541, + 0.685, + 0.829, + 0.972, 1.0, 1.0, 0.84, @@ -7281,37 +7113,37 @@ 0.2, 0.2, 0.2, - 0.207, - 0.237, - 0.329, - 0.472, - 0.616, - 0.76, - 0.904, + 0.208, + 0.245, + 0.347, + 0.491, + 0.635, + 0.778, + 0.922, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.4, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.24, - 0.247, - 0.276, - 0.364, - 0.506, - 0.65, - 0.793, - 0.937, + 0.449, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.297, + 0.332, + 0.433, + 0.577, + 0.721, + 0.865, + 1.0, 1.0, 1.0, 1.0, @@ -7329,15 +7161,15 @@ 0.2, 0.2, 0.2, - 0.206, - 0.238, - 0.329, - 0.473, - 0.617, - 0.761, - 0.904, - 1.0, - 1.0, + 0.207, + 0.229, + 0.287, + 0.332, + 0.386, + 0.53, + 0.674, + 0.818, + 0.961, 1.0, 0.84, 0.68, @@ -7353,13 +7185,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.238, - 0.331, - 0.475, - 0.619, - 0.763, - 0.906, + 0.209, + 0.245, + 0.352, + 0.496, + 0.64, + 0.783, + 0.927, 1.0, 1.0, 1.0, @@ -7377,13 +7209,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.237, - 0.329, - 0.472, - 0.616, - 0.76, - 0.904, + 0.208, + 0.246, + 0.361, + 0.504, + 0.648, + 0.792, + 0.936, 1.0, 1.0, 1.0, @@ -7402,12 +7234,12 @@ 0.2, 0.2, 0.207, - 0.237, - 0.325, - 0.463, - 0.607, - 0.751, - 0.894, + 0.245, + 0.361, + 0.505, + 0.649, + 0.793, + 0.936, 1.0, 1.0, 1.0, @@ -7426,12 +7258,12 @@ 0.2, 0.2, 0.207, - 0.236, - 0.325, - 0.468, - 0.612, - 0.755, - 0.899, + 0.243, + 0.353, + 0.497, + 0.64, + 0.784, + 0.928, 1.0, 1.0, 1.0, @@ -7449,37 +7281,37 @@ 0.2, 0.2, 0.2, - 0.207, - 0.237, - 0.327, - 0.469, - 0.613, - 0.757, - 0.901, + 0.208, + 0.243, + 0.349, + 0.493, + 0.637, + 0.78, + 0.924, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.431, - 0.271, - 0.271, - 0.271, - 0.271, - 0.271, - 0.271, - 0.271, - 0.271, - 0.271, - 0.271, - 0.278, - 0.307, - 0.396, - 0.539, - 0.683, - 0.826, - 0.97, + 0.449, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.289, + 0.296, + 0.33, + 0.433, + 0.577, + 0.721, + 0.864, + 1.0, 1.0, 1.0, 1.0, @@ -7497,13 +7329,13 @@ 0.2, 0.2, 0.2, - 0.209, - 0.239, - 0.326, - 0.464, - 0.608, - 0.752, - 0.896, + 0.207, + 0.244, + 0.35, + 0.494, + 0.638, + 0.781, + 0.925, 1.0, 1.0, 1.0, @@ -7521,13 +7353,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.236, - 0.323, - 0.461, - 0.605, - 0.748, - 0.892, + 0.209, + 0.244, + 0.352, + 0.496, + 0.64, + 0.784, + 0.927, 1.0, 1.0, 1.0, @@ -7545,13 +7377,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.235, - 0.323, - 0.463, - 0.607, - 0.751, - 0.895, + 0.208, + 0.243, + 0.349, + 0.493, + 0.637, + 0.78, + 0.924, 1.0, 1.0, 1.0, @@ -7569,13 +7401,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.233, - 0.32, - 0.458, - 0.602, - 0.745, - 0.889, + 0.208, + 0.243, + 0.345, + 0.488, + 0.632, + 0.776, + 0.92, 1.0, 1.0, 1.0, @@ -7593,13 +7425,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.233, - 0.318, - 0.455, - 0.599, - 0.743, - 0.887, + 0.208, + 0.241, + 0.344, + 0.488, + 0.632, + 0.776, + 0.919, 1.0, 1.0, 1.0, @@ -7617,37 +7449,37 @@ 0.2, 0.2, 0.2, - 0.207, - 0.233, - 0.308, - 0.432, - 0.576, - 0.719, - 0.863, + 0.209, + 0.243, + 0.347, + 0.491, + 0.634, + 0.778, + 0.922, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.43, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.277, - 0.305, - 0.383, - 0.51, - 0.653, - 0.797, - 0.941, + 0.467, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.315, + 0.349, + 0.453, + 0.597, + 0.74, + 0.884, + 1.0, 1.0, 1.0, 1.0, @@ -7665,13 +7497,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.233, - 0.314, - 0.443, - 0.587, - 0.731, - 0.875, + 0.21, + 0.246, + 0.346, + 0.49, + 0.634, + 0.778, + 0.921, 1.0, 1.0, 1.0, @@ -7689,13 +7521,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.233, - 0.315, - 0.448, - 0.592, - 0.736, - 0.88, + 0.208, + 0.242, + 0.342, + 0.486, + 0.63, + 0.773, + 0.917, 1.0, 1.0, 1.0, @@ -7713,13 +7545,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.234, - 0.322, - 0.464, - 0.608, - 0.752, - 0.895, + 0.208, + 0.241, + 0.342, + 0.486, + 0.63, + 0.774, + 0.918, 1.0, 1.0, 1.0, @@ -7738,12 +7570,12 @@ 0.2, 0.2, 0.207, - 0.235, - 0.325, - 0.469, - 0.613, - 0.756, - 0.9, + 0.239, + 0.339, + 0.482, + 0.626, + 0.77, + 0.914, 1.0, 1.0, 1.0, @@ -7761,13 +7593,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.232, - 0.318, - 0.456, - 0.599, - 0.743, - 0.887, + 0.207, + 0.238, + 0.337, + 0.481, + 0.625, + 0.769, + 0.912, 1.0, 1.0, 1.0, @@ -7785,37 +7617,37 @@ 0.2, 0.2, 0.2, - 0.205, - 0.23, - 0.318, - 0.461, - 0.605, - 0.749, - 0.893, + 0.208, + 0.239, + 0.326, + 0.469, + 0.613, + 0.756, + 0.9, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.429, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.273, - 0.299, - 0.387, - 0.531, - 0.675, - 0.819, - 0.962, + 0.467, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.315, + 0.347, + 0.437, + 0.581, + 0.725, + 0.868, + 1.0, 1.0, 1.0, 1.0, @@ -7833,13 +7665,13 @@ 0.2, 0.2, 0.2, - 0.205, - 0.23, - 0.318, - 0.46, - 0.604, - 0.748, - 0.892, + 0.208, + 0.238, + 0.332, + 0.476, + 0.62, + 0.764, + 0.907, 1.0, 1.0, 1.0, @@ -7857,37 +7689,37 @@ 0.2, 0.2, 0.2, - 0.204, - 0.23, - 0.315, - 0.45, - 0.594, - 0.737, - 0.881, + 0.207, + 0.238, + 0.333, + 0.477, + 0.621, + 0.765, + 0.908, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.43, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.27, - 0.276, - 0.302, - 0.381, - 0.51, - 0.653, - 0.797, - 0.941, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.208, + 0.24, + 0.341, + 0.485, + 0.629, + 0.772, + 0.916, 1.0, 1.0, 1.0, @@ -7906,12 +7738,12 @@ 0.2, 0.2, 0.208, - 0.237, - 0.315, - 0.442, - 0.586, - 0.73, - 0.873, + 0.241, + 0.345, + 0.489, + 0.633, + 0.776, + 0.92, 1.0, 1.0, 1.0, @@ -7929,13 +7761,13 @@ 0.2, 0.2, 0.2, - 0.206, - 0.231, - 0.313, - 0.448, - 0.592, - 0.736, - 0.879, + 0.207, + 0.237, + 0.336, + 0.48, + 0.624, + 0.768, + 0.912, 1.0, 1.0, 1.0, @@ -7954,36 +7786,36 @@ 0.2, 0.2, 0.205, - 0.229, - 0.313, - 0.452, - 0.596, - 0.739, - 0.883, + 0.235, + 0.337, + 0.481, + 0.625, + 0.768, + 0.912, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.428, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.268, - 0.274, - 0.299, - 0.381, - 0.516, - 0.66, - 0.804, - 0.948, + 0.466, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.311, + 0.341, + 0.444, + 0.587, + 0.731, + 0.875, + 1.0, 1.0, 1.0, 1.0, @@ -8001,14 +7833,14 @@ 0.2, 0.2, 0.2, - 0.206, - 0.226, - 0.293, - 0.347, - 0.49, - 0.634, - 0.774, - 0.918, + 0.205, + 0.235, + 0.337, + 0.481, + 0.625, + 0.769, + 0.912, + 1.0, 1.0, 1.0, 0.84, @@ -8025,37 +7857,37 @@ 0.2, 0.2, 0.2, - 0.207, + 0.205, 0.234, - 0.317, - 0.456, - 0.6, - 0.744, - 0.888, + 0.333, + 0.477, + 0.621, + 0.764, + 0.908, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.36, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.204, - 0.229, + 0.467, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, + 0.307, 0.314, - 0.454, - 0.598, - 0.742, - 0.886, + 0.344, + 0.435, + 0.579, + 0.723, + 0.867, + 1.0, 1.0, 1.0, 1.0, @@ -8073,13 +7905,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.227, - 0.312, - 0.451, - 0.595, - 0.738, - 0.882, + 0.209, + 0.243, + 0.333, + 0.477, + 0.621, + 0.764, + 0.908, 1.0, 1.0, 1.0, @@ -8097,15 +7929,15 @@ 0.2, 0.2, 0.2, - 0.201, - 0.22, - 0.286, - 0.387, - 0.515, - 0.604, - 0.719, - 0.835, - 0.968, + 0.207, + 0.236, + 0.331, + 0.475, + 0.619, + 0.762, + 0.906, + 1.0, + 1.0, 1.0, 0.84, 0.68, @@ -8121,37 +7953,37 @@ 0.2, 0.2, 0.2, - 0.202, - 0.224, - 0.302, - 0.431, - 0.575, - 0.718, - 0.862, + 0.205, + 0.234, + 0.331, + 0.474, + 0.618, + 0.762, + 0.906, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.429, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.269, - 0.273, - 0.296, - 0.376, - 0.509, - 0.653, - 0.797, - 0.94, + 0.466, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.312, + 0.341, + 0.436, + 0.58, + 0.724, + 0.868, + 1.0, 1.0, 1.0, 1.0, @@ -8169,14 +8001,14 @@ 0.2, 0.2, 0.2, - 0.204, - 0.227, - 0.31, - 0.449, - 0.592, - 0.736, - 0.88, - 1.0, + 0.206, + 0.231, + 0.308, + 0.37, + 0.514, + 0.657, + 0.801, + 0.945, 1.0, 1.0, 0.84, @@ -8193,13 +8025,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.227, - 0.311, - 0.451, - 0.595, - 0.739, - 0.882, + 0.208, + 0.239, + 0.336, + 0.48, + 0.623, + 0.767, + 0.911, 1.0, 1.0, 1.0, @@ -8217,13 +8049,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.226, - 0.31, - 0.448, - 0.592, - 0.736, - 0.879, + 0.205, + 0.234, + 0.332, + 0.476, + 0.62, + 0.764, + 0.907, 1.0, 1.0, 1.0, @@ -8241,13 +8073,13 @@ 0.2, 0.2, 0.2, - 0.204, - 0.226, - 0.31, - 0.449, - 0.593, - 0.737, - 0.881, + 0.205, + 0.232, + 0.33, + 0.474, + 0.617, + 0.761, + 0.905, 1.0, 1.0, 1.0, @@ -8265,14 +8097,14 @@ 0.2, 0.2, 0.2, - 0.204, - 0.227, - 0.309, - 0.447, - 0.59, - 0.734, - 0.878, - 1.0, + 0.202, + 0.223, + 0.299, + 0.416, + 0.56, + 0.662, + 0.796, + 0.93, 1.0, 1.0, 0.84, @@ -8289,39 +8121,39 @@ 0.2, 0.2, 0.2, - 0.204, - 0.227, - 0.306, - 0.437, - 0.58, - 0.724, - 0.868, + 0.202, + 0.228, + 0.318, + 0.462, + 0.606, + 0.75, + 0.893, 1.0, 1.0, 1.0, + 0.84, + 0.68, + 0.52, + 0.466, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.311, + 0.338, + 0.43, + 0.574, + 0.718, + 0.861, + 1.0, + 1.0, 1.0, - 0.899, - 0.739, - 0.617, - 0.457, - 0.457, - 0.457, - 0.457, - 0.457, - 0.457, - 0.457, - 0.457, - 0.457, - 0.457, - 0.457, - 0.458, - 0.473, - 0.49, - 0.506, - 0.65, - 0.794, - 0.938, - 0.952, 1.0, 0.84, 0.68, @@ -8338,12 +8170,12 @@ 0.2, 0.2, 0.204, - 0.227, - 0.304, - 0.433, - 0.577, - 0.721, - 0.865, + 0.231, + 0.328, + 0.472, + 0.616, + 0.759, + 0.903, 1.0, 1.0, 1.0, @@ -8361,13 +8193,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.225, - 0.306, - 0.44, - 0.584, - 0.728, - 0.872, + 0.204, + 0.231, + 0.329, + 0.473, + 0.616, + 0.76, + 0.904, 1.0, 1.0, 1.0, @@ -8385,13 +8217,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.225, - 0.306, - 0.441, - 0.585, - 0.728, - 0.872, + 0.204, + 0.231, + 0.327, + 0.471, + 0.615, + 0.758, + 0.902, 1.0, 1.0, 1.0, @@ -8409,13 +8241,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.226, - 0.305, - 0.437, - 0.581, - 0.725, - 0.868, + 0.204, + 0.23, + 0.328, + 0.472, + 0.615, + 0.759, + 0.903, 1.0, 1.0, 1.0, @@ -8433,13 +8265,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.226, - 0.306, - 0.44, - 0.584, - 0.728, - 0.871, + 0.204, + 0.231, + 0.327, + 0.471, + 0.614, + 0.758, + 0.902, 1.0, 1.0, 1.0, @@ -8457,39 +8289,39 @@ 0.2, 0.2, 0.2, - 0.203, - 0.225, - 0.306, - 0.441, - 0.584, - 0.728, - 0.872, - 1.0, - 1.0, + 0.205, + 0.231, + 0.323, + 0.466, + 0.61, + 0.754, + 0.898, 1.0, - 0.84, - 0.68, - 0.52, - 0.397, - 0.237, - 0.237, - 0.237, - 0.237, - 0.237, - 0.237, - 0.237, - 0.237, - 0.237, - 0.237, - 0.24, - 0.263, - 0.344, - 0.478, - 0.621, - 0.765, - 0.909, 1.0, 1.0, + 0.992, + 0.832, + 0.672, + 0.599, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.439, + 0.44, + 0.458, + 0.478, + 0.496, + 0.64, + 0.784, + 0.928, + 0.945, 1.0, 0.84, 0.68, @@ -8505,13 +8337,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.226, - 0.305, - 0.438, - 0.581, - 0.725, - 0.869, + 0.204, + 0.231, + 0.321, + 0.465, + 0.608, + 0.752, + 0.896, 1.0, 1.0, 1.0, @@ -8529,14 +8361,14 @@ 0.2, 0.2, 0.2, - 0.2, - 0.213, - 0.215, - 0.324, - 0.468, - 0.611, - 0.755, - 0.899, + 0.204, + 0.229, + 0.322, + 0.466, + 0.61, + 0.754, + 0.898, + 1.0, 1.0, 1.0, 0.84, @@ -8553,13 +8385,13 @@ 0.2, 0.2, 0.2, - 0.203, - 0.226, - 0.306, - 0.438, - 0.582, - 0.726, - 0.869, + 0.204, + 0.229, + 0.323, + 0.467, + 0.61, + 0.754, + 0.898, 1.0, 1.0, 1.0, @@ -8577,13 +8409,13 @@ 0.2, 0.2, 0.2, - 0.202, - 0.225, - 0.307, - 0.442, - 0.586, - 0.73, - 0.873, + 0.204, + 0.23, + 0.321, + 0.465, + 0.609, + 0.753, + 0.897, 1.0, 1.0, 1.0, @@ -8601,13 +8433,13 @@ 0.2, 0.2, 0.2, - 0.202, - 0.226, - 0.307, - 0.441, - 0.585, - 0.728, - 0.872, + 0.204, + 0.23, + 0.323, + 0.467, + 0.611, + 0.755, + 0.898, 1.0, 1.0, 1.0, @@ -8625,37 +8457,37 @@ 0.2, 0.2, 0.2, - 0.202, - 0.228, - 0.309, - 0.444, - 0.588, - 0.731, - 0.875, + 0.203, + 0.229, + 0.323, + 0.467, + 0.61, + 0.754, + 0.898, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.367, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.21, - 0.234, - 0.322, - 0.465, - 0.609, - 0.753, - 0.897, + 0.447, + 0.287, + 0.287, + 0.287, + 0.287, + 0.287, + 0.287, + 0.287, + 0.287, + 0.287, + 0.287, + 0.291, + 0.317, + 0.41, + 0.554, + 0.698, + 0.842, + 0.986, 1.0, 1.0, 1.0, @@ -8673,13 +8505,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.225, - 0.312, - 0.456, - 0.6, - 0.743, - 0.887, + 0.203, + 0.23, + 0.322, + 0.466, + 0.609, + 0.753, + 0.897, 1.0, 1.0, 1.0, @@ -8697,14 +8529,14 @@ 0.2, 0.2, 0.2, - 0.201, - 0.225, - 0.313, - 0.457, - 0.601, - 0.744, - 0.888, - 1.0, + 0.2, + 0.215, + 0.217, + 0.343, + 0.487, + 0.631, + 0.775, + 0.919, 1.0, 1.0, 0.84, @@ -8721,13 +8553,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.225, - 0.312, - 0.456, - 0.6, - 0.743, - 0.887, + 0.203, + 0.23, + 0.322, + 0.466, + 0.61, + 0.754, + 0.897, 1.0, 1.0, 1.0, @@ -8745,13 +8577,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.225, - 0.311, - 0.454, - 0.598, - 0.742, - 0.885, + 0.203, + 0.229, + 0.324, + 0.467, + 0.611, + 0.755, + 0.899, 1.0, 1.0, 1.0, @@ -8769,13 +8601,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.225, - 0.311, - 0.455, - 0.599, - 0.743, - 0.887, + 0.202, + 0.23, + 0.323, + 0.467, + 0.611, + 0.755, + 0.899, 1.0, 1.0, 1.0, @@ -8793,37 +8625,37 @@ 0.2, 0.2, 0.2, - 0.201, - 0.224, - 0.308, - 0.446, - 0.59, - 0.734, - 0.877, + 0.202, + 0.232, + 0.326, + 0.47, + 0.614, + 0.757, + 0.901, 1.0, 1.0, 1.0, 0.84, 0.68, 0.52, - 0.367, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.207, - 0.208, - 0.23, - 0.313, - 0.451, - 0.594, - 0.738, - 0.882, + 0.43, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.27, + 0.272, + 0.3, + 0.402, + 0.546, + 0.69, + 0.833, + 0.977, 1.0, 1.0, 1.0, @@ -8841,13 +8673,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.224, - 0.306, - 0.441, - 0.585, - 0.728, - 0.872, + 0.202, + 0.229, + 0.33, + 0.474, + 0.617, + 0.761, + 0.905, 1.0, 1.0, 1.0, @@ -8865,13 +8697,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.224, - 0.306, - 0.442, - 0.585, - 0.729, - 0.873, + 0.202, + 0.229, + 0.331, + 0.475, + 0.619, + 0.762, + 0.906, 1.0, 1.0, 1.0, @@ -8889,13 +8721,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.224, - 0.306, - 0.44, - 0.584, - 0.728, - 0.871, + 0.202, + 0.229, + 0.33, + 0.474, + 0.617, + 0.761, + 0.905, 1.0, 1.0, 1.0, @@ -8914,12 +8746,12 @@ 0.2, 0.2, 0.201, - 0.224, - 0.305, - 0.44, - 0.584, - 0.727, - 0.871, + 0.228, + 0.329, + 0.473, + 0.617, + 0.76, + 0.904, 1.0, 1.0, 1.0, @@ -8937,13 +8769,13 @@ 0.2, 0.2, 0.2, - 0.201, - 0.224, - 0.308, - 0.446, - 0.59, - 0.734, - 0.878, + 0.202, + 0.229, + 0.329, + 0.473, + 0.617, + 0.76, + 0.904, 1.0, 1.0, 1.0, @@ -8962,12 +8794,36 @@ 0.2, 0.2, 0.201, - 0.223, - 0.311, - 0.454, - 0.598, - 0.742, - 0.886, + 0.228, + 0.325, + 0.469, + 0.612, + 0.756, + 0.9, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.429, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.269, + 0.271, + 0.297, + 0.393, + 0.537, + 0.681, + 0.824, + 0.968, 1.0, 1.0, 1.0, @@ -8986,12 +8842,12 @@ 0.2, 0.2, 0.201, - 0.225, - 0.315, - 0.458, - 0.602, - 0.746, - 0.89, + 0.227, + 0.322, + 0.466, + 0.61, + 0.754, + 0.898, 1.0, 1.0, 1.0, @@ -9010,12 +8866,12 @@ 0.2, 0.2, 0.201, - 0.225, - 0.312, - 0.455, - 0.599, - 0.742, - 0.886, + 0.228, + 0.323, + 0.467, + 0.61, + 0.754, + 0.898, 1.0, 1.0, 1.0, @@ -9033,13 +8889,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.224, - 0.311, - 0.454, - 0.598, - 0.742, - 0.886, + 0.201, + 0.228, + 0.323, + 0.466, + 0.61, + 0.754, + 0.898, 1.0, 1.0, 1.0, @@ -9057,13 +8913,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.225, - 0.315, - 0.459, - 0.603, - 0.746, - 0.89, + 0.201, + 0.228, + 0.322, + 0.466, + 0.61, + 0.753, + 0.897, 1.0, 1.0, 1.0, @@ -9081,13 +8937,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.225, - 0.313, - 0.457, - 0.6, - 0.744, - 0.888, + 0.201, + 0.228, + 0.325, + 0.468, + 0.612, + 0.756, + 0.9, 1.0, 1.0, 1.0, @@ -9105,13 +8961,37 @@ 0.2, 0.2, 0.2, - 0.2, - 0.224, - 0.306, - 0.444, - 0.588, - 0.731, - 0.875, + 0.201, + 0.227, + 0.328, + 0.472, + 0.616, + 0.759, + 0.903, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.412, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.252, + 0.281, + 0.384, + 0.528, + 0.672, + 0.816, + 0.959, 1.0, 1.0, 1.0, @@ -9129,13 +9009,13 @@ 0.2, 0.2, 0.2, - 0.2, - 0.223, - 0.304, - 0.428, - 0.571, - 0.715, - 0.859, + 0.201, + 0.228, + 0.33, + 0.473, + 0.617, + 0.761, + 0.905, 1.0, 1.0, 1.0, @@ -9154,12 +9034,12 @@ 0.2, 0.2, 0.2, - 0.223, - 0.306, - 0.442, - 0.586, - 0.73, - 0.874, + 0.228, + 0.329, + 0.472, + 0.616, + 0.76, + 0.904, 1.0, 1.0, 1.0, @@ -9178,12 +9058,12 @@ 0.2, 0.2, 0.2, - 0.223, - 0.309, - 0.446, - 0.589, - 0.733, - 0.877, + 0.229, + 0.334, + 0.477, + 0.621, + 0.765, + 0.909, 1.0, 1.0, 1.0, @@ -9202,12 +9082,12 @@ 0.2, 0.2, 0.2, - 0.224, - 0.308, - 0.443, - 0.586, - 0.73, - 0.874, + 0.229, + 0.331, + 0.475, + 0.619, + 0.763, + 0.906, 1.0, 1.0, 1.0, @@ -9226,12 +9106,12 @@ 0.2, 0.2, 0.2, - 0.21, - 0.294, - 0.43, - 0.574, - 0.718, - 0.862, + 0.227, + 0.323, + 0.467, + 0.611, + 0.754, + 0.898, 1.0, 1.0, 1.0, @@ -9250,12 +9130,36 @@ 0.2, 0.2, 0.2, - 0.223, - 0.303, - 0.434, - 0.577, - 0.721, - 0.865, + 0.227, + 0.32, + 0.464, + 0.608, + 0.751, + 0.895, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.394, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.234, + 0.261, + 0.357, + 0.501, + 0.645, + 0.788, + 0.932, 1.0, 1.0, 1.0, @@ -9274,38 +9178,14 @@ 0.2, 0.2, 0.2, - 0.225, - 0.315, - 0.457, - 0.601, - 0.744, - 0.888, - 1.0, + 0.227, + 0.326, + 0.47, + 0.613, + 0.757, + 0.901, 1.0, 1.0, - 0.891, - 0.731, - 0.571, - 0.411, - 0.251, - 0.251, - 0.251, - 0.251, - 0.251, - 0.251, - 0.251, - 0.251, - 0.251, - 0.251, - 0.251, - 0.276, - 0.367, - 0.508, - 0.652, - 0.796, - 0.939, - 0.991, - 0.996, 1.0, 0.84, 0.68, @@ -9322,12 +9202,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.312, - 0.454, - 0.598, - 0.742, - 0.885, + 0.227, + 0.325, + 0.469, + 0.613, + 0.757, + 0.9, 1.0, 1.0, 1.0, @@ -9346,12 +9226,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.313, - 0.454, - 0.598, - 0.742, - 0.885, + 0.212, + 0.309, + 0.453, + 0.596, + 0.74, + 0.884, 1.0, 1.0, 1.0, @@ -9370,12 +9250,12 @@ 0.2, 0.2, 0.2, - 0.224, - 0.311, - 0.45, - 0.594, - 0.738, - 0.882, + 0.227, + 0.32, + 0.463, + 0.607, + 0.751, + 0.895, 1.0, 1.0, 1.0, @@ -9394,18 +9274,42 @@ 0.2, 0.2, 0.2, - 0.225, - 0.311, - 0.451, - 0.595, - 0.739, - 0.883, + 0.229, + 0.333, + 0.477, + 0.62, + 0.764, + 0.908, 1.0, 1.0, 1.0, - 0.84, - 0.68, - 0.52, + 0.843, + 0.683, + 0.523, + 0.363, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.203, + 0.233, + 0.338, + 0.481, + 0.625, + 0.769, + 0.913, + 0.972, + 0.978, + 0.983, + 0.823, + 0.663, + 0.503, 0.36, 0.2, 0.2, @@ -9418,12 +9322,36 @@ 0.2, 0.2, 0.2, - 0.225, - 0.312, - 0.454, - 0.597, - 0.741, - 0.885, + 0.229, + 0.33, + 0.474, + 0.618, + 0.762, + 0.905, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.377, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.246, + 0.348, + 0.492, + 0.636, + 0.78, + 0.924, 1.0, 1.0, 1.0, @@ -9442,12 +9370,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.321, - 0.465, - 0.609, - 0.753, - 0.897, + 0.228, + 0.328, + 0.472, + 0.616, + 0.759, + 0.903, 1.0, 1.0, 1.0, @@ -9466,12 +9394,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.324, - 0.467, - 0.611, - 0.755, - 0.899, + 0.228, + 0.328, + 0.472, + 0.616, + 0.76, + 0.903, 1.0, 1.0, 1.0, @@ -9490,12 +9418,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.32, - 0.463, - 0.607, - 0.751, - 0.895, + 0.229, + 0.33, + 0.474, + 0.618, + 0.761, + 0.905, 1.0, 1.0, 1.0, @@ -9514,12 +9442,12 @@ 0.2, 0.2, 0.2, - 0.226, - 0.32, - 0.464, - 0.608, - 0.751, - 0.895, + 0.231, + 0.341, + 0.485, + 0.628, + 0.772, + 0.916, 1.0, 1.0, 1.0, @@ -9538,12 +9466,12 @@ 0.2, 0.2, 0.2, - 0.226, - 0.317, - 0.461, - 0.605, - 0.748, - 0.892, + 0.232, + 0.343, + 0.487, + 0.631, + 0.775, + 0.918, 1.0, 1.0, 1.0, @@ -9562,12 +9490,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.314, - 0.458, - 0.602, - 0.745, - 0.889, + 0.231, + 0.339, + 0.483, + 0.626, + 0.77, + 0.914, 1.0, 1.0, 1.0, @@ -9586,12 +9514,12 @@ 0.2, 0.2, 0.2, - 0.223, - 0.305, - 0.442, - 0.585, - 0.729, - 0.873, + 0.231, + 0.339, + 0.483, + 0.627, + 0.771, + 0.914, 1.0, 1.0, 1.0, @@ -9610,12 +9538,12 @@ 0.2, 0.2, 0.2, - 0.228, - 0.327, - 0.471, - 0.615, - 0.758, - 0.902, + 0.23, + 0.336, + 0.479, + 0.623, + 0.767, + 0.911, 1.0, 1.0, 1.0, @@ -9634,12 +9562,12 @@ 0.2, 0.2, 0.2, - 0.23, - 0.335, - 0.478, - 0.622, - 0.766, - 0.91, + 0.229, + 0.332, + 0.476, + 0.62, + 0.764, + 0.907, 1.0, 1.0, 1.0, @@ -9658,12 +9586,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.333, - 0.476, - 0.62, - 0.764, - 0.908, + 0.227, + 0.321, + 0.465, + 0.609, + 0.753, + 0.897, 1.0, 1.0, 1.0, @@ -9682,12 +9610,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.329, - 0.472, - 0.616, - 0.76, - 0.904, + 0.232, + 0.347, + 0.491, + 0.635, + 0.779, + 0.922, 1.0, 1.0, 1.0, @@ -9706,12 +9634,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.32, - 0.463, - 0.607, - 0.751, - 0.895, + 0.234, + 0.356, + 0.5, + 0.643, + 0.787, + 0.931, 1.0, 1.0, 1.0, @@ -9730,12 +9658,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.331, - 0.474, - 0.618, - 0.762, - 0.906, + 0.234, + 0.354, + 0.498, + 0.641, + 0.785, + 0.929, 1.0, 1.0, 1.0, @@ -9754,12 +9682,12 @@ 0.2, 0.2, 0.2, - 0.228, - 0.326, - 0.47, - 0.614, - 0.757, - 0.901, + 0.233, + 0.349, + 0.493, + 0.637, + 0.78, + 0.924, 1.0, 1.0, 1.0, @@ -9778,12 +9706,12 @@ 0.2, 0.2, 0.2, - 0.224, - 0.312, - 0.456, - 0.599, - 0.743, - 0.887, + 0.231, + 0.339, + 0.483, + 0.626, + 0.77, + 0.914, 1.0, 1.0, 1.0, @@ -9802,12 +9730,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.334, - 0.478, - 0.621, - 0.765, - 0.909, + 0.233, + 0.351, + 0.495, + 0.639, + 0.783, + 0.926, 1.0, 1.0, 1.0, @@ -9826,12 +9754,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.332, - 0.476, - 0.62, - 0.764, - 0.907, + 0.233, + 0.346, + 0.49, + 0.634, + 0.777, + 0.921, 1.0, 1.0, 1.0, @@ -9850,12 +9778,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.331, - 0.475, - 0.618, - 0.762, - 0.906, + 0.228, + 0.33, + 0.473, + 0.617, + 0.761, + 0.905, 1.0, 1.0, 1.0, @@ -9874,12 +9802,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.322, - 0.466, - 0.61, - 0.753, - 0.897, + 0.234, + 0.355, + 0.499, + 0.643, + 0.786, + 0.93, 1.0, 1.0, 1.0, @@ -9898,12 +9826,12 @@ 0.2, 0.2, 0.2, - 0.229, - 0.329, - 0.473, - 0.617, - 0.761, - 0.904, + 0.234, + 0.353, + 0.497, + 0.641, + 0.785, + 0.928, 1.0, 1.0, 1.0, @@ -9922,12 +9850,12 @@ 0.2, 0.2, 0.2, - 0.221, - 0.307, - 0.432, - 0.576, - 0.72, - 0.863, + 0.233, + 0.352, + 0.496, + 0.639, + 0.783, + 0.927, 1.0, 1.0, 1.0, @@ -9946,12 +9874,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.319, - 0.463, - 0.607, - 0.75, - 0.894, + 0.231, + 0.341, + 0.485, + 0.629, + 0.773, + 0.917, 1.0, 1.0, 1.0, @@ -9970,12 +9898,12 @@ 0.2, 0.2, 0.2, - 0.226, - 0.321, - 0.464, - 0.608, - 0.752, - 0.896, + 0.233, + 0.35, + 0.494, + 0.637, + 0.781, + 0.925, 1.0, 1.0, 1.0, @@ -9994,12 +9922,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.321, - 0.465, - 0.609, - 0.753, - 0.897, + 0.224, + 0.325, + 0.468, + 0.612, + 0.756, + 0.9, 1.0, 1.0, 1.0, @@ -10018,12 +9946,12 @@ 0.2, 0.2, 0.2, - 0.212, - 0.295, - 0.439, - 0.583, - 0.727, - 0.87, + 0.23, + 0.338, + 0.482, + 0.626, + 0.769, + 0.913, 1.0, 1.0, 1.0, @@ -10042,12 +9970,12 @@ 0.2, 0.2, 0.2, - 0.226, - 0.321, - 0.465, - 0.609, - 0.753, - 0.896, + 0.23, + 0.34, + 0.484, + 0.627, + 0.771, + 0.915, 1.0, 1.0, 1.0, @@ -10066,38 +9994,38 @@ 0.2, 0.2, 0.2, - 0.224, - 0.321, - 0.465, - 0.609, - 0.752, - 0.896, + 0.231, + 0.341, + 0.485, + 0.628, + 0.772, + 0.916, 1.0, 1.0, 1.0, - 0.905, - 0.745, - 0.585, - 0.425, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.265, - 0.287, - 0.301, - 0.365, - 0.509, - 0.613, - 0.757, - 0.9, - 0.94, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.214, + 0.31, + 0.454, + 0.598, + 0.742, + 0.886, + 1.0, + 1.0, 1.0, 0.84, 0.68, @@ -10114,13 +10042,13 @@ 0.2, 0.2, 0.2, - 0.228, - 0.335, - 0.479, - 0.623, - 0.767, - 0.91, - 0.937, + 0.23, + 0.341, + 0.484, + 0.628, + 0.772, + 0.916, + 1.0, 1.0, 1.0, 0.84, @@ -10139,13 +10067,37 @@ 0.2, 0.2, 0.228, - 0.334, - 0.478, - 0.621, - 0.765, - 0.909, + 0.34, + 0.484, + 0.628, + 0.772, + 0.915, + 1.0, 1.0, 1.0, + 0.857, + 0.697, + 0.537, + 0.377, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.217, + 0.242, + 0.258, + 0.333, + 0.476, + 0.597, + 0.741, + 0.884, + 0.93, 1.0, 0.84, 0.68, @@ -10162,13 +10114,13 @@ 0.2, 0.2, 0.2, - 0.227, - 0.33, - 0.473, - 0.617, - 0.761, - 0.905, - 1.0, + 0.233, + 0.357, + 0.501, + 0.644, + 0.788, + 0.932, + 0.963, 1.0, 1.0, 0.84, @@ -10186,12 +10138,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.33, - 0.474, - 0.617, - 0.761, - 0.905, + 0.233, + 0.355, + 0.499, + 0.643, + 0.787, + 0.93, 1.0, 1.0, 1.0, @@ -10210,12 +10162,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.325, - 0.469, - 0.613, - 0.756, - 0.9, + 0.231, + 0.35, + 0.494, + 0.638, + 0.781, + 0.925, 1.0, 1.0, 1.0, @@ -10234,12 +10186,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.324, - 0.468, - 0.612, - 0.756, - 0.9, + 0.231, + 0.351, + 0.494, + 0.638, + 0.782, + 0.926, 1.0, 1.0, 1.0, @@ -10258,12 +10210,12 @@ 0.2, 0.2, 0.2, - 0.226, - 0.327, - 0.471, - 0.615, - 0.759, - 0.902, + 0.229, + 0.345, + 0.489, + 0.632, + 0.776, + 0.92, 1.0, 1.0, 1.0, @@ -10282,12 +10234,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.327, - 0.47, - 0.614, - 0.758, - 0.902, + 0.229, + 0.344, + 0.488, + 0.632, + 0.776, + 0.919, 1.0, 1.0, 1.0, @@ -10306,12 +10258,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.322, - 0.466, - 0.61, - 0.754, - 0.898, + 0.23, + 0.348, + 0.491, + 0.635, + 0.779, + 0.923, 1.0, 1.0, 1.0, @@ -10330,12 +10282,12 @@ 0.2, 0.2, 0.2, - 0.221, - 0.307, - 0.451, - 0.594, - 0.738, - 0.882, + 0.229, + 0.347, + 0.49, + 0.634, + 0.778, + 0.922, 1.0, 1.0, 1.0, @@ -10354,12 +10306,12 @@ 0.2, 0.2, 0.2, - 0.222, - 0.318, - 0.462, - 0.606, - 0.75, - 0.894, + 0.229, + 0.342, + 0.486, + 0.63, + 0.773, + 0.917, 1.0, 1.0, 1.0, @@ -10378,12 +10330,12 @@ 0.2, 0.2, 0.2, - 0.223, - 0.323, - 0.467, + 0.225, + 0.324, + 0.468, 0.611, - 0.754, - 0.898, + 0.755, + 0.899, 1.0, 1.0, 1.0, @@ -10402,12 +10354,12 @@ 0.2, 0.2, 0.2, - 0.223, - 0.325, - 0.468, - 0.612, - 0.756, - 0.9, + 0.226, + 0.337, + 0.481, + 0.625, + 0.769, + 0.912, 1.0, 1.0, 1.0, @@ -10426,12 +10378,12 @@ 0.2, 0.2, 0.2, - 0.221, - 0.32, - 0.464, - 0.608, - 0.752, - 0.895, + 0.226, + 0.343, + 0.486, + 0.63, + 0.774, + 0.918, 1.0, 1.0, 1.0, @@ -10450,12 +10402,12 @@ 0.2, 0.2, 0.2, - 0.218, - 0.316, - 0.46, - 0.604, - 0.747, - 0.891, + 0.227, + 0.345, + 0.488, + 0.632, + 0.776, + 0.92, 1.0, 1.0, 1.0, @@ -10474,12 +10426,12 @@ 0.2, 0.2, 0.2, - 0.217, - 0.314, - 0.457, - 0.601, - 0.745, - 0.889, + 0.224, + 0.34, + 0.483, + 0.627, + 0.771, + 0.915, 1.0, 1.0, 1.0, @@ -10498,12 +10450,12 @@ 0.2, 0.2, 0.2, - 0.216, - 0.314, - 0.458, - 0.601, - 0.745, - 0.889, + 0.221, + 0.335, + 0.478, + 0.622, + 0.766, + 0.91, 1.0, 1.0, 1.0, @@ -10522,12 +10474,12 @@ 0.2, 0.2, 0.2, - 0.215, - 0.313, - 0.457, - 0.601, - 0.745, - 0.888, + 0.219, + 0.332, + 0.475, + 0.619, + 0.763, + 0.907, 1.0, 1.0, 1.0, @@ -10546,12 +10498,12 @@ 0.2, 0.2, 0.2, - 0.211, - 0.299, - 0.443, - 0.587, - 0.731, - 0.874, + 0.218, + 0.332, + 0.476, + 0.619, + 0.763, + 0.907, 1.0, 1.0, 1.0, @@ -10570,12 +10522,12 @@ 0.2, 0.2, 0.2, - 0.21, - 0.297, - 0.441, - 0.585, - 0.729, - 0.872, + 0.218, + 0.331, + 0.475, + 0.619, + 0.763, + 0.906, 1.0, 1.0, 1.0, @@ -10594,12 +10546,36 @@ 0.2, 0.2, 0.2, - 0.21, - 0.3, - 0.444, - 0.588, - 0.731, - 0.875, + 0.213, + 0.315, + 0.459, + 0.603, + 0.746, + 0.89, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.212, + 0.313, + 0.457, + 0.6, + 0.744, + 0.888, 1.0, 1.0, 1.0, @@ -10620,7 +10596,7 @@ 0.2, 0.212, 0.316, - 0.459, + 0.46, 0.603, 0.747, 0.891, @@ -10642,12 +10618,12 @@ 0.2, 0.2, 0.2, - 0.211, - 0.314, - 0.458, - 0.602, - 0.745, - 0.889, + 0.214, + 0.334, + 0.478, + 0.622, + 0.765, + 0.909, 1.0, 1.0, 1.0, @@ -10666,12 +10642,12 @@ 0.2, 0.2, 0.2, - 0.21, - 0.31, - 0.453, - 0.597, - 0.741, - 0.885, + 0.213, + 0.332, + 0.476, + 0.62, + 0.764, + 0.907, 1.0, 1.0, 1.0, @@ -10690,12 +10666,12 @@ 0.2, 0.2, 0.2, - 0.209, - 0.308, - 0.452, - 0.595, - 0.739, - 0.883, + 0.212, + 0.327, + 0.471, + 0.615, + 0.758, + 0.902, 1.0, 1.0, 1.0, @@ -10714,12 +10690,12 @@ 0.2, 0.2, 0.2, - 0.209, - 0.306, - 0.449, - 0.593, - 0.737, - 0.881, + 0.211, + 0.325, + 0.469, + 0.613, + 0.756, + 0.9, 1.0, 1.0, 1.0, @@ -10738,13 +10714,13 @@ 0.2, 0.2, 0.2, - 0.207, - 0.302, - 0.446, - 0.59, - 0.733, - 0.87, - 0.966, + 0.21, + 0.322, + 0.466, + 0.61, + 0.754, + 0.897, + 1.0, 1.0, 1.0, 0.84, @@ -10762,12 +10738,36 @@ 0.2, 0.2, 0.2, - 0.204, - 0.295, - 0.439, - 0.582, - 0.726, - 0.87, + 0.209, + 0.318, + 0.462, + 0.606, + 0.75, + 0.893, + 1.0, + 1.0, + 1.0, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.205, + 0.31, + 0.454, + 0.598, + 0.741, + 0.885, 1.0, 1.0, 1.0, @@ -10787,11 +10787,11 @@ 0.2, 0.2, 0.206, - 0.308, - 0.451, - 0.595, - 0.739, - 0.883, + 0.325, + 0.469, + 0.612, + 0.756, + 0.9, 1.0, 1.0, 1.0, @@ -10811,11 +10811,11 @@ 0.2, 0.2, 0.205, - 0.303, - 0.447, - 0.591, - 0.734, - 0.878, + 0.32, + 0.463, + 0.607, + 0.751, + 0.895, 1.0, 1.0, 1.0, @@ -10834,12 +10834,12 @@ 0.2, 0.2, 0.2, - 0.203, - 0.296, - 0.44, - 0.584, - 0.728, - 0.871, + 0.204, + 0.312, + 0.455, + 0.599, + 0.743, + 0.887, 1.0, 1.0, 1.0, @@ -10859,11 +10859,11 @@ 0.2, 0.2, 0.203, - 0.294, - 0.437, - 0.581, - 0.725, - 0.869, + 0.308, + 0.452, + 0.596, + 0.74, + 0.884, 1.0, 1.0, 1.0, @@ -10882,12 +10882,12 @@ 0.2, 0.2, 0.2, - 0.202, - 0.294, - 0.437, - 0.581, - 0.725, - 0.869, + 0.203, + 0.309, + 0.452, + 0.596, + 0.74, + 0.884, 1.0, 1.0, 1.0, @@ -10907,11 +10907,11 @@ 0.2, 0.2, 0.201, - 0.29, - 0.434, - 0.578, - 0.721, - 0.865, + 0.305, + 0.448, + 0.592, + 0.736, + 0.88, 1.0, 1.0, 1.0, @@ -10931,11 +10931,11 @@ 0.2, 0.2, 0.201, - 0.288, - 0.432, - 0.576, - 0.72, - 0.863, + 0.302, + 0.446, + 0.59, + 0.734, + 0.877, 1.0, 1.0, 1.0, @@ -10955,11 +10955,11 @@ 0.2, 0.2, 0.2, - 0.289, - 0.433, - 0.577, - 0.721, - 0.864, + 0.303, + 0.447, + 0.591, + 0.735, + 0.879, 1.0, 1.0, 1.0, @@ -10979,12 +10979,12 @@ 0.2, 0.2, 0.2, - 0.27, - 0.408, - 0.552, - 0.695, - 0.839, - 0.983, + 0.281, + 0.425, + 0.568, + 0.712, + 0.856, + 1.0, 1.0, 1.0, 0.84, @@ -11003,12 +11003,12 @@ 0.2, 0.2, 0.2, - 0.27, - 0.356, - 0.5, - 0.643, - 0.787, - 0.931, + 0.282, + 0.381, + 0.524, + 0.668, + 0.812, + 0.956, 1.0, 1.0, 0.84, @@ -11027,12 +11027,12 @@ 0.2, 0.2, 0.2, - 0.23, - 0.318, - 0.462, - 0.605, - 0.749, - 0.893, + 0.235, + 0.337, + 0.48, + 0.624, + 0.768, + 0.912, 1.0, 1.0, 0.84, @@ -11051,12 +11051,12 @@ 0.2, 0.2, 0.2, - 0.206, - 0.35, - 0.468, - 0.612, - 0.755, - 0.899, + 0.207, + 0.351, + 0.488, + 0.631, + 0.775, + 0.919, 1.0, 1.0, 0.84, @@ -11075,12 +11075,12 @@ 0.2, 0.2, 0.2, - 0.277, - 0.421, - 0.565, - 0.708, - 0.852, - 0.996, + 0.289, + 0.433, + 0.577, + 0.721, + 0.864, + 1.0, 1.0, 1.0, 0.84, @@ -11099,11 +11099,11 @@ 0.2, 0.2, 0.2, - 0.291, - 0.435, - 0.579, - 0.722, - 0.866, + 0.306, + 0.449, + 0.593, + 0.737, + 0.881, 1.0, 1.0, 1.0, @@ -11123,37 +11123,37 @@ 0.2, 0.2, 0.2, - 0.286, - 0.43, - 0.573, - 0.717, - 0.861, + 0.299, + 0.443, + 0.587, + 0.731, + 0.875, 1.0, 1.0, 1.0, - 0.866, - 0.706, - 0.546, - 0.386, - 0.226, - 0.226, - 0.226, - 0.226, - 0.226, - 0.226, - 0.226, - 0.226, - 0.226, - 0.226, - 0.226, - 0.226, - 0.256, - 0.353, - 0.496, - 0.64, - 0.784, - 0.893, - 0.97, + 0.84, + 0.68, + 0.52, + 0.36, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.235, + 0.347, + 0.491, + 0.635, + 0.778, + 0.904, + 0.994, 1.0, 0.84, 0.68, @@ -11171,13 +11171,13 @@ 0.2, 0.2, 0.2, - 0.275, - 0.344, - 0.488, - 0.632, - 0.775, - 0.826, - 0.97, + 0.287, + 0.367, + 0.511, + 0.654, + 0.798, + 0.857, + 1.0, 1.0, 0.84, 0.68, @@ -11195,12 +11195,12 @@ 0.2, 0.2, 0.2, - 0.279, - 0.422, - 0.566, - 0.71, - 0.854, - 0.997, + 0.291, + 0.435, + 0.579, + 0.722, + 0.866, + 1.0, 1.0, 1.0, 0.84, @@ -11219,12 +11219,12 @@ 0.2, 0.2, 0.2, - 0.276, - 0.419, - 0.563, - 0.707, - 0.851, - 0.994, + 0.288, + 0.431, + 0.575, + 0.719, + 0.863, + 1.0, 1.0, 1.0, 0.84, @@ -11243,12 +11243,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.319, - 0.445, - 0.589, - 0.732, - 0.876, + 0.229, + 0.338, + 0.481, + 0.625, + 0.769, + 0.913, 1.0, 1.0, 0.84, @@ -11267,12 +11267,12 @@ 0.2, 0.2, 0.2, - 0.277, - 0.421, - 0.565, - 0.709, - 0.852, - 0.996, + 0.29, + 0.433, + 0.577, + 0.721, + 0.865, + 1.0, 1.0, 1.0, 0.84, @@ -11291,12 +11291,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.369, - 0.512, - 0.656, - 0.8, - 0.944, + 0.229, + 0.373, + 0.516, + 0.66, + 0.804, + 0.948, 1.0, 1.0, 0.84, @@ -11315,12 +11315,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.369, - 0.512, - 0.656, - 0.8, - 0.944, + 0.229, + 0.373, + 0.516, + 0.66, + 0.804, + 0.948, 1.0, 1.0, 0.84, @@ -11339,12 +11339,12 @@ 0.2, 0.2, 0.2, - 0.227, - 0.371, - 0.515, - 0.659, - 0.803, - 0.946, + 0.232, + 0.376, + 0.519, + 0.663, + 0.807, + 0.951, 1.0, 1.0, 0.84, @@ -11363,12 +11363,12 @@ 0.2, 0.2, 0.2, - 0.22, - 0.302, - 0.43, - 0.574, - 0.718, - 0.862, + 0.223, + 0.318, + 0.462, + 0.605, + 0.749, + 0.893, 1.0, 1.0, 0.84, @@ -11387,12 +11387,12 @@ 0.2, 0.2, 0.2, - 0.22, - 0.307, - 0.451, - 0.594, - 0.738, - 0.882, + 0.224, + 0.324, + 0.468, + 0.611, + 0.755, + 0.899, 1.0, 1.0, 0.84, @@ -11411,37 +11411,37 @@ 0.2, 0.2, 0.2, - 0.262, - 0.405, - 0.549, - 0.693, - 0.837, - 0.981, + 0.272, + 0.416, + 0.56, + 0.704, + 0.847, + 0.991, 1.0, 1.0, 1.0, 1.0, 1.0, - 0.985, - 0.825, - 0.825, - 0.825, - 0.825, - 0.825, - 0.825, - 0.825, - 0.825, - 0.825, - 0.825, - 0.825, - 0.825, - 0.829, - 0.873, - 0.94, - 0.943, - 0.961, - 0.967, - 0.976, + 0.957, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.802, + 0.853, + 0.93, + 0.934, + 0.954, + 0.962, + 0.972, 1.0, 0.84, 0.68, @@ -11459,60 +11459,60 @@ 0.2, 0.2, 0.2, - 0.255, - 0.391, - 0.535, - 0.679, - 0.823, - 0.967, + 0.264, + 0.407, + 0.551, + 0.695, + 0.839, + 0.982, 1.0, 1.0, + 0.976, + 0.816, + 0.656, + 0.496, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.336, + 0.349, + 0.378, + 0.404, + 0.445, + 0.588, + 0.725, + 0.868, 1.0, - 0.887, - 0.727, - 0.567, - 0.407, - 0.407, - 0.407, - 0.407, - 0.407, - 0.407, - 0.407, - 0.407, - 0.407, - 0.407, - 0.407, - 0.407, - 0.419, - 0.444, + 0.946, + 0.786, + 0.626, 0.466, - 0.502, - 0.625, - 0.743, - 0.886, - 1.0, - 0.991, - 0.831, - 0.671, - 0.511, - 0.351, - 0.351, - 0.351, - 0.351, - 0.351, - 0.351, - 0.351, - 0.351, - 0.351, - 0.351, - 0.351, - 0.351, - 0.404, - 0.405, - 0.549, - 0.656, - 0.791, - 0.935, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.306, + 0.367, + 0.369, + 0.513, + 0.637, + 0.781, + 0.925, 0.999, 1.0, 0.84, @@ -11531,12 +11531,12 @@ 0.2, 0.2, 0.2, - 0.255, - 0.398, - 0.542, - 0.686, - 0.83, - 0.974, + 0.263, + 0.407, + 0.551, + 0.695, + 0.839, + 0.982, 1.0, 1.0, 0.84, @@ -11555,12 +11555,12 @@ 0.2, 0.2, 0.2, - 0.255, - 0.396, - 0.54, - 0.684, - 0.828, - 0.972, + 0.263, + 0.407, + 0.551, + 0.695, + 0.838, + 0.982, 1.0, 1.0, 0.84, @@ -11579,12 +11579,12 @@ 0.2, 0.2, 0.2, - 0.251, - 0.394, - 0.538, - 0.682, - 0.825, - 0.969, + 0.26, + 0.403, + 0.547, + 0.691, + 0.835, + 0.978, 1.0, 1.0, 0.84, @@ -11603,12 +11603,12 @@ 0.2, 0.2, 0.2, - 0.252, - 0.395, - 0.539, - 0.683, - 0.827, - 0.97, + 0.26, + 0.404, + 0.547, + 0.691, + 0.835, + 0.979, 1.0, 1.0, 0.84, @@ -11627,12 +11627,12 @@ 0.2, 0.2, 0.2, - 0.25, - 0.394, - 0.538, - 0.681, - 0.825, - 0.969, + 0.258, + 0.402, + 0.546, + 0.689, + 0.833, + 0.977, 1.0, 1.0, 0.84, @@ -11651,37 +11651,37 @@ 0.2, 0.2, 0.2, - 0.247, - 0.387, - 0.531, - 0.675, - 0.818, - 0.962, + 0.255, + 0.398, + 0.542, + 0.686, + 0.83, + 0.973, 1.0, 1.0, - 0.966, - 0.806, - 0.646, - 0.486, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.326, - 0.369, - 0.509, - 0.652, - 0.768, - 0.912, - 0.919, - 0.98, + 0.922, + 0.762, + 0.602, + 0.442, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.282, + 0.333, + 0.476, + 0.62, + 0.754, + 0.898, + 0.906, + 0.976, 1.0, 0.84, 0.68, @@ -11699,12 +11699,12 @@ 0.2, 0.2, 0.2, - 0.246, - 0.389, - 0.533, - 0.677, - 0.82, - 0.964, + 0.253, + 0.397, + 0.541, + 0.685, + 0.828, + 0.972, 1.0, 1.0, 0.84, @@ -11723,12 +11723,12 @@ 0.2, 0.2, 0.2, - 0.246, - 0.39, - 0.534, - 0.677, - 0.821, - 0.965, + 0.253, + 0.397, + 0.541, + 0.685, + 0.828, + 0.972, 1.0, 1.0, 0.84, @@ -11747,12 +11747,12 @@ 0.2, 0.2, 0.2, - 0.242, - 0.306, - 0.45, - 0.594, - 0.737, - 0.881, + 0.249, + 0.323, + 0.467, + 0.611, + 0.754, + 0.898, 1.0, 1.0, 0.84, @@ -11771,13 +11771,13 @@ 0.2, 0.2, 0.2, - 0.237, - 0.308, - 0.451, - 0.595, - 0.739, - 0.883, - 0.903, + 0.243, + 0.325, + 0.468, + 0.612, + 0.756, + 0.9, + 0.923, 1.0, 0.84, 0.68, @@ -11795,12 +11795,12 @@ 0.2, 0.2, 0.2, - 0.241, - 0.384, - 0.528, - 0.671, - 0.815, - 0.959, + 0.247, + 0.391, + 0.535, + 0.679, + 0.822, + 0.966, 1.0, 1.0, 0.84, @@ -11819,12 +11819,12 @@ 0.2, 0.2, 0.2, - 0.242, - 0.385, - 0.529, - 0.673, - 0.816, - 0.96, + 0.249, + 0.393, + 0.536, + 0.68, + 0.824, + 0.968, 1.0, 1.0, 0.84, @@ -11843,13 +11843,13 @@ 0.2, 0.2, 0.2, - 0.229, - 0.249, - 0.393, - 0.537, - 0.68, - 0.824, - 0.968, + 0.234, + 0.257, + 0.401, + 0.544, + 0.688, + 0.832, + 0.976, 1.0, 0.84, 0.68, @@ -11867,12 +11867,12 @@ 0.2, 0.2, 0.2, - 0.239, - 0.38, - 0.524, - 0.668, - 0.811, - 0.955, + 0.245, + 0.389, + 0.532, + 0.676, + 0.82, + 0.964, 1.0, 1.0, 0.84, @@ -11891,12 +11891,12 @@ 0.2, 0.2, 0.2, - 0.237, - 0.373, - 0.517, - 0.661, - 0.805, - 0.949, + 0.243, + 0.386, + 0.53, + 0.674, + 0.818, + 0.961, 1.0, 1.0, 0.84, @@ -11915,13 +11915,13 @@ 0.2, 0.2, 0.2, - 0.212, - 0.273, - 0.367, - 0.511, - 0.654, - 0.798, - 0.942, + 0.214, + 0.284, + 0.393, + 0.537, + 0.681, + 0.825, + 0.968, 1.0, 0.84, 0.68, @@ -11939,12 +11939,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.361, - 0.505, - 0.649, - 0.792, - 0.936, + 0.238, + 0.382, + 0.525, + 0.669, + 0.813, + 0.957, 1.0, 1.0, 0.84, @@ -11963,12 +11963,12 @@ 0.2, 0.2, 0.2, - 0.233, - 0.366, - 0.51, - 0.653, - 0.797, - 0.941, + 0.239, + 0.382, + 0.526, + 0.67, + 0.814, + 0.957, 1.0, 1.0, 0.84, @@ -11987,12 +11987,12 @@ 0.2, 0.2, 0.2, - 0.232, - 0.361, - 0.505, - 0.649, - 0.793, - 0.936, + 0.237, + 0.381, + 0.525, + 0.669, + 0.812, + 0.956, 1.0, 1.0, 0.84, @@ -12011,12 +12011,12 @@ 0.2, 0.2, 0.2, - 0.235, - 0.378, - 0.522, - 0.665, - 0.809, - 0.953, + 0.241, + 0.385, + 0.529, + 0.672, + 0.816, + 0.96, 1.0, 1.0, 0.84, @@ -12035,12 +12035,12 @@ 0.2, 0.2, 0.2, - 0.235, - 0.375, - 0.519, - 0.663, - 0.807, - 0.95, + 0.24, + 0.384, + 0.528, + 0.671, + 0.815, + 0.959, 1.0, 1.0, 0.84, @@ -12059,109 +12059,109 @@ 0.2, 0.2, 0.2, - 0.232, - 0.364, - 0.508, - 0.652, - 0.796, - 0.939, - 1.0, + 0.237, + 0.38, + 0.524, + 0.668, + 0.812, + 0.955, 1.0, - 0.983, - 0.823, - 0.663, - 0.503, - 0.343, - 0.343, - 0.343, - 0.343, - 0.343, - 0.343, - 0.343, - 0.343, - 0.343, - 0.343, - 0.343, - 0.343, - 0.348, - 0.382, - 0.428, - 0.527, - 0.671, - 0.814, - 0.936, 1.0, + 0.924, + 0.764, + 0.604, + 0.444, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.284, + 0.29, + 0.329, + 0.383, + 0.497, + 0.641, + 0.785, + 0.926, 1.0, 1.0, - 0.888, - 0.728, - 0.568, - 0.568, - 0.568, - 0.568, - 0.568, - 0.568, - 0.568, - 0.568, - 0.568, - 0.568, - 0.568, - 0.568, - 0.57, - 0.652, - 0.782, - 0.882, - 0.924, - 0.963, - 0.974, + 0.987, + 0.827, + 0.667, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.507, + 0.509, + 0.604, + 0.748, + 0.863, + 0.912, + 0.957, + 0.97, 1.0, 1.0, 1.0, 1.0, - 0.894, - 0.734, - 0.734, - 0.734, - 0.734, - 0.734, - 0.734, - 0.734, - 0.734, - 0.734, - 0.734, - 0.734, - 0.734, - 0.738, - 0.74, - 0.786, - 0.807, - 0.839, - 0.852, - 0.88, + 0.851, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.691, + 0.696, + 0.698, + 0.752, + 0.776, + 0.814, + 0.828, + 0.861, 1.0, 1.0, 1.0, 1.0, - 0.904, - 0.744, - 0.744, - 0.744, - 0.744, - 0.744, - 0.744, - 0.744, - 0.744, - 0.744, - 0.744, - 0.744, + 0.863, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.703, + 0.732, 0.744, - 0.769, - 0.779, - 0.845, - 0.859, - 0.899, - 0.941, - 0.976, + 0.821, + 0.836, + 0.883, + 0.931, + 0.972, 1.0, 0.84, 0.68, @@ -12179,12 +12179,12 @@ 0.2, 0.2, 0.2, - 0.225, - 0.346, - 0.49, - 0.633, - 0.777, - 0.921, + 0.229, + 0.369, + 0.513, + 0.657, + 0.8, + 0.944, 1.0, 1.0, 0.84, @@ -12213,11 +12213,11 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12237,11 +12237,11 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12261,11 +12261,115 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -12277,6 +12381,62 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 29.636, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -12293,6 +12453,279 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 15.58, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 23.941, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -12309,227 +12742,16 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 16.395, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + 6.126, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12545,15 +12767,13 @@ 0.0, 0.0, 0.0, + 26.115, + 31.876, + 31.876, 0.0, 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12569,15 +12789,15 @@ 0.0, 0.0, 0.0, + 13.14, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12593,15 +12813,15 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12617,15 +12837,15 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, 0.0, - 2.25, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12641,15 +12861,15 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, 0.0, - 8.88, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12665,15 +12885,15 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12689,15 +12909,15 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12713,15 +12933,15 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12737,15 +12957,17 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 14.214, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12759,6 +12981,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12767,9 +12994,6 @@ 0.0, 0.0, 0.0, - 12.799, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12781,6 +13005,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12789,11 +13018,6 @@ 0.0, 0.0, 0.0, - 3.776, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12805,6 +13029,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12813,11 +13042,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12829,6 +13053,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12837,11 +13066,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12853,6 +13077,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12861,11 +13090,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12877,6 +13101,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12885,11 +13114,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12901,6 +13125,11 @@ 0.0, 0.0, 0.0, + 18.269, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12909,11 +13138,6 @@ 0.0, 0.0, 0.0, - 17.835, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12925,6 +13149,11 @@ 0.0, 0.0, 0.0, + 18.993, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12933,11 +13162,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12949,6 +13173,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12957,11 +13186,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12973,6 +13197,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -12981,11 +13210,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -12997,6 +13221,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13005,11 +13234,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13021,6 +13245,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13029,11 +13258,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13045,6 +13269,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13053,11 +13282,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13069,6 +13293,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13077,11 +13306,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13093,6 +13317,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13101,11 +13330,6 @@ 0.0, 0.0, 0.0, - 16.107, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13117,6 +13341,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13125,11 +13354,6 @@ 0.0, 0.0, 0.0, - 3.978, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13142,75 +13366,10 @@ 0.0, 0.0, 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 7.28, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + 1.803, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13221,11 +13380,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13235,6 +13389,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13245,11 +13404,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13259,6 +13413,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13269,11 +13428,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13283,6 +13437,11 @@ 0.0, 0.0, 0.0, + 25.119, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13293,11 +13452,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13307,6 +13461,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13317,11 +13476,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13331,6 +13485,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13341,11 +13500,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13355,6 +13509,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13366,10 +13525,6 @@ 0.0, 0.0, 0.0, - 0.132, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13378,6 +13533,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13389,11 +13549,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13402,6 +13557,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13413,11 +13573,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13426,6 +13581,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13437,11 +13597,6 @@ 0.0, 0.0, 0.0, - 9.873, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13450,6 +13605,11 @@ 0.0, 0.0, 0.0, + 15.04, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13461,11 +13621,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13474,6 +13629,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13485,11 +13645,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13498,6 +13653,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13509,11 +13669,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13522,6 +13677,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13533,11 +13693,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13546,6 +13701,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13557,11 +13717,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13570,6 +13725,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13581,11 +13741,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13594,6 +13749,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13605,11 +13765,6 @@ 0.0, 0.0, 0.0, - 1.895, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13618,6 +13773,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13629,11 +13789,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13642,6 +13797,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13653,11 +13813,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13666,6 +13821,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13677,11 +13837,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13690,6 +13845,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13701,11 +13861,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13714,6 +13869,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13725,11 +13885,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13738,6 +13893,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13749,11 +13909,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13762,6 +13917,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13773,11 +13933,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13786,6 +13941,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13797,11 +13957,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13810,6 +13965,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13821,11 +13981,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13834,6 +13989,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13845,11 +14005,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13858,6 +14013,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13869,11 +14029,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13882,6 +14037,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13893,11 +14053,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13906,6 +14061,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13917,11 +14077,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13930,6 +14085,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13941,11 +14101,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13954,6 +14109,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13965,11 +14125,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -13978,6 +14133,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -13989,11 +14149,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14002,6 +14157,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14013,11 +14173,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14026,6 +14181,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14037,11 +14197,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14050,6 +14205,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14061,11 +14221,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14074,6 +14229,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14085,11 +14245,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14098,6 +14253,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14109,11 +14269,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14122,6 +14277,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14133,11 +14293,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14146,6 +14301,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14157,11 +14317,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14170,6 +14325,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14181,11 +14341,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14194,6 +14349,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14205,11 +14365,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14218,6 +14373,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14229,11 +14389,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14242,6 +14397,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14253,11 +14413,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14266,6 +14421,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14277,11 +14437,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14290,6 +14445,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14301,11 +14461,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14314,6 +14469,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14325,11 +14485,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14338,6 +14493,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14349,11 +14509,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14362,6 +14517,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14373,11 +14533,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14386,6 +14541,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 28.45, + 31.876, 0.0, 0.0, 0.0, @@ -14397,11 +14557,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14410,6 +14565,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14421,11 +14581,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14434,6 +14589,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14445,11 +14605,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14458,6 +14613,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14469,11 +14629,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14484,6 +14639,9 @@ 0.0, 0.0, 0.0, + 18.869, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14493,11 +14651,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14508,6 +14661,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14517,11 +14675,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14532,6 +14685,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14541,11 +14699,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14556,6 +14709,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 28.45, + 31.876, 0.0, 0.0, 0.0, @@ -14565,11 +14723,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14580,6 +14733,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14589,11 +14747,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14604,6 +14757,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14613,11 +14771,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14628,6 +14781,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14639,9 +14797,6 @@ 0.0, 0.0, 0.0, - 6.777, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14650,6 +14805,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14661,11 +14821,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14674,6 +14829,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14685,11 +14845,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14698,6 +14853,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14709,11 +14869,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14722,6 +14877,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 25.024, + 31.876, 0.0, 0.0, 0.0, @@ -14733,11 +14893,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14746,6 +14901,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14757,11 +14917,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14770,6 +14925,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14781,11 +14941,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14794,6 +14949,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14805,11 +14965,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14818,6 +14973,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14829,11 +14989,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14842,6 +14997,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14853,11 +15013,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14866,6 +15021,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14877,11 +15037,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14890,6 +15045,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 21.597, + 31.876, 0.0, 0.0, 0.0, @@ -14901,11 +15061,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14914,6 +15069,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14925,11 +15085,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14938,6 +15093,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14949,11 +15109,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14962,6 +15117,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14973,11 +15133,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -14986,6 +15141,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -14997,11 +15157,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15010,6 +15165,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15021,11 +15181,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15034,6 +15189,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15045,11 +15205,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15058,6 +15213,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 21.541, + 31.876, 0.0, 0.0, 0.0, @@ -15069,11 +15229,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15082,6 +15237,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15093,11 +15253,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15106,6 +15261,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15117,11 +15277,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15130,6 +15285,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15141,11 +15301,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15154,6 +15309,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15165,11 +15325,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15178,6 +15333,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15189,11 +15349,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15202,6 +15357,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15213,11 +15373,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15226,6 +15381,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 18.015, + 31.876, 0.0, 0.0, 0.0, @@ -15237,11 +15397,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15250,6 +15405,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15261,11 +15421,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15274,6 +15429,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15285,11 +15445,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15298,6 +15453,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15309,11 +15469,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15322,6 +15477,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15333,11 +15493,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15346,6 +15501,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15357,11 +15517,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15370,6 +15525,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15381,11 +15541,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.008, - 18.851, 0.0, 0.0, 0.0, @@ -15394,6 +15549,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 17.961, + 31.876, 0.0, 0.0, 0.0, @@ -15405,11 +15565,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15418,6 +15573,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15429,11 +15589,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15442,6 +15597,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15453,11 +15613,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15466,6 +15621,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15477,11 +15637,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15490,6 +15645,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15501,11 +15661,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15514,6 +15669,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15525,11 +15685,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15538,6 +15693,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15549,11 +15709,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 17.951, - 18.851, 0.0, 0.0, 0.0, @@ -15562,6 +15717,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 14.385, + 31.876, 0.0, 0.0, 0.0, @@ -15573,11 +15733,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15586,6 +15741,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 14.378, + 31.876, 0.0, 0.0, 0.0, @@ -15597,11 +15757,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15610,6 +15765,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15621,11 +15781,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15634,6 +15789,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15645,11 +15805,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15658,6 +15813,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15669,11 +15829,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15682,6 +15837,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15693,11 +15853,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15706,6 +15861,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15717,11 +15877,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 14.37, - 18.851, 0.0, 0.0, 0.0, @@ -15730,6 +15885,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 14.195, + 31.876, 0.0, 0.0, 0.0, @@ -15741,11 +15901,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 14.363, - 18.851, 0.0, 0.0, 0.0, @@ -15754,6 +15909,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15765,11 +15925,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15778,6 +15933,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15789,11 +15949,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15802,6 +15957,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15813,11 +15973,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15826,6 +15981,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15837,11 +15997,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15850,6 +16005,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15861,11 +16021,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15874,6 +16029,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15885,11 +16045,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 14.173, - 18.851, 0.0, 0.0, 0.0, @@ -15898,6 +16053,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 14.144, + 31.876, 0.0, 0.0, 0.0, @@ -15909,11 +16069,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15922,6 +16077,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15933,11 +16093,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15946,6 +16101,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15957,11 +16117,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15970,6 +16125,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -15981,11 +16141,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -15994,6 +16149,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16005,11 +16165,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16018,6 +16173,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16029,11 +16189,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16042,6 +16197,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16053,11 +16213,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 14.118, - 18.851, 0.0, 0.0, 0.0, @@ -16066,6 +16221,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 10.564, + 31.876, 0.0, 0.0, 0.0, @@ -16077,11 +16237,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16090,6 +16245,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16101,11 +16261,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16114,6 +16269,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16125,11 +16285,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16138,6 +16293,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16149,11 +16309,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16162,6 +16317,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16173,11 +16333,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16186,6 +16341,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16197,11 +16357,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16210,6 +16365,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16221,11 +16381,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 10.534, - 18.851, 0.0, 0.0, 0.0, @@ -16234,6 +16389,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 10.598, + 31.876, 0.0, 0.0, 0.0, @@ -16245,11 +16405,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16258,6 +16413,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16269,11 +16429,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16282,6 +16437,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16293,11 +16453,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16306,6 +16461,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16317,11 +16477,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16330,6 +16485,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16341,11 +16501,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16354,6 +16509,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16365,11 +16525,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16378,6 +16533,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16389,11 +16549,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 10.569, - 18.851, 0.0, 0.0, 0.0, @@ -16402,6 +16557,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 10.802, + 31.876, 0.0, 0.0, 0.0, @@ -16413,11 +16573,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16426,6 +16581,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16437,11 +16597,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16450,6 +16605,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16461,11 +16621,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16474,6 +16629,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 10.601, + 31.876, 0.0, 0.0, 0.0, @@ -16485,11 +16645,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16498,6 +16653,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16509,11 +16669,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16522,6 +16677,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16533,11 +16693,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16546,6 +16701,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16557,11 +16717,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 10.78, - 18.851, 0.0, 0.0, 0.0, @@ -16570,6 +16725,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 10.812, + 31.876, 0.0, 0.0, 0.0, @@ -16581,11 +16741,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16594,6 +16749,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16605,11 +16765,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16618,6 +16773,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16629,11 +16789,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 10.572, - 18.851, 0.0, 0.0, 0.0, @@ -16642,6 +16797,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16653,11 +16813,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16666,6 +16821,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16677,11 +16837,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16690,6 +16845,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16701,11 +16861,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16714,6 +16869,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16725,11 +16885,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 10.79, - 18.851, 0.0, 0.0, 0.0, @@ -16738,6 +16893,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 10.749, + 31.876, 0.0, 0.0, 0.0, @@ -16749,11 +16909,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16762,6 +16917,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16773,11 +16933,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16786,6 +16941,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16797,11 +16957,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16810,6 +16965,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16821,11 +16981,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16834,6 +16989,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16845,11 +17005,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16858,6 +17013,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16869,11 +17029,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16882,6 +17037,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16893,11 +17053,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 10.726, - 18.851, 0.0, 0.0, 0.0, @@ -16906,6 +17061,11 @@ 0.0, 0.0, 0.0, + 1.63, + 31.876, + 31.876, + 14.412, + 31.876, 0.0, 0.0, 0.0, @@ -16917,11 +17077,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16930,6 +17085,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16941,11 +17101,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16954,6 +17109,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16965,11 +17125,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -16978,6 +17133,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -16989,11 +17149,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17002,6 +17157,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17013,11 +17173,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17026,6 +17181,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17037,11 +17197,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17050,6 +17205,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17062,10 +17222,6 @@ 0.0, 0.0, 0.0, - 11.848, - 18.851, - 14.4, - 18.851, 0.0, 0.0, 0.0, @@ -17073,6 +17229,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 14.465, + 31.876, 0.0, 0.0, 0.0, @@ -17085,11 +17246,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17097,6 +17253,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17109,11 +17270,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17121,6 +17277,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17133,11 +17294,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17145,6 +17301,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17157,11 +17318,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17169,6 +17325,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17181,11 +17342,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17193,6 +17349,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17205,11 +17366,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17217,6 +17373,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17229,11 +17390,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 14.452, - 18.851, 0.0, 0.0, 0.0, @@ -17241,6 +17397,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 17.987, + 31.876, 0.0, 0.0, 0.0, @@ -17253,11 +17414,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17265,6 +17421,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17277,11 +17438,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17289,6 +17445,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17301,11 +17462,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17313,6 +17469,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17325,11 +17486,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17337,6 +17493,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17349,11 +17510,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17361,6 +17517,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17373,11 +17534,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17385,6 +17541,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17397,11 +17558,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 17.979, - 18.851, 0.0, 0.0, 0.0, @@ -17409,6 +17565,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 18.086, + 31.876, 0.0, 0.0, 0.0, @@ -17421,11 +17582,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17433,6 +17589,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17445,11 +17606,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17457,6 +17613,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17469,11 +17630,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17481,6 +17637,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17493,11 +17654,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17505,6 +17661,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17517,11 +17678,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17529,6 +17685,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17541,11 +17702,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17553,6 +17709,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17565,11 +17726,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.082, - 18.851, 0.0, 0.0, 0.0, @@ -17577,6 +17733,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 21.597, + 31.876, 0.0, 0.0, 0.0, @@ -17589,11 +17750,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17601,6 +17757,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17613,11 +17774,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17625,6 +17781,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17637,11 +17798,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17649,6 +17805,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17661,11 +17822,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17673,6 +17829,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17685,11 +17846,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17697,6 +17853,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17709,11 +17870,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17721,6 +17877,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17733,11 +17894,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17745,6 +17901,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 25.024, + 31.876, 0.0, 0.0, 0.0, @@ -17757,11 +17918,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17769,6 +17925,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17781,11 +17942,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17793,6 +17949,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17805,11 +17966,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17817,6 +17973,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17829,11 +17990,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17841,6 +17997,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17853,11 +18014,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17865,6 +18021,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17877,11 +18038,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17889,6 +18045,11 @@ 0.0, 0.0, 0.0, + 31.203, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17901,11 +18062,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17913,6 +18069,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 28.45, + 31.876, 0.0, 0.0, 0.0, @@ -17925,11 +18086,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17937,6 +18093,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 28.45, + 31.876, 0.0, 0.0, 0.0, @@ -17949,11 +18110,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17961,6 +18117,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17973,11 +18134,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -17985,6 +18141,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -17997,11 +18158,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18009,6 +18165,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18021,11 +18182,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18033,6 +18189,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18045,11 +18206,6 @@ 0.0, 0.0, 0.0, - 12.846, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18057,6 +18213,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18069,11 +18230,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18081,6 +18237,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18093,11 +18254,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18105,6 +18261,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18117,11 +18278,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18129,6 +18285,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18141,11 +18302,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18153,6 +18309,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18165,11 +18326,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18177,6 +18333,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18189,11 +18350,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18201,6 +18357,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18213,11 +18374,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18225,6 +18381,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18237,11 +18398,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18249,6 +18405,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18261,11 +18422,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18273,6 +18429,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18285,11 +18446,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18297,6 +18453,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18309,11 +18470,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18321,6 +18477,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18333,11 +18494,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18345,6 +18501,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18357,11 +18518,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18369,6 +18525,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18381,11 +18542,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18393,6 +18549,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18405,11 +18566,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18417,6 +18573,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18429,11 +18590,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18441,6 +18597,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18453,11 +18614,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18465,6 +18621,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18477,11 +18638,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18489,6 +18645,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18501,11 +18662,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18513,6 +18669,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18525,11 +18686,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18537,6 +18693,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18549,11 +18710,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18561,6 +18717,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18573,11 +18734,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18585,6 +18741,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18597,11 +18758,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18609,6 +18765,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18621,11 +18782,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18633,6 +18789,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18645,11 +18806,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18657,6 +18813,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18669,11 +18830,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18681,6 +18837,11 @@ 0.0, 0.0, 0.0, + 28.476, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18693,11 +18854,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18705,6 +18861,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18717,11 +18878,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18729,6 +18885,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18741,11 +18902,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18753,6 +18909,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18765,11 +18926,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18777,6 +18933,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18789,11 +18950,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18801,6 +18957,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18813,11 +18974,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18825,6 +18981,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18837,11 +18998,6 @@ 0.0, 0.0, 0.0, - 11.154, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18849,6 +19005,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18861,11 +19022,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18873,6 +19029,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18885,11 +19046,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18897,6 +19053,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18909,11 +19070,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18921,6 +19077,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18933,11 +19094,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18945,6 +19101,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18957,11 +19118,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18969,6 +19125,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -18981,11 +19142,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -18993,6 +19149,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19005,11 +19166,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19017,6 +19173,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19029,11 +19190,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19041,6 +19197,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19053,11 +19214,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19065,6 +19221,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19077,11 +19238,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19089,6 +19245,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19101,11 +19262,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19113,6 +19269,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19125,11 +19286,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19137,6 +19293,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19149,11 +19310,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19161,6 +19317,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19173,11 +19334,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19185,6 +19341,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19197,11 +19358,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19209,6 +19365,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19221,11 +19382,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19233,6 +19389,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19245,11 +19406,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19257,6 +19413,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19269,11 +19430,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19281,6 +19437,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19293,11 +19454,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19305,6 +19461,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19317,11 +19478,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19329,6 +19485,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19341,11 +19502,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19353,6 +19509,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19365,11 +19526,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19377,6 +19533,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19389,11 +19550,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19401,6 +19557,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19413,11 +19574,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19425,6 +19581,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19437,11 +19598,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19449,6 +19605,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19461,11 +19622,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19473,6 +19629,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19485,11 +19646,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19497,6 +19653,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19509,11 +19670,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19521,6 +19677,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19533,11 +19694,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19545,6 +19701,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19557,11 +19718,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19569,6 +19725,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19581,11 +19742,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19593,6 +19749,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19605,11 +19766,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19617,6 +19773,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19629,11 +19790,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19641,6 +19797,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19653,11 +19814,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19665,6 +19821,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19677,11 +19838,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19689,6 +19845,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19701,11 +19862,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19713,6 +19869,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19725,11 +19886,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19737,6 +19893,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19749,11 +19910,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19761,6 +19917,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19773,11 +19934,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19785,6 +19941,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19797,11 +19958,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19809,6 +19965,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19821,11 +19982,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19833,6 +19989,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19845,11 +20006,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19857,6 +20013,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19869,11 +20030,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19881,6 +20037,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19893,11 +20054,6 @@ 0.0, 0.0, 0.0, - 15.812, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19905,6 +20061,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19917,11 +20078,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19929,6 +20085,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19941,11 +20102,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19953,6 +20109,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19965,11 +20126,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -19977,6 +20133,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -19989,11 +20150,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -20001,6 +20157,11 @@ 0.0, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20013,11 +20174,6 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, 0.0, @@ -20028,166 +20184,8 @@ 0.0, 0.0, 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 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.766, - 18.851, - 0.0, - 0.0, + 8.532, + 31.876, 0.0, 0.0, 0.0, @@ -20205,13 +20203,13 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20230,11 +20228,12 @@ 0.0, 0.0, 0.0, - 13.26, - 18.851, - 18.851, - 18.851, 0.0, + 4.77, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20253,12 +20252,12 @@ 0.0, 0.0, 0.0, - 1.037, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 10.661, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20277,12 +20276,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20301,12 +20300,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20325,12 +20324,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20349,12 +20348,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20373,12 +20372,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20397,12 +20396,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20421,12 +20420,12 @@ 0.0, 0.0, 0.0, - 4.061, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 15.585, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20445,12 +20444,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20469,12 +20468,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20493,12 +20492,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20517,12 +20516,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20541,12 +20540,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20565,12 +20564,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20589,12 +20588,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20613,12 +20612,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20637,12 +20636,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20661,12 +20660,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20685,12 +20684,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20709,12 +20708,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20733,12 +20732,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20757,12 +20756,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20781,12 +20780,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20805,12 +20804,12 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20829,12 +20828,12 @@ 0.0, 0.0, 0.0, - 1.995, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 15.081, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20855,9 +20854,10 @@ 0.0, 0.0, 0.0, - 13.174, - 18.851, - 18.851, + 2.56, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20880,8 +20880,8 @@ 0.0, 0.0, 0.0, - 12.547, - 18.851, + 29.663, + 31.876, 0.0, 0.0, 0.0, @@ -20904,8 +20904,8 @@ 0.0, 0.0, 0.0, - 11.332, - 18.851, + 27.283, + 31.876, 0.0, 0.0, 0.0, @@ -20925,11 +20925,11 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20949,11 +20949,11 @@ 0.0, 0.0, 0.0, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -20961,12 +20961,12 @@ ] }, "status": "optimal", - "solver_seconds": 3.431, + "solver_seconds": 3.359, "ElectricUtility": { - "lifecycle_emissions_tonnes_CO2_bau": 10619.11, - "annual_emissions_tonnes_CO2_bau": 493.46, + "lifecycle_emissions_tonnes_CO2_bau": 10653.83, + "annual_emissions_tonnes_CO2_bau": 495.07, "lifecycle_emissions_tonnes_PM25": 0.54, - "annual_energy_supplied_kwh_bau": 1.00212343e6, + "annual_energy_supplied_kwh_bau": 1.0054267e6, "lifecycle_emissions_tonnes_PM25_bau": 0.6, "lifecycle_emissions_tonnes_SO2": 0.63, "annual_emissions_tonnes_SO2_bau": 0.03, @@ -20978,19 +20978,19 @@ 32.388, 32.759, 32.725, - 11.431, - 58.381, - 49.575, - 96.955, - 84.629, - 111.814, - 115.039, - 121.063, - 111.148, - 128.197, - 114.211, - 78.784, - 13.026, + 12.575, + 73.11, + 63.72, + 111.297, + 90.255, + 113.198, + 116.304, + 122.103, + 98.833, + 115.351, + 101.185, + 65.758, + 0.0, 31.876, 31.876, 31.876, @@ -21002,19 +21002,19 @@ 33.107, 33.107, 71.869, - 78.091, - 127.954, - 185.413, - 180.147, - 177.878, - 178.385, - 173.108, - 168.968, - 159.063, - 180.368, - 197.856, - 149.638, - 149.641, + 79.217, + 142.417, + 199.573, + 194.506, + 192.324, + 192.813, + 180.031, + 170.021, + 146.76, + 167.355, + 184.831, + 136.613, + 136.616, 150.852, 60.908, 33.107, @@ -21026,19 +21026,19 @@ 33.107, 33.107, 71.547, - 78.069, - 129.763, - 185.537, - 179.557, - 176.883, - 177.351, - 180.558, - 169.505, - 158.208, - 176.053, - 197.856, - 149.667, - 149.871, + 79.191, + 137.719, + 199.706, + 193.94, + 191.367, + 191.818, + 194.907, + 169.273, + 145.937, + 163.221, + 184.831, + 136.641, + 136.845, 151.093, 60.908, 33.107, @@ -21050,16 +21050,16 @@ 33.107, 33.107, 71.658, - 77.708, - 128.3, - 185.221, - 179.818, - 177.608, - 178.137, - 169.589, - 168.56, - 177.441, - 194.98, + 81.787, + 142.648, + 199.388, + 194.189, + 192.063, + 192.573, + 173.826, + 169.627, + 178.181, + 195.171, 216.707, 168.489, 168.489, @@ -21074,19 +21074,19 @@ 33.107, 33.107, 71.407, - 76.969, - 111.368, - 168.495, - 163.126, - 160.757, - 161.274, - 170.555, - 179.342, - 159.696, - 178.961, - 198.509, - 150.414, - 150.542, + 77.017, + 112.15, + 169.597, + 164.427, + 162.144, + 162.643, + 171.571, + 180.023, + 147.39, + 166.027, + 185.484, + 137.388, + 137.517, 151.75, 60.908, 33.107, @@ -21098,19 +21098,19 @@ 32.841, 33.064, 71.197, - 61.396, - 93.52, - 138.889, - 192.022, - 192.894, - 187.647, - 174.62, - 169.503, - 159.093, - 175.959, - 197.856, - 131.925, - 96.497, + 62.768, + 108.679, + 152.989, + 205.92, + 206.866, + 201.716, + 180.428, + 170.533, + 146.785, + 163.131, + 184.831, + 118.899, + 83.472, 115.368, 80.213, 31.876, @@ -21122,19 +21122,19 @@ 32.031, 32.061, 32.114, - 10.847, - 57.696, - 50.71, - 98.53, - 96.028, - 131.644, - 124.46, - 121.344, - 111.088, - 127.646, - 114.211, - 78.784, - 13.026, + 14.615, + 73.449, + 64.789, + 112.81, + 110.403, + 146.014, + 127.473, + 122.371, + 98.772, + 114.821, + 101.185, + 65.758, + -0.0, 31.876, 31.876, 31.876, @@ -21146,19 +21146,19 @@ 33.107, 33.107, 71.587, - 77.72, - 128.362, - 185.301, - 179.496, - 176.767, - 177.158, - 169.062, - 167.475, - 157.758, - 175.093, - 197.856, - 149.638, - 149.638, + 81.715, + 143.041, + 199.466, + 193.879, + 191.253, + 191.631, + 173.07, + 168.583, + 145.504, + 162.299, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21170,19 +21170,19 @@ 33.107, 33.107, 71.617, - 77.846, - 129.014, - 185.874, - 180.62, - 178.2, - 178.59, - 181.56, - 169.891, - 158.242, - 174.85, - 197.856, - 149.638, - 149.638, + 78.905, + 137.236, + 200.016, + 194.96, + 192.632, + 193.009, + 195.752, + 169.559, + 145.968, + 162.067, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21194,19 +21194,19 @@ 33.107, 33.107, 71.299, - 77.634, - 127.813, - 186.475, - 186.247, - 189.652, - 185.597, - 186.786, - 177.417, - 169.501, - 179.747, - 197.907, - 149.638, - 149.638, + 79.241, + 142.978, + 200.593, + 200.37, + 203.665, + 199.795, + 192.035, + 178.183, + 156.707, + 166.795, + 184.881, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21218,19 +21218,19 @@ 33.107, 33.107, 71.17, - 77.976, - 130.406, - 194.797, - 183.632, - 180.465, - 187.947, - 190.182, - 188.372, - 160.712, - 174.892, - 197.856, - 149.638, - 149.638, + 78.132, + 131.441, + 201.548, + 197.855, + 194.809, + 202.002, + 204.154, + 202.425, + 148.339, + 162.106, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21242,19 +21242,19 @@ 33.107, 33.107, 71.145, - 77.235, - 127.836, - 186.942, - 181.355, - 178.729, - 179.028, - 172.373, - 168.934, - 158.467, - 174.388, - 197.856, - 149.638, - 149.638, + 80.844, + 143.659, + 201.041, + 195.666, + 193.139, + 193.428, + 175.484, + 169.984, + 146.183, + 161.623, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21266,19 +21266,19 @@ 31.876, 31.876, 69.872, - 59.465, - 92.405, - 138.916, - 182.078, - 180.365, - 183.28, - 179.813, - 178.909, - 164.658, - 174.516, - 199.109, - 131.925, - 96.497, + 63.241, + 108.101, + 153.007, + 196.36, + 194.744, + 197.657, + 182.89, + 179.961, + 152.374, + 161.746, + 186.084, + 118.899, + 83.472, 115.348, 79.921, 31.876, @@ -21290,19 +21290,19 @@ 31.876, 31.876, 31.876, - 10.733, - 56.838, - 49.242, - 97.156, - 104.395, - 145.763, - 136.901, - 129.08, - 118.183, - 124.096, - 114.211, - 78.784, - 13.026, + 14.849, + 71.84, + 63.377, + 111.493, + 118.587, + 159.772, + 140.014, + 129.983, + 105.75, + 111.359, + 101.185, + 65.758, + -0.0, 31.876, 31.876, 31.876, @@ -21314,19 +21314,19 @@ 31.876, 31.876, 31.876, - 11.037, - 57.821, - 51.361, - 107.814, - 103.496, - 145.357, - 132.397, - 137.355, - 127.817, - 128.223, - 114.211, - 78.805, - 13.026, + 12.811, + 74.153, + 65.414, + 121.732, + 117.58, + 159.149, + 136.545, + 137.751, + 114.836, + 115.228, + 101.185, + 65.78, + 0.0, 31.876, 31.876, 31.876, @@ -21338,19 +21338,19 @@ 33.107, 33.107, 72.055, - 77.881, - 128.185, - 187.647, - 181.871, - 178.989, - 179.041, - 172.86, - 168.485, - 158.248, - 170.406, - 197.856, - 149.638, - 149.638, + 81.543, + 144.186, + 201.719, + 196.16, + 193.388, + 193.44, + 175.715, + 169.551, + 145.97, + 157.662, + 184.831, + 136.613, + 136.613, 150.785, 60.908, 33.107, @@ -21362,19 +21362,19 @@ 33.107, 33.107, 72.113, - 78.142, - 129.1, - 189.172, - 183.828, - 180.578, - 188.164, - 173.812, - 169.643, - 159.081, - 170.973, - 198.797, - 150.73, - 150.759, + 82.001, + 145.256, + 203.221, + 198.08, + 194.936, + 202.225, + 176.299, + 170.686, + 146.793, + 158.234, + 185.772, + 137.705, + 137.733, 151.814, 60.908, 33.107, @@ -21386,19 +21386,19 @@ 33.158, 33.216, 72.404, - 78.149, - 128.69, - 193.827, - 189.137, - 186.744, - 187.699, - 193.439, - 185.128, - 186.435, - 176.403, - 197.856, - 149.638, - 149.638, + 81.07, + 140.715, + 207.003, + 203.144, + 200.842, + 201.761, + 205.999, + 180.379, + 173.387, + 163.409, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21410,19 +21410,19 @@ 33.107, 33.107, 71.35, - 77.333, - 129.866, - 194.678, - 193.815, - 193.942, - 179.773, - 182.297, - 193.856, - 174.605, - 176.412, - 197.856, - 149.638, - 149.638, + 80.521, + 131.453, + 201.99, + 206.137, + 205.01, + 194.142, + 196.574, + 207.31, + 160.034, + 163.418, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21434,19 +21434,19 @@ 32.265, 32.304, 70.631, - 60.017, - 92.74, - 138.716, - 181.448, - 178.526, - 193.814, - 195.629, - 195.413, - 176.927, - 176.752, - 197.856, - 131.925, - 96.497, + 63.94, + 109.033, + 152.814, + 195.753, + 192.941, + 205.652, + 197.767, + 198.544, + 163.914, + 163.745, + 184.831, + 118.899, + 83.472, 115.348, 79.969, 31.876, @@ -21458,19 +21458,19 @@ 32.412, 32.572, 32.831, - 11.62, - 59.144, - 56.383, - 104.946, - 103.805, - 138.42, - 144.749, - 136.019, - 113.411, - 121.119, - 114.211, - 78.784, - 13.026, + 13.001, + 65.917, + 71.332, + 118.973, + 117.874, + 152.522, + 159.243, + 134.393, + 100.995, + 108.417, + 101.185, + 65.758, + -0.0, 31.876, 31.876, 31.876, @@ -21482,19 +21482,19 @@ 33.244, 33.107, 71.731, - 77.632, - 127.916, - 187.198, - 181.893, - 178.906, - 178.814, - 170.638, - 168.135, - 157.373, - 169.324, - 197.856, - 149.638, - 149.638, + 82.197, + 143.499, + 201.284, + 196.18, + 193.306, + 193.219, + 173.104, + 169.212, + 145.126, + 156.622, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21506,19 +21506,19 @@ 33.252, 33.274, 71.623, - 77.493, - 127.985, - 187.69, - 192.734, - 187.123, - 190.936, - 182.859, - 175.672, - 183.427, - 194.105, - 202.507, - 149.638, - 149.638, + 81.829, + 144.287, + 201.757, + 206.599, + 201.207, + 204.881, + 184.362, + 176.465, + 183.93, + 188.069, + 184.845, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21530,19 +21530,19 @@ 33.107, 33.107, 71.536, - 77.545, - 129.076, - 194.74, - 196.121, - 198.876, - 198.422, - 208.07, - 216.703, - 212.478, - 204.126, - 203.615, - 151.756, - 151.644, + 78.214, + 135.358, + 201.612, + 206.589, + 209.321, + 209.491, + 217.231, + 219.764, + 212.548, + 204.153, + 190.298, + 138.73, + 138.619, 152.783, 60.908, 33.107, @@ -21555,18 +21555,18 @@ 33.107, 67.007, 77.277, - 129.737, - 194.874, - 197.178, - 210.516, - 224.208, - 215.143, - 225.357, - 212.489, - 202.115, - 216.494, - 161.396, - 152.846, + 131.757, + 200.925, + 200.959, + 217.074, + 224.38, + 229.497, + 239.5, + 203.918, + 189.423, + 203.469, + 148.371, + 139.821, 152.829, 60.908, 33.107, @@ -21578,19 +21578,19 @@ 33.107, 33.107, 66.525, - 76.503, - 128.63, - 193.207, - 203.728, - 210.985, - 224.401, - 237.93, - 240.251, - 190.147, - 187.099, - 205.773, - 161.032, - 155.002, + 80.529, + 138.115, + 208.109, + 204.64, + 225.008, + 238.408, + 252.749, + 240.697, + 177.861, + 174.342, + 192.748, + 148.007, + 141.976, 153.127, 60.908, 33.107, @@ -21602,19 +21602,19 @@ 31.876, 31.876, 65.393, - 58.746, - 92.074, - 135.945, - 177.735, - 185.897, - 204.492, - 195.668, - 189.616, - 171.299, - 173.297, - 196.518, - 132.151, - 96.497, + 63.785, + 106.741, + 150.148, + 192.182, + 200.395, + 218.99, + 198.779, + 190.828, + 159.146, + 160.663, + 183.492, + 119.125, + 83.472, 115.348, 79.921, 31.876, @@ -21626,19 +21626,19 @@ 31.876, 31.876, 28.45, - 10.522, - 56.693, - 47.616, - 95.041, - 95.122, - 131.58, - 120.279, - 121.031, - 109.834, - 120.623, - 110.785, - 78.784, - 13.026, + 16.512, + 70.807, + 61.807, + 109.45, + 109.62, + 146.079, + 123.02, + 122.197, + 97.656, + 107.988, + 97.759, + 65.758, + 0.0, 31.876, 31.876, 31.876, @@ -21650,19 +21650,19 @@ 33.107, 33.107, 67.545, - 76.929, - 127.499, - 185.389, - 180.217, - 177.888, - 178.187, - 175.284, - 171.494, - 165.259, - 174.035, - 194.43, - 149.638, - 149.638, + 82.9, + 141.933, + 199.542, + 194.564, + 192.323, + 192.612, + 177.323, + 172.438, + 152.694, + 161.135, + 181.404, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21674,19 +21674,19 @@ 33.107, 33.107, 68.015, - 77.764, - 128.045, - 186.372, - 187.092, - 184.952, - 185.496, - 180.458, - 174.057, - 162.896, - 172.567, - 194.43, - 149.638, - 149.638, + 79.559, + 143.537, + 200.486, + 201.175, + 199.115, + 199.639, + 185.384, + 174.898, + 149.449, + 159.727, + 181.404, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21699,18 +21699,18 @@ 33.107, 68.134, 78.18, - 130.614, - 194.158, - 193.003, - 176.253, - 176.235, - 178.826, - 184.513, - 155.352, - 169.091, - 194.43, - 149.638, - 149.638, + 131.509, + 204.58, + 208.545, + 190.75, + 190.734, + 193.23, + 194.613, + 143.179, + 156.392, + 181.404, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21722,19 +21722,19 @@ 33.107, 33.107, 67.59, - 77.272, - 128.263, - 187.881, - 182.329, - 179.565, - 179.076, - 172.053, - 167.214, - 156.432, - 168.401, - 194.43, - 149.638, - 149.638, + 81.668, + 143.785, + 201.939, + 196.594, + 193.935, + 193.466, + 174.679, + 168.321, + 144.214, + 155.73, + 181.404, + 136.613, + 136.613, 150.829, 60.908, 33.107, @@ -21746,19 +21746,19 @@ 33.107, 33.107, 67.73, - 77.147, - 127.957, - 185.007, - 185.236, - 183.832, - 185.838, - 165.635, - 166.339, - 155.437, - 166.777, - 194.43, - 149.753, - 149.953, + 83.473, + 142.281, + 199.182, + 199.39, + 198.037, + 199.967, + 167.803, + 167.479, + 143.258, + 154.173, + 181.404, + 136.728, + 136.928, 151.24, 60.908, 33.107, @@ -21770,19 +21770,19 @@ 31.876, 32.006, 67.647, - 59.913, - 92.287, - 136.77, - 179.636, - 176.989, - 177.177, - 165.29, - 166.385, - 155.448, - 166.652, - 191.004, - 131.925, - 96.497, + 66.854, + 106.542, + 150.935, + 194.003, + 191.456, + 191.639, + 166.93, + 167.523, + 143.269, + 154.053, + 177.978, + 118.899, + 83.472, 115.348, 79.921, 31.876, @@ -21794,19 +21794,19 @@ 31.876, 31.949, 28.668, - 10.669, - 57.406, - 49.102, - 96.589, - 93.928, - 129.437, - 118.627, - 118.675, - 107.682, - 118.773, - 107.358, - 78.784, - 13.026, + 17.268, + 72.36, + 63.234, + 110.933, + 108.373, + 143.88, + 119.843, + 119.794, + 95.485, + 106.159, + 94.333, + 65.758, + 0.0, 31.876, 31.876, 31.876, @@ -21818,19 +21818,19 @@ 33.107, 33.107, 68.128, - 77.703, - 128.96, - 193.497, - 188.109, - 185.813, - 188.35, - 192.77, - 179.67, - 164.543, - 173.299, - 191.004, - 149.638, - 149.638, + 79.148, + 137.677, + 208.065, + 202.15, + 199.941, + 202.38, + 206.663, + 177.19, + 152.004, + 160.427, + 177.978, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21842,19 +21842,19 @@ 33.107, 33.107, 67.707, - 77.125, - 128.003, - 187.154, - 181.515, - 178.491, - 178.147, - 172.806, - 172.346, - 159.908, - 170.506, - 191.004, - 149.638, - 149.638, + 83.867, + 143.486, + 201.235, + 195.809, + 192.9, + 192.57, + 173.117, + 173.253, + 147.552, + 157.748, + 177.978, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21866,19 +21866,19 @@ 33.107, 33.107, 67.924, - 77.467, - 128.466, - 193.014, - 189.655, - 184.086, - 190.666, - 188.175, - 178.497, - 164.185, - 171.253, - 191.004, - 149.638, - 149.638, + 81.022, + 140.83, + 207.953, + 203.635, + 198.278, + 204.604, + 193.065, + 179.162, + 149.024, + 158.463, + 177.978, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21890,19 +21890,19 @@ 33.107, 33.107, 64.02, - 77.334, - 129.399, - 193.684, - 193.322, - 193.746, - 190.454, - 188.928, - 193.761, - 179.108, - 173.488, - 191.004, - 149.638, - 149.638, + 80.433, + 136.75, + 208.248, + 208.07, + 205.533, + 204.4, + 202.938, + 194.541, + 165.313, + 160.607, + 177.978, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -21914,19 +21914,19 @@ 33.107, 33.107, 64.812, - 77.523, - 128.625, - 193.054, - 192.787, - 187.624, - 194.793, - 195.514, - 199.001, - 189.584, - 180.936, - 192.58, - 149.781, - 149.638, + 83.695, + 140.261, + 208.363, + 207.295, + 201.679, + 200.738, + 202.193, + 202.698, + 178.008, + 167.91, + 179.554, + 136.756, + 136.613, 150.775, 60.908, 33.107, @@ -21938,19 +21938,19 @@ 31.876, 31.876, 62.819, - 59.529, - 93.433, - 147.28, - 202.924, - 210.033, - 211.276, - 208.826, - 211.356, - 179.115, - 191.138, - 199.843, - 134.16, - 97.273, + 60.345, + 100.517, + 150.398, + 210.112, + 223.964, + 225.248, + 222.774, + 226.555, + 166.706, + 178.196, + 186.818, + 121.135, + 84.248, 115.542, 79.921, 31.876, @@ -21963,18 +21963,18 @@ 31.876, 25.024, 11.318, - 56.558, - 49.273, - 96.913, - 94.592, - 131.154, - 129.582, - 124.762, - 115.462, - 124.963, - 109.537, - 78.833, - 13.026, + 72.191, + 63.394, + 111.251, + 109.054, + 145.63, + 136.431, + 125.924, + 103.285, + 112.355, + 96.512, + 65.808, + -0.0, 31.876, 31.876, 31.876, @@ -21986,19 +21986,19 @@ 33.107, 33.107, 63.44, - 76.197, - 127.448, - 199.79, - 201.983, - 210.516, - 220.716, - 222.23, - 211.62, - 195.081, - 206.233, - 206.056, - 153.157, - 151.991, + 82.589, + 143.568, + 215.129, + 216.302, + 224.958, + 235.161, + 220.822, + 212.766, + 182.892, + 193.23, + 193.031, + 140.132, + 138.965, 152.421, 60.908, 33.107, @@ -22010,19 +22010,19 @@ 33.107, 33.107, 63.389, - 76.09, - 127.265, - 185.977, - 207.068, - 208.118, - 205.499, - 196.155, - 190.129, - 183.715, - 186.611, - 196.804, - 152.741, - 151.626, + 83.404, + 142.226, + 200.13, + 219.369, + 222.596, + 219.988, + 198.007, + 191.31, + 171.36, + 174.016, + 183.779, + 139.715, + 138.601, 151.9, 60.908, 33.107, @@ -22034,19 +22034,19 @@ 33.107, 33.107, 63.537, - 76.147, - 127.144, - 184.614, - 178.585, - 175.935, - 176.449, - 163.819, - 166.024, - 155.285, - 166.596, - 188.263, - 149.784, - 149.638, + 84.014, + 141.445, + 198.788, + 192.986, + 190.433, + 190.947, + 164.59, + 167.217, + 143.149, + 154.033, + 175.238, + 136.758, + 136.613, 150.775, 60.908, 33.107, @@ -22058,19 +22058,19 @@ 33.107, 33.107, 63.558, - 77.018, - 127.263, - 184.99, - 179.755, - 177.029, - 177.057, - 169.305, - 166.304, - 155.326, - 166.05, - 187.577, - 149.638, - 149.638, + 79.576, + 141.312, + 199.15, + 194.112, + 191.488, + 191.517, + 175.347, + 167.439, + 143.144, + 153.467, + 174.552, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22082,19 +22082,19 @@ 33.107, 33.107, 64.161, - 76.698, - 127.628, - 185.661, - 180.097, - 177.313, - 177.265, - 164.53, - 166.202, - 155.305, - 166.556, - 187.968, - 150.096, - 150.222, + 84.814, + 142.401, + 199.797, + 194.44, + 191.764, + 191.724, + 164.511, + 167.344, + 143.128, + 153.965, + 174.942, + 137.07, + 137.197, 151.421, 60.908, 33.107, @@ -22106,19 +22106,19 @@ 31.876, 31.876, 64.059, - 59.73, - 92.587, - 137.201, - 179.78, - 177.012, - 177.12, - 164.667, - 166.378, - 159.306, - 174.981, - 187.577, - 131.925, - 96.497, + 67.638, + 107.353, + 151.345, + 194.134, + 191.471, + 191.577, + 164.847, + 167.509, + 146.966, + 162.039, + 174.552, + 118.899, + 83.472, 115.357, 80.121, 31.876, @@ -22130,19 +22130,19 @@ 31.876, 31.876, 25.024, - 10.87, - 58.172, - 56.847, - 109.079, - 109.532, - 146.032, - 144.457, - 144.622, - 131.532, - 140.384, - 103.932, - 78.784, - 13.026, + 13.017, + 69.009, + 70.418, + 123.792, + 124.469, + 154.56, + 158.648, + 142.833, + 132.155, + 138.999, + 90.906, + 65.758, + 0.0, 31.876, 31.876, 31.876, @@ -22155,18 +22155,18 @@ 31.876, 21.597, 11.318, - 60.439, - 59.914, - 112.645, - 112.205, - 139.354, - 143.887, - 136.69, - 106.796, - 117.758, - 103.689, - 79.05, - 13.026, + 61.442, + 60.707, + 113.702, + 115.913, + 153.428, + 157.776, + 150.857, + 94.622, + 105.175, + 90.675, + 66.024, + 0.0, 31.876, 31.876, 31.876, @@ -22178,19 +22178,19 @@ 33.723, 33.906, 62.098, - 77.393, - 127.6, - 185.589, - 180.285, - 177.383, - 177.173, - 163.909, - 165.517, - 154.724, - 165.488, - 187.164, - 149.638, - 149.638, + 85.642, + 142.245, + 199.723, + 194.618, + 191.826, + 191.625, + 163.899, + 166.68, + 142.561, + 152.924, + 174.156, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22202,19 +22202,19 @@ 33.407, 33.466, 61.664, - 76.859, - 127.301, - 186.719, - 181.541, - 178.225, - 177.601, - 165.01, - 165.607, - 163.467, - 165.333, - 187.069, - 149.638, - 149.638, + 84.726, + 142.532, + 200.81, + 195.826, + 192.635, + 192.036, + 164.748, + 166.765, + 149.093, + 152.776, + 174.065, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22226,19 +22226,19 @@ 33.107, 33.107, 61.069, - 76.695, - 129.297, - 194.976, - 195.324, - 191.648, - 186.597, - 189.107, - 193.027, - 162.037, - 170.151, - 187.489, - 149.638, - 149.638, + 84.497, + 134.684, + 200.033, + 198.779, + 205.54, + 200.684, + 203.101, + 208.902, + 149.586, + 157.399, + 174.466, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22250,19 +22250,19 @@ 33.107, 33.107, 61.098, - 76.322, - 125.735, - 182.414, - 176.49, - 175.48, - 175.479, - 158.387, - 162.287, - 152.011, - 163.931, - 187.215, - 149.638, - 149.638, + 85.701, + 139.652, + 196.666, + 190.965, + 189.978, + 189.667, + 158.558, + 163.57, + 139.951, + 151.427, + 174.203, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22274,19 +22274,19 @@ 31.876, 31.876, 59.852, - 58.575, - 90.581, - 135.321, - 178.189, - 176.168, - 176.844, - 162.299, - 165.73, - 153.963, - 164.601, - 183.772, - 131.925, - 96.497, + 68.005, + 104.478, + 149.53, + 192.6, + 190.655, + 190.897, + 162.373, + 166.882, + 141.827, + 152.07, + 170.76, + 118.899, + 83.472, 115.348, 79.921, 31.876, @@ -22298,19 +22298,19 @@ 31.876, 31.876, 21.597, - 9.878, - 56.373, - 47.485, - 94.673, - 92.108, - 127.553, - 121.907, - 142.833, - 127.509, - 126.489, - 99.846, - 78.784, - 13.026, + 18.821, + 70.342, + 61.666, + 109.077, + 106.606, + 142.051, + 121.645, + 143.016, + 114.54, + 113.557, + 86.847, + 65.758, + 0.0, 31.876, 31.876, 31.876, @@ -22322,19 +22322,19 @@ 33.107, 33.107, 61.03, - 76.374, - 126.978, - 184.857, - 179.121, - 176.056, - 175.862, - 161.677, - 164.651, - 153.697, - 164.871, - 183.241, - 149.638, - 149.638, + 85.129, + 141.079, + 199.015, + 193.495, + 190.546, + 190.36, + 161.792, + 165.842, + 141.57, + 152.328, + 170.254, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22346,19 +22346,19 @@ 33.179, 33.342, 58.029, - 77.934, - 126.014, - 182.833, - 184.89, - 184.182, - 175.486, - 167.782, - 162.904, - 175.26, - 174.835, - 184.045, - 149.638, - 149.638, + 78.084, + 139.91, + 197.066, + 199.042, + 198.36, + 189.984, + 176.456, + 164.161, + 162.307, + 161.897, + 171.023, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22370,19 +22370,19 @@ 33.107, 33.252, 58.042, - 76.558, - 125.448, - 182.275, - 176.519, - 175.431, - 175.449, - 157.808, - 162.527, - 169.026, - 176.978, - 183.484, - 149.638, - 149.638, + 86.492, + 139.375, + 196.53, + 190.99, + 189.93, + 188.555, + 158.531, + 163.797, + 156.84, + 163.963, + 170.484, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22394,19 +22394,19 @@ 33.107, 33.107, 58.026, - 77.8, - 128.115, - 194.185, - 193.455, - 191.829, - 195.488, - 192.462, - 193.789, - 173.326, - 171.555, - 184.151, - 149.638, - 149.638, + 78.828, + 139.598, + 203.315, + 206.246, + 205.712, + 198.234, + 206.408, + 205.234, + 160.443, + 158.744, + 171.125, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22418,19 +22418,19 @@ 33.107, 33.107, 56.95, - 77.035, - 128.261, - 193.396, - 192.679, - 188.182, - 192.424, - 192.686, - 187.16, - 167.579, - 173.14, - 184.151, - 149.638, - 149.638, + 79.644, + 139.084, + 207.026, + 208.018, + 202.205, + 206.403, + 204.876, + 182.155, + 154.911, + 160.267, + 171.125, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22441,20 +22441,20 @@ 31.876, 31.876, 31.876, - 56.034, - 58.994, - 92.648, - 144.54, - 185.306, - 185.088, - 189.58, - 196.53, - 194.063, - 178.8, - 182.399, - 186.94, - 132.435, - 96.497, + 56.059, + 63.113, + 103.629, + 159.725, + 199.442, + 199.248, + 203.684, + 202.304, + 194.976, + 166.296, + 169.581, + 173.922, + 119.409, + 83.472, 115.348, 79.921, 31.876, @@ -22465,20 +22465,20 @@ 31.876, 31.876, 31.876, - 18.12, - 9.682, - 56.033, - 55.941, - 104.052, - 110.73, - 157.63, - 148.404, - 148.187, - 126.972, - 128.843, - 99.88, - 78.784, - 13.026, + 18.315, + 18.957, + 70.104, + 71.097, + 118.13, + 124.879, + 171.335, + 146.489, + 148.945, + 114.798, + 116.278, + 86.899, + 65.758, + 0.0, 31.876, 31.876, 31.876, @@ -22489,20 +22489,20 @@ 33.107, 33.107, 33.107, - 56.443, - 75.785, - 127.058, - 185.809, - 180.624, - 190.608, - 177.647, - 162.142, - 171.541, - 154.935, - 171.367, - 183.117, - 149.929, - 150.098, + 56.699, + 85.318, + 141.092, + 199.933, + 194.938, + 204.539, + 190.965, + 162.386, + 172.464, + 142.756, + 158.563, + 170.137, + 136.903, + 137.073, 151.312, 60.908, 33.107, @@ -22513,20 +22513,20 @@ 33.107, 33.107, 33.107, - 57.757, - 77.463, - 128.884, - 193.457, - 180.308, - 177.771, - 185.354, - 179.61, - 166.338, - 155.01, - 165.407, - 182.928, - 149.638, - 149.663, + 57.85, + 81.882, + 139.641, + 207.389, + 194.632, + 192.19, + 199.486, + 186.849, + 167.059, + 142.827, + 152.838, + 169.952, + 136.613, + 136.637, 150.902, 60.908, 33.107, @@ -22537,20 +22537,20 @@ 33.107, 33.107, 33.107, - 53.827, - 76.029, - 126.204, - 183.531, - 185.049, - 183.419, - 186.919, - 168.495, - 169.843, - 158.95, - 164.556, - 183.794, - 149.638, - 149.638, + 54.407, + 85.989, + 140.099, + 197.735, + 199.192, + 197.623, + 198.415, + 169.386, + 170.831, + 146.615, + 152.019, + 170.781, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22561,20 +22561,20 @@ 33.107, 33.107, 33.107, - 53.565, - 75.488, - 124.777, - 182.381, - 177.119, - 175.526, - 174.714, - 159.204, - 164.473, - 153.531, - 167.123, - 179.647, - 149.638, - 149.638, + 54.393, + 86.265, + 138.709, + 196.626, + 191.562, + 190.025, + 185.472, + 160.591, + 165.665, + 141.403, + 154.486, + 166.664, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22585,20 +22585,20 @@ 33.107, 33.107, 33.107, - 53.188, - 75.965, - 125.949, - 183.95, - 178.901, - 176.956, - 178.032, - 165.059, - 166.822, - 160.017, - 167.752, - 179.289, - 149.638, - 149.638, + 53.559, + 83.687, + 139.841, + 198.135, + 193.276, + 191.406, + 192.443, + 165.939, + 167.925, + 147.64, + 155.089, + 166.32, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -22609,20 +22609,20 @@ 31.876, 31.876, 31.876, - 52.314, - 57.994, - 92.226, - 135.884, - 178.811, - 176.302, - 176.527, - 163.945, - 165.561, - 154.457, - 165.017, - 179.124, - 131.925, - 96.497, + 53.211, + 68.304, + 106.872, + 150.064, + 193.189, + 190.775, + 190.411, + 161.543, + 166.711, + 142.293, + 152.462, + 166.162, + 118.899, + 83.472, 115.348, 79.921, 31.876, @@ -22633,20 +22633,20 @@ 31.876, 31.876, 31.876, - 14.593, - 58.836, - 56.768, - 99.088, - 100.848, - 137.201, - 134.387, - 130.555, - 124.528, - 114.138, - 84.541, - 60.475, - 13.026, - 13.026, + 15.483, + 65.045, + 70.101, + 113.317, + 115.009, + 151.327, + 148.621, + 132.389, + 125.401, + 101.669, + 71.86, + 47.494, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -22657,20 +22657,20 @@ 33.107, 33.107, 70.58, - 80.864, - 128.5, - 191.079, - 182.959, - 177.526, - 175.503, - 174.544, - 159.509, - 164.942, - 153.971, - 164.749, - 130.727, - 149.638, - 131.925, + 81.952, + 139.147, + 204.994, + 197.179, + 191.951, + 190.001, + 185.178, + 160.882, + 166.113, + 141.824, + 152.202, + 117.772, + 136.613, + 118.899, 60.908, 33.107, 33.107, @@ -22681,20 +22681,20 @@ 33.107, 33.107, 71.114, - 81.185, - 128.734, - 191.539, - 183.468, - 178.227, - 175.646, - 174.608, - 159.485, - 164.914, - 153.843, - 164.545, - 130.613, - 149.638, - 131.925, + 82.359, + 139.256, + 205.441, + 197.67, + 192.625, + 190.141, + 185.279, + 160.858, + 166.086, + 141.7, + 152.005, + 117.662, + 136.613, + 118.899, 60.908, 33.107, 33.107, @@ -22705,20 +22705,20 @@ 33.107, 33.107, 71.056, - 81.088, - 128.523, - 191.235, - 183.829, - 179.249, - 176.969, - 175.483, - 160.572, - 165.465, - 154.189, - 164.684, - 130.601, - 149.638, - 131.925, + 82.479, + 139.428, + 205.145, + 198.016, + 193.609, + 191.415, + 185.527, + 161.904, + 166.616, + 142.033, + 152.139, + 117.651, + 136.613, + 118.899, 60.908, 33.107, 33.107, @@ -22729,20 +22729,20 @@ 33.107, 33.107, 71.766, - 78.207, - 128.911, - 190.908, - 183.006, - 177.617, - 175.494, - 174.009, - 159.595, - 165.207, - 154.212, - 164.749, - 130.614, - 149.638, - 131.925, + 79.685, + 139.83, + 204.831, + 197.222, + 192.036, + 189.993, + 184.006, + 160.963, + 166.366, + 142.055, + 152.2, + 117.663, + 136.613, + 118.899, 60.908, 33.107, 33.107, @@ -22753,20 +22753,20 @@ 33.107, 33.107, 71.75, - 78.142, - 128.856, - 192.139, - 185.293, - 180.515, - 178.719, - 176.959, - 161.154, - 165.818, - 154.243, - 164.533, - 130.515, - 149.638, - 131.925, + 79.565, + 139.187, + 206.014, + 199.425, + 194.827, + 193.099, + 187.485, + 162.463, + 166.954, + 142.084, + 151.992, + 117.568, + 136.613, + 118.899, 60.908, 33.107, 33.107, @@ -22777,20 +22777,20 @@ 31.876, 31.876, 69.962, - 60.069, - 93.013, - 142.018, - 182.352, - 176.96, - 175.327, - 172.885, - 158.52, - 163.866, - 155.69, - 167.888, - 113.192, - 96.497, - 96.497, + 61.823, + 104.466, + 155.962, + 196.592, + 191.402, + 189.826, + 182.111, + 159.927, + 165.075, + 143.475, + 155.216, + 100.228, + 83.472, + 83.472, 79.921, 31.876, 31.876, @@ -22801,20 +22801,20 @@ 31.876, 31.876, 31.876, - 10.942, - 57.787, - 52.992, - 97.994, - 92.857, - 127.087, - 124.365, - 110.979, - 116.219, - 105.22, - 80.365, - 59.479, - 13.026, - 13.026, + 12.806, + 69.486, + 66.959, + 112.26, + 107.316, + 141.585, + 133.251, + 112.36, + 117.406, + 93.09, + 67.842, + 46.538, + -0.0, + -0.0, 31.876, 31.876, 31.876, @@ -22825,20 +22825,20 @@ 33.107, 33.107, 71.432, - 77.791, - 128.421, - 189.709, - 181.956, - 176.844, - 175.351, - 172.518, - 159.772, - 165.32, - 154.074, - 164.346, - 130.363, - 149.638, - 131.925, + 79.719, + 140.167, + 203.672, + 196.209, + 191.29, + 189.849, + 181.298, + 161.131, + 166.474, + 141.92, + 151.81, + 117.42, + 136.613, + 118.899, 60.908, 33.107, 33.107, @@ -22849,20 +22849,20 @@ 33.107, 33.107, 71.716, - 78.228, - 129.652, - 193.788, - 186.036, - 182.849, - 184.426, - 184.74, - 177.93, - 175.014, - 154.589, - 164.763, - 126.999, - 149.638, - 131.925, + 79.048, + 136.039, + 205.675, + 200.138, + 197.071, + 198.588, + 198.891, + 181.127, + 175.798, + 142.414, + 152.211, + 114.054, + 136.613, + 118.899, 60.908, 33.107, 33.107, @@ -22873,20 +22873,20 @@ 33.107, 33.107, 71.388, - 77.793, - 128.843, - 191.923, - 184.603, - 180.019, - 177.575, - 175.116, - 160.574, - 165.781, - 155.128, - 165.727, - 127.608, - 150.392, - 132.825, + 79.734, + 139.762, + 205.814, + 198.774, + 194.368, + 192.018, + 184.62, + 161.901, + 166.916, + 142.946, + 153.159, + 114.658, + 137.367, + 119.8, 60.908, 33.107, 33.107, @@ -22897,20 +22897,20 @@ 34.179, 34.375, 69.002, - 78.923, - 129.46, - 192.64, - 185.167, - 181.314, - 179.269, - 176.77, - 161.348, - 165.911, - 154.637, - 164.968, - 127.011, - 149.638, - 131.925, + 80.844, + 139.985, + 206.509, + 199.301, + 195.593, + 193.626, + 186.612, + 162.646, + 167.041, + 142.459, + 152.406, + 114.065, + 136.613, + 118.899, 60.908, 33.107, 33.107, @@ -22921,20 +22921,20 @@ 33.107, 33.107, 68.216, - 77.922, - 128.656, - 193.237, - 192.231, - 181.507, - 183.77, - 184.563, - 170.947, - 170.922, - 155.497, - 168.63, - 127.501, - 149.638, - 131.958, + 80.007, + 139.618, + 207.755, + 206.098, + 195.779, + 197.955, + 194.798, + 169.912, + 171.861, + 143.287, + 155.927, + 114.534, + 136.613, + 118.932, 60.908, 33.107, 33.107, @@ -22945,20 +22945,20 @@ 31.876, 31.876, 66.844, - 60.139, - 93.352, - 145.084, - 188.639, - 179.53, - 177.52, - 177.977, - 165.113, - 175.391, - 158.145, - 168.206, - 109.365, - 96.497, - 96.497, + 62.159, + 103.927, + 159.127, + 202.639, + 193.872, + 191.939, + 190.269, + 163.411, + 176.159, + 145.834, + 155.519, + 96.415, + 83.472, + 83.472, 79.955, 31.876, 31.876, @@ -22969,20 +22969,20 @@ 31.876, 31.876, 28.45, - 10.823, - 58.285, - 55.557, - 101.313, - 95.545, - 128.334, - 126.278, - 116.933, - 118.05, - 106.762, - 81.534, - 56.141, - 13.026, - 13.026, + 12.926, + 68.974, + 69.424, + 115.453, + 109.9, + 142.789, + 135.859, + 118.088, + 119.174, + 94.58, + 68.963, + 43.193, + -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -22993,20 +22993,20 @@ 33.107, 33.107, 67.626, - 77.291, - 128.031, - 190.257, - 182.69, - 181.376, - 182.365, - 202.386, - 191.038, - 181.606, - 170.636, - 175.38, - 128.175, - 149.782, - 131.925, + 79.675, + 139.645, + 204.195, + 196.921, + 195.81, + 196.863, + 209.073, + 192.447, + 182.425, + 158.123, + 162.537, + 115.232, + 136.756, + 118.899, 60.908, 33.107, 33.107, @@ -23017,20 +23017,20 @@ 33.107, 33.107, 67.543, - 77.287, - 128.209, - 190.389, - 182.866, - 178.345, - 176.273, - 172.614, - 159.879, - 165.127, - 154.254, - 171.914, - 126.846, - 149.638, - 131.925, + 79.673, + 139.869, + 204.323, + 197.082, + 192.73, + 190.737, + 181.019, + 161.229, + 166.283, + 142.087, + 159.084, + 113.905, + 136.613, + 118.899, 60.908, 33.107, 33.107, @@ -23041,20 +23041,20 @@ 33.107, 33.107, 67.544, - 77.286, - 128.132, - 191.617, - 184.724, - 182.452, - 196.922, - 196.86, - 183.346, - 184.913, - 164.364, - 168.788, - 128.052, - 149.733, - 131.925, + 79.724, + 139.3, + 205.505, + 198.871, + 196.76, + 211.124, + 205.408, + 184.418, + 185.902, + 152.136, + 156.196, + 115.107, + 136.708, + 118.899, 60.908, 33.107, 33.107, @@ -23065,20 +23065,20 @@ 33.107, 33.107, 67.492, - 77.168, - 128.947, - 193.27, - 185.096, - 186.236, - 193.085, - 204.111, - 191.635, - 184.504, - 173.796, - 182.282, - 131.655, - 151.164, - 132.765, + 79.629, + 135.293, + 206.876, + 199.229, + 200.576, + 207.46, + 218.155, + 191.679, + 185.608, + 161.532, + 169.55, + 118.686, + 138.139, + 119.739, 60.908, 33.107, 33.107, @@ -23089,20 +23089,20 @@ 33.107, 33.107, 63.478, - 76.653, - 127.447, - 188.709, - 181.63, - 188.19, - 202.892, - 205.884, - 192.665, - 191.311, - 173.885, - 179.332, - 131.544, - 150.744, - 132.289, + 79.52, + 140.276, + 202.702, + 195.911, + 202.661, + 217.39, + 212.731, + 194.066, + 192.507, + 161.755, + 166.798, + 118.606, + 137.719, + 119.263, 60.908, 33.107, 33.107, @@ -23113,20 +23113,20 @@ 31.876, 31.876, 62.392, - 58.955, - 92.182, - 142.041, - 194.391, - 205.234, - 208.8, - 203.771, - 193.744, - 203.171, - 189.235, - 202.169, - 117.392, - 97.194, - 96.497, + 61.747, + 104.162, + 155.978, + 208.606, + 219.644, + 223.298, + 211.503, + 195.125, + 204.356, + 177.091, + 189.149, + 104.369, + 84.168, + 83.472, 79.921, 31.876, 31.876, @@ -23137,20 +23137,20 @@ 31.876, 31.876, 25.024, - 10.516, - 57.084, - 51.616, - 96.964, - 91.77, - 126.662, - 121.454, - 109.542, - 115.398, - 104.715, - 80.385, - 55.793, - 13.026, - 13.026, + 13.558, + 70.094, + 65.624, + 111.259, + 106.26, + 141.16, + 127.962, + 110.967, + 116.606, + 92.595, + 67.853, + 42.857, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -23161,20 +23161,20 @@ 33.107, 33.107, 64.441, - 77.293, - 128.018, - 189.346, - 181.928, - 177.344, - 175.506, - 171.265, - 166.635, - 165.484, - 154.269, - 164.575, - 126.7, - 146.212, - 131.925, + 80.345, + 140.716, + 203.316, + 196.175, + 191.763, + 189.995, + 178.025, + 167.727, + 166.623, + 142.099, + 152.022, + 113.762, + 133.186, + 118.899, 60.908, 33.107, 33.107, @@ -23185,20 +23185,20 @@ 33.107, 33.107, 64.438, - 77.252, - 128.096, - 192.732, - 190.623, - 181.57, - 179.042, - 176.919, - 161.762, - 166.38, - 155.05, - 165.043, - 126.714, - 146.212, - 131.925, + 80.256, + 139.934, + 209.017, + 204.546, + 195.833, + 193.401, + 181.929, + 163.038, + 167.486, + 142.85, + 152.471, + 113.776, + 133.186, + 118.899, 60.908, 33.107, 33.107, @@ -23209,20 +23209,20 @@ 33.107, 33.107, 64.356, - 77.149, - 127.93, - 193.273, - 188.662, - 178.803, - 176.217, - 176.155, - 161.064, - 165.18, - 154.011, - 164.592, - 126.595, - 146.212, - 131.925, + 80.258, + 139.978, + 206.585, + 202.657, + 193.167, + 190.678, + 184.933, + 161.262, + 166.329, + 141.85, + 152.037, + 113.661, + 133.186, + 118.899, 60.908, 33.107, 33.107, @@ -23233,20 +23233,20 @@ 33.107, 33.107, 64.303, - 77.058, - 127.842, - 188.887, - 181.082, - 176.415, - 175.018, - 169.772, - 158.293, - 164.006, - 163.048, - 164.522, - 126.497, - 146.212, - 131.925, + 80.336, + 140.588, + 202.871, + 195.358, + 190.866, + 189.516, + 176.306, + 159.697, + 165.198, + 150.543, + 151.969, + 113.565, + 133.186, + 118.899, 60.908, 33.107, 33.107, @@ -23257,20 +23257,20 @@ 33.107, 33.107, 60.61, - 76.843, - 127.593, - 188.723, - 181.082, - 175.873, - 174.987, - 169.487, - 158.884, - 164.48, - 153.755, - 164.515, - 126.476, - 146.212, - 131.925, + 80.287, + 140.487, + 202.712, + 195.357, + 190.344, + 189.486, + 175.721, + 160.265, + 165.654, + 141.601, + 151.961, + 113.545, + 133.186, + 118.899, 60.908, 33.107, 33.107, @@ -23281,20 +23281,20 @@ 31.876, 31.876, 59.181, - 58.972, - 92.055, - 140.856, - 181.849, - 177.567, - 175.917, - 171.022, - 160.84, - 165.984, - 154.649, - 164.939, - 109.042, - 93.143, - 96.497, + 62.485, + 104.999, + 154.831, + 196.096, + 191.975, + 190.388, + 177.087, + 162.149, + 167.106, + 142.476, + 152.382, + 96.11, + 80.117, + 83.472, 79.921, 31.876, 31.876, @@ -23305,20 +23305,20 @@ 31.876, 31.876, 21.597, - 10.617, - 56.683, - 53.812, - 102.293, - 109.883, - 151.207, - 145.845, - 133.651, - 139.507, - 127.107, - 90.313, - 57.169, - 9.599, - 13.026, + 13.217, + 68.973, + 67.732, + 116.473, + 124.241, + 165.654, + 153.403, + 134.964, + 140.619, + 114.904, + 77.741, + 44.233, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -23329,20 +23329,20 @@ 33.107, 33.107, 60.012, - 76.367, - 127.415, - 190.456, - 184.315, - 183.843, - 181.324, - 176.104, - 165.056, - 170.326, - 159.363, - 170.603, - 128.575, - 146.882, - 131.925, + 79.864, + 139.787, + 204.38, + 198.507, + 198.206, + 195.778, + 178.931, + 166.388, + 171.458, + 147.171, + 157.988, + 115.63, + 133.857, + 118.899, 60.908, 33.107, 33.107, @@ -23353,20 +23353,20 @@ 33.107, 33.107, 60.309, - 76.479, - 127.377, - 189.457, - 182.454, - 178.868, - 180.935, - 172.903, - 162.884, - 168.457, - 157.263, - 167.544, - 128.595, - 147.09, - 132.045, + 80.082, + 140.272, + 203.418, + 196.676, + 193.278, + 195.433, + 178.982, + 164.244, + 169.612, + 145.102, + 154.991, + 115.66, + 134.064, + 119.02, 60.908, 33.107, 33.107, @@ -23378,19 +23378,19 @@ 33.107, 60.172, 77.482, - 127.376, - 193.493, - 181.897, - 194.903, - 192.555, - 177.325, - 198.415, - 202.059, - 209.876, - 232.109, - 176.713, - 179.167, - 153.082, + 140.107, + 205.355, + 196.139, + 200.18, + 208.838, + 191.823, + 204.388, + 200.752, + 197.424, + 219.175, + 163.69, + 166.142, + 140.056, 60.908, 33.107, 33.107, @@ -23401,20 +23401,20 @@ 33.107, 33.107, 59.633, - 76.012, - 127.251, - 196.683, - 200.82, - 206.812, - 211.942, - 223.87, - 200.836, - 215.869, - 223.217, - 218.299, - 159.996, - 156.014, - 133.37, + 79.753, + 140.054, + 208.541, + 215.06, + 221.229, + 226.44, + 232.559, + 200.963, + 216.499, + 223.518, + 218.556, + 147.958, + 142.989, + 120.344, 60.908, 33.107, 33.107, @@ -23426,19 +23426,19 @@ 33.107, 59.969, 77.289, - 127.306, - 189.773, - 209.056, - 225.238, - 236.974, - 238.27, - 232.133, - 226.393, - 193.518, - 194.94, - 141.586, - 148.426, - 132.723, + 139.792, + 203.736, + 214.852, + 225.934, + 239.273, + 239.346, + 236.38, + 230.577, + 180.844, + 182.034, + 128.56, + 135.401, + 119.698, 60.908, 33.107, 33.107, @@ -23449,20 +23449,20 @@ 31.876, 31.876, 55.532, - 59.004, - 91.623, - 139.721, - 180.568, - 176.394, - 175.659, - 170.055, - 159.959, - 165.639, - 154.548, - 165.168, - 109.473, - 93.122, - 96.497, + 61.778, + 105.315, + 153.734, + 194.858, + 190.85, + 190.158, + 176.168, + 161.325, + 166.795, + 142.39, + 152.613, + 96.536, + 80.097, + 83.472, 79.921, 31.876, 31.876, @@ -23472,21 +23472,21 @@ 31.876, 31.876, 31.876, - 18.155, - 10.157, - 56.688, - 53.052, - 99.865, - 96.421, - 130.573, - 124.39, - 113.785, - 118.503, - 106.839, - 81.465, - 55.7, - 9.599, - 13.026, + 18.204, + 13.986, + 69.53, + 66.996, + 114.048, + 110.735, + 144.937, + 130.134, + 115.057, + 119.599, + 94.643, + 68.887, + 42.764, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -23496,21 +23496,21 @@ 33.107, 33.107, 33.107, - 56.733, - 76.2, - 127.232, - 190.26, - 183.821, - 181.673, - 186.831, - 184.149, - 173.837, - 179.932, - 168.353, - 178.19, - 135.314, - 144.28, - 132.714, + 56.799, + 79.986, + 139.892, + 204.188, + 197.991, + 195.996, + 201.213, + 186.256, + 175.075, + 180.997, + 156.131, + 165.604, + 122.376, + 131.255, + 119.688, 60.908, 33.107, 33.107, @@ -23520,21 +23520,21 @@ 33.107, 33.107, 33.107, - 56.701, - 76.219, - 127.273, - 190.746, - 184.794, - 181.258, - 179.477, - 173.422, - 162.195, - 166.997, - 155.382, - 165.206, - 126.734, - 142.786, - 131.925, + 56.784, + 79.932, + 139.861, + 204.656, + 198.929, + 195.528, + 193.815, + 179.468, + 163.449, + 168.072, + 143.163, + 152.621, + 113.79, + 129.76, + 118.899, 60.908, 33.107, 33.107, @@ -23544,21 +23544,21 @@ 33.107, 33.107, 33.107, - 56.822, - 76.647, - 127.381, - 190.496, - 189.377, - 185.764, - 178.144, - 173.528, - 162.288, - 167.253, - 155.618, - 167.771, - 126.719, - 142.788, - 131.925, + 56.989, + 79.821, + 139.879, + 204.414, + 203.34, + 199.863, + 192.528, + 180.108, + 163.538, + 168.319, + 143.39, + 155.092, + 113.776, + 129.762, + 118.899, 60.908, 33.107, 33.107, @@ -23568,21 +23568,21 @@ 33.107, 33.107, 33.107, - 56.839, - 76.273, - 127.23, - 190.197, - 184.055, - 180.622, - 180.918, - 178.033, - 168.226, - 172.761, - 160.348, - 169.42, - 128.073, - 143.51, - 131.925, + 56.986, + 80.059, + 139.926, + 204.126, + 198.214, + 194.917, + 195.262, + 183.791, + 169.386, + 173.753, + 148.071, + 156.798, + 115.132, + 130.484, + 118.899, 60.908, 33.107, 33.107, @@ -23592,21 +23592,21 @@ 33.107, 33.107, 33.107, - 56.605, - 76.234, - 127.496, - 191.31, - 184.797, - 180.087, - 178.774, - 174.966, - 164.536, - 169.666, - 156.962, - 165.885, - 126.823, - 142.786, - 131.925, + 56.729, + 80.014, + 139.364, + 205.198, + 198.93, + 194.396, + 193.134, + 181.558, + 165.703, + 170.643, + 144.684, + 153.273, + 113.875, + 129.76, + 118.899, 60.908, 33.107, 33.107, @@ -23616,21 +23616,21 @@ 31.876, 31.876, 31.876, - 55.721, - 58.643, - 92.082, - 142.758, - 184.975, - 181.382, - 180.106, - 174.859, - 164.121, - 168.571, - 156.446, - 165.687, - 109.039, - 89.645, - 96.541, + 55.868, + 62.458, + 104.586, + 156.658, + 199.1, + 195.644, + 194.418, + 180.768, + 165.302, + 169.587, + 144.186, + 153.082, + 96.093, + 76.619, + 83.516, 80.169, 31.876, 31.876, @@ -23640,21 +23640,21 @@ 31.876, 31.876, 31.876, - 14.707, - 10.032, - 57.614, - 55.291, - 101.765, - 97.496, - 130.723, - 125.329, - 114.551, - 119.313, - 107.828, - 81.837, - 55.794, - 6.173, - 13.026, + 14.864, + 13.859, + 69.907, + 69.172, + 115.883, + 111.785, + 145.086, + 131.479, + 115.787, + 120.366, + 95.581, + 69.238, + 42.852, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -23664,21 +23664,21 @@ 33.107, 33.107, 33.107, - 54.816, - 77.234, - 128.071, - 190.974, - 184.554, - 180.22, - 178.132, - 171.744, - 161.315, - 166.514, - 155.011, - 164.907, - 126.627, - 143.143, - 132.389, + 55.009, + 81.346, + 140.882, + 204.904, + 198.72, + 194.547, + 192.536, + 169.499, + 162.597, + 167.603, + 142.802, + 152.329, + 113.689, + 130.117, + 119.363, 60.908, 33.107, 33.107, @@ -23688,21 +23688,21 @@ 33.107, 33.107, 33.107, - 54.83, - 77.816, - 128.022, - 191.611, - 183.778, - 185.034, - 192.976, - 192.461, - 175.923, - 188.487, - 170.314, - 172.891, - 127.932, - 142.786, - 131.925, + 55.09, + 80.493, + 140.613, + 205.498, + 197.947, + 199.157, + 207.233, + 199.895, + 174.976, + 188.762, + 157.538, + 160.023, + 114.947, + 129.76, + 118.899, 60.908, 33.107, 33.107, @@ -23713,20 +23713,20 @@ 33.107, 33.107, 53.96, - 77.012, - 128.358, - 193.413, - 192.961, - 194.584, - 192.2, - 186.45, - 189.888, - 185.669, - 161.343, - 168.32, - 126.653, - 142.786, - 131.925, + 80.094, + 137.518, + 205.462, + 207.34, + 201.252, + 206.758, + 200.522, + 197.1, + 182.263, + 148.898, + 155.618, + 113.709, + 129.76, + 118.899, 60.908, 33.107, 33.107, @@ -23736,21 +23736,21 @@ 33.107, 33.107, 33.107, - 53.489, - 76.255, - 127.375, - 189.916, - 183.08, - 178.665, - 176.595, - 170.519, - 179.071, - 174.422, - 168.407, - 172.234, - 128.215, - 142.786, - 131.925, + 53.751, + 80.278, + 140.245, + 203.854, + 197.272, + 193.023, + 191.031, + 175.898, + 179.69, + 175.215, + 155.702, + 159.389, + 115.22, + 129.76, + 118.899, 60.908, 33.107, 33.107, @@ -23760,21 +23760,21 @@ 33.107, 33.107, 33.107, - 53.525, - 76.134, - 127.152, - 189.354, - 182.881, - 178.657, - 177.052, - 170.949, - 162.284, - 167.559, - 155.763, - 165.536, - 126.442, - 142.786, - 131.925, + 53.856, + 80.401, + 140.434, + 203.31, + 197.08, + 193.015, + 191.472, + 175.594, + 163.53, + 168.609, + 143.525, + 152.933, + 113.506, + 129.76, + 118.899, 60.908, 33.107, 33.107, @@ -23784,21 +23784,21 @@ 31.876, 31.876, 31.876, - 52.093, - 58.398, - 91.843, - 141.751, - 183.302, - 178.885, - 177.697, - 172.349, - 163.587, - 168.778, - 156.583, - 165.68, - 109.125, - 90.06, - 96.92, + 52.452, + 62.688, + 104.693, + 155.684, + 197.485, + 193.234, + 192.093, + 177.32, + 164.786, + 169.784, + 144.316, + 153.072, + 96.185, + 77.034, + 83.895, 80.478, 31.876, 31.876, @@ -23808,21 +23808,21 @@ 31.876, 31.876, 31.876, - 14.63, - 9.871, - 57.38, - 54.151, - 100.644, - 96.763, - 131.268, - 125.772, - 116.207, - 120.776, - 108.534, - 82.35, - 55.55, - 2.747, - 13.026, + 15.041, + 14.191, + 70.113, + 68.069, + 114.798, + 111.058, + 145.598, + 130.718, + 117.375, + 121.774, + 96.259, + 69.73, + 42.615, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -23832,21 +23832,21 @@ 33.107, 33.107, 33.107, - 53.515, - 76.452, - 127.782, - 191.898, - 185.556, - 181.25, - 179.115, - 172.903, - 162.834, - 167.97, - 156.43, - 165.324, - 126.573, - 139.486, - 132.128, + 53.933, + 80.691, + 140.184, + 205.773, + 199.664, + 195.519, + 193.462, + 166.849, + 164.057, + 169.003, + 144.166, + 152.727, + 113.63, + 126.46, + 119.102, 60.908, 33.107, 33.107, @@ -23856,21 +23856,21 @@ 33.107, 33.107, 33.107, - 50.449, - 76.358, - 127.296, - 189.989, - 183.781, - 179.938, - 178.923, - 176.347, - 170.613, - 179.57, - 169.09, - 178.066, - 132.282, - 139.75, - 131.925, + 50.859, + 80.545, + 140.288, + 203.92, + 197.945, + 194.248, + 193.274, + 181.18, + 171.766, + 180.581, + 156.831, + 165.455, + 119.338, + 126.725, + 118.899, 60.908, 33.107, 33.107, @@ -23880,21 +23880,21 @@ 33.107, 33.107, 33.107, - 49.97, - 76.051, - 127.135, - 190.681, - 184.813, - 181.142, - 180.121, - 174.858, - 166.337, - 173.305, - 160.95, - 170.117, - 127.035, - 139.393, - 131.925, + 50.43, + 80.222, + 139.762, + 204.587, + 198.94, + 195.408, + 194.428, + 179.977, + 167.493, + 174.309, + 148.681, + 157.496, + 114.095, + 126.368, + 118.899, 60.908, 33.107, 33.107, @@ -23904,21 +23904,21 @@ 33.107, 33.107, 33.107, - 49.799, - 76.018, - 127.155, - 191.155, - 185.287, - 181.464, - 180.325, - 175.115, - 165.317, - 169.654, - 157.393, - 166.321, - 126.481, - 139.359, - 131.925, + 50.231, + 80.052, + 139.465, + 205.044, + 199.395, + 195.718, + 194.623, + 180.7, + 166.45, + 170.625, + 145.093, + 153.687, + 113.542, + 126.334, + 118.899, 60.908, 33.107, 33.107, @@ -23928,21 +23928,21 @@ 33.107, 33.107, 33.107, - 49.676, - 75.999, - 127.308, - 192.014, - 186.829, - 182.507, - 180.532, - 175.218, - 164.234, - 168.817, - 156.863, - 166.057, - 126.419, - 139.345, - 131.925, + 50.174, + 80.108, + 139.266, + 206.27, + 200.883, + 196.724, + 194.822, + 180.611, + 165.404, + 169.818, + 144.582, + 153.432, + 113.482, + 126.32, + 118.899, 60.908, 33.107, 33.107, @@ -23952,21 +23952,21 @@ 31.876, 31.876, 31.876, - 48.525, - 58.239, - 91.678, - 143.555, - 188.404, - 183.562, - 183.602, - 171.839, - 162.493, - 172.972, - 158.331, - 166.829, - 108.612, - 86.176, - 96.497, + 49.059, + 62.533, + 104.304, + 157.421, + 202.397, + 197.736, + 197.776, + 176.869, + 163.726, + 173.818, + 145.996, + 154.176, + 95.679, + 73.152, + 83.472, 79.942, 31.876, 31.876, @@ -23976,21 +23976,21 @@ 31.876, 31.876, 31.876, - 11.117, - 9.846, - 57.196, - 55.363, - 100.567, - 96.601, - 129.853, - 145.508, - 136.345, - 118.486, - 106.966, - 84.486, - 54.967, - 2.688, - 13.026, + 11.828, + 14.432, + 67.981, + 69.91, + 114.714, + 110.897, + 144.231, + 154.085, + 133.074, + 119.562, + 94.744, + 71.788, + 42.051, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -24000,21 +24000,21 @@ 33.107, 33.107, 33.107, - 50.182, - 76.252, - 127.259, - 193.815, - 182.951, - 178.607, - 176.586, - 181.412, - 180.87, - 192.662, - 158.682, - 168.067, - 126.329, - 139.26, - 131.925, + 51.024, + 81.064, + 140.325, + 203.79, + 197.144, + 192.963, + 191.018, + 178.034, + 180.536, + 192.787, + 146.333, + 155.371, + 113.393, + 126.238, + 118.899, 60.908, 33.107, 33.107, @@ -24024,21 +24024,21 @@ 33.107, 33.107, 33.107, - 49.998, - 75.807, - 126.858, - 189.365, - 192.035, - 179.034, - 177.616, - 171.143, - 172.657, - 173.122, - 156.424, - 165.811, - 126.209, - 139.261, - 131.925, + 50.653, + 80.373, + 140.222, + 203.316, + 206.391, + 193.374, + 192.01, + 174.578, + 173.513, + 173.962, + 144.157, + 153.194, + 113.279, + 126.239, + 118.899, 60.908, 33.107, 33.107, @@ -24048,21 +24048,21 @@ 33.107, 33.107, 33.107, - 49.874, - 75.946, - 127.164, - 191.598, - 185.512, - 181.381, - 179.299, - 172.976, - 164.005, - 171.26, - 159.412, - 168.554, - 128.332, - 139.285, - 131.925, + 50.589, + 80.39, + 139.372, + 205.469, + 199.612, + 195.636, + 193.633, + 178.05, + 165.207, + 172.27, + 147.133, + 155.93, + 115.413, + 126.262, + 118.899, 60.908, 33.107, 33.107, @@ -24072,21 +24072,21 @@ 33.107, 33.107, 33.107, - 49.81, - 75.943, - 127.147, - 191.045, - 184.582, - 180.114, - 182.108, - 181.177, - 173.986, - 179.291, - 167.901, - 177.025, - 132.355, - 140.075, - 131.941, + 50.711, + 80.698, + 139.524, + 204.935, + 198.715, + 194.414, + 196.486, + 185.659, + 175.217, + 180.338, + 155.65, + 164.414, + 119.425, + 127.055, + 118.915, 60.908, 33.107, 33.107, @@ -24096,21 +24096,21 @@ 33.107, 33.107, 33.107, - 49.601, - 75.728, - 126.967, - 190.785, - 184.404, - 181.861, - 190.227, - 187.988, - 179.415, - 186.106, - 174.159, - 183.0, - 140.368, - 142.307, - 132.536, + 50.437, + 80.36, + 139.594, + 204.685, + 198.543, + 196.158, + 204.598, + 192.402, + 180.647, + 187.154, + 161.916, + 170.396, + 127.431, + 129.288, + 119.511, 60.908, 33.107, 33.107, @@ -24120,21 +24120,21 @@ 31.876, 31.876, 28.45, - 48.201, - 57.952, - 91.44, - 141.937, - 183.94, - 179.258, - 177.388, - 182.292, - 183.638, - 190.601, - 178.886, - 188.114, - 123.075, - 84.86, - 96.734, + 48.923, + 62.504, + 104.339, + 155.859, + 198.094, + 193.588, + 191.79, + 186.656, + 184.889, + 191.661, + 166.652, + 175.513, + 110.137, + 71.839, + 83.708, 79.921, 31.876, 31.876, @@ -24144,21 +24144,21 @@ 31.876, 31.876, 28.45, - 11.061, - 9.45, - 55.797, - 51.46, - 98.361, - 94.627, - 128.476, - 120.521, - 113.679, - 118.844, - 107.179, - 81.577, - 55.293, + 11.767, + 14.209, + 69.855, + 65.449, + 112.585, + 108.993, + 142.903, + 123.61, + 114.935, + 119.915, + 94.958, + 68.985, + 42.361, 0.0, - 13.026, + -0.0, 31.876, 31.876, 31.876, @@ -24168,21 +24168,21 @@ 33.107, 33.107, 29.681, - 49.506, - 75.65, - 126.756, - 189.473, - 183.283, - 179.219, - 177.392, - 170.326, - 167.493, - 172.979, - 161.631, - 171.544, - 132.982, - 136.494, - 131.925, + 50.363, + 80.365, + 140.115, + 203.419, + 197.461, + 193.55, + 189.293, + 161.978, + 168.745, + 174.046, + 149.402, + 158.95, + 120.057, + 123.476, + 118.899, 60.908, 33.107, 33.107, @@ -24192,21 +24192,21 @@ 33.107, 33.107, 29.681, - 49.379, - 75.64, - 126.803, - 189.61, - 183.014, - 178.741, - 176.908, - 173.825, + 50.415, + 80.493, + 139.922, + 203.55, + 197.2, + 193.088, 191.325, - 177.92, - 158.9, - 167.074, - 126.283, - 135.721, - 131.925, + 177.243, + 191.582, + 178.715, + 146.668, + 154.476, + 113.362, + 122.704, + 118.899, 60.908, 33.107, 33.107, @@ -24216,21 +24216,21 @@ 33.107, 33.107, 29.681, - 49.281, - 75.502, - 126.874, - 190.35, - 184.043, - 180.037, - 178.108, - 171.006, - 164.227, - 170.157, - 162.404, - 168.289, - 126.247, - 135.647, - 131.925, + 50.255, + 80.174, + 139.64, + 204.264, + 198.193, + 194.337, + 192.481, + 175.117, + 165.466, + 171.207, + 150.016, + 155.639, + 113.328, + 122.632, + 118.899, 60.908, 33.107, 33.107, @@ -24240,21 +24240,21 @@ 33.107, 33.107, 29.681, - 49.365, - 75.624, - 126.857, - 190.016, - 183.344, - 178.879, - 176.889, - 169.709, - 161.474, - 168.086, - 157.129, - 166.968, - 126.122, - 135.732, - 131.925, + 50.288, + 80.24, + 139.59, + 203.94, + 197.518, + 193.221, + 191.306, + 174.003, + 162.74, + 169.166, + 144.91, + 154.377, + 113.19, + 122.715, + 118.899, 60.908, 33.107, 33.107, @@ -24264,21 +24264,21 @@ 33.107, 33.107, 29.681, - 49.537, - 75.638, - 126.802, - 190.059, - 184.306, - 181.07, - 179.848, - 173.043, - 163.968, - 168.605, - 156.399, - 165.57, - 126.351, - 135.737, - 131.925, + 50.278, + 80.092, + 139.822, + 203.982, + 198.446, + 195.334, + 194.16, + 177.274, + 165.146, + 169.611, + 144.131, + 152.958, + 113.41, + 122.72, + 118.899, 60.908, 33.107, 33.107, @@ -24288,21 +24288,21 @@ 31.876, 31.876, 28.45, - 48.62, - 58.125, - 91.586, - 141.818, - 184.203, - 180.452, - 179.152, - 172.62, - 164.275, - 169.335, - 156.831, - 165.62, - 108.581, - 82.59, - 96.505, + 49.348, + 62.56, + 104.639, + 155.742, + 198.35, + 194.739, + 193.488, + 176.864, + 165.442, + 170.314, + 144.548, + 153.005, + 95.642, + 69.573, + 83.479, 80.138, 31.876, 31.876, @@ -24312,21 +24312,21 @@ 31.876, 31.876, 28.45, - 11.035, - 9.582, - 56.78, - 54.374, - 101.332, - 97.956, - 132.386, - 126.663, - 117.813, - 121.623, - 108.658, - 82.193, - 55.379, + 11.78, + 13.901, + 69.383, + 68.267, + 115.448, + 112.199, + 146.669, + 131.37, + 118.916, + 122.583, + 96.372, + 69.57, + 42.443, 0.0, - 13.026, + -0.0, 31.876, 31.876, 31.876, @@ -24336,21 +24336,21 @@ 33.107, 33.107, 29.681, - 50.178, - 76.041, - 127.215, - 191.801, - 185.928, - 181.796, - 179.834, - 172.85, - 163.7, - 168.471, - 156.44, - 165.666, - 126.332, - 135.729, - 131.925, + 50.912, + 80.26, + 139.341, + 205.82, + 200.009, + 196.032, + 194.143, + 163.531, + 164.884, + 169.478, + 144.168, + 153.049, + 113.391, + 122.713, + 118.899, 60.908, 33.107, 33.107, @@ -24360,21 +24360,21 @@ 33.107, 33.107, 29.681, - 49.972, - 75.841, - 127.008, - 191.599, - 186.101, - 182.657, - 184.154, - 183.549, - 176.867, - 181.567, - 168.911, - 177.48, - 136.886, - 137.907, - 131.96, + 50.653, + 80.068, + 139.414, + 205.466, + 200.176, + 196.866, + 198.413, + 188.595, + 177.99, + 182.531, + 156.618, + 164.853, + 123.951, + 124.891, + 118.935, 60.908, 33.107, 33.107, @@ -24384,21 +24384,21 @@ 33.107, 33.107, 29.681, - 49.408, - 75.618, - 127.031, - 191.794, - 186.299, - 183.619, - 189.957, - 188.326, - 177.942, - 182.696, - 170.4, - 179.237, - 137.909, - 137.382, - 132.081, + 50.211, + 79.788, + 138.94, + 205.928, + 200.365, + 197.843, + 204.251, + 193.547, + 179.114, + 183.696, + 158.127, + 166.622, + 124.968, + 124.367, + 119.055, 60.908, 33.107, 33.107, @@ -24408,21 +24408,21 @@ 33.107, 33.107, 29.681, - 49.414, - 75.539, - 127.764, - 190.814, - 184.527, - 187.721, - 178.634, - 175.468, - 163.055, - 170.72, - 161.857, - 171.077, - 129.286, - 135.802, - 131.925, + 50.118, + 79.768, + 137.309, + 204.707, + 198.656, + 201.737, + 192.986, + 183.312, + 164.261, + 171.751, + 149.601, + 158.47, + 116.349, + 122.789, + 118.899, 60.908, 33.107, 33.107, @@ -24432,21 +24432,21 @@ 33.107, 33.107, 29.681, - 49.424, - 75.519, - 126.737, - 190.073, - 183.783, - 179.622, - 177.801, - 170.814, - 162.04, - 167.039, - 155.315, - 164.973, - 126.139, - 135.625, - 131.925, + 50.322, + 79.961, + 139.58, + 203.993, + 197.938, + 193.933, + 192.182, + 175.151, + 163.282, + 168.097, + 143.083, + 152.378, + 113.203, + 122.612, + 118.899, 60.908, 33.107, 33.107, @@ -24456,21 +24456,21 @@ 31.876, 31.876, 28.45, - 48.468, - 58.025, - 91.544, - 141.973, - 183.762, - 179.447, - 177.754, - 170.432, - 162.226, - 167.258, - 155.461, - 165.081, - 108.184, - 78.984, - 96.497, + 49.532, + 62.704, + 104.339, + 155.889, + 197.918, + 193.765, + 192.137, + 174.432, + 163.461, + 168.307, + 143.223, + 152.483, + 95.258, + 65.974, + 83.472, 79.921, 31.876, 31.876, @@ -24480,21 +24480,21 @@ 31.876, 31.876, 28.45, - 10.961, - 9.559, - 56.458, - 54.575, - 101.922, - 97.904, - 132.303, - 142.941, - 131.622, - 128.13, - 115.653, - 83.068, - 55.295, + 11.995, + 14.112, + 68.847, + 68.453, + 116.015, + 112.147, + 146.603, + 147.391, + 132.791, + 129.13, + 103.384, + 70.46, + 42.362, + 0.0, 0.0, - 13.026, 31.876, 31.876, 31.876, @@ -24504,21 +24504,21 @@ 31.876, 31.876, 25.024, - 10.99, - 9.568, - 56.055, - 54.897, - 120.0, - 119.278, - 149.317, - 139.944, - 137.242, - 141.914, - 129.085, - 99.239, - 64.959, + 11.865, + 13.863, + 68.25, + 68.763, + 134.079, + 133.501, + 160.11, + 133.953, + 138.376, + 142.885, + 116.793, + 86.615, + 52.031, 0.0, - 13.026, + -0.0, 31.876, 31.876, 31.876, @@ -24528,21 +24528,21 @@ 33.107, 33.107, 26.254, - 49.029, - 75.358, - 126.997, - 192.43, - 199.941, - 219.061, - 235.012, - 232.801, - 234.911, - 225.96, - 206.151, - 210.249, - 161.126, - 159.508, - 149.881, + 49.943, + 79.691, + 138.902, + 206.594, + 214.011, + 233.279, + 246.221, + 226.312, + 235.82, + 226.946, + 193.864, + 197.596, + 148.207, + 146.5, + 136.855, 60.908, 33.107, 33.107, @@ -24552,21 +24552,21 @@ 33.107, 33.107, 26.254, - 48.965, - 75.79, - 127.491, - 220.747, - 223.841, - 225.946, - 226.883, - 222.724, - 213.337, - 216.823, - 202.697, - 207.027, - 159.785, - 157.556, - 147.97, + 50.048, + 79.852, + 139.527, + 234.721, + 237.914, + 240.165, + 241.173, + 227.811, + 214.496, + 217.816, + 190.416, + 194.412, + 146.86, + 144.548, + 134.945, 60.908, 33.107, 33.107, @@ -24576,21 +24576,21 @@ 33.107, 33.107, 26.254, - 48.976, - 75.887, - 127.898, - 193.809, - 192.798, - 198.674, - 210.658, - 219.663, - 223.149, - 211.941, - 196.301, - 191.38, - 145.949, - 141.381, - 133.011, + 50.046, + 79.863, + 136.882, + 203.603, + 206.73, + 212.75, + 224.566, + 233.302, + 227.478, + 206.097, + 183.587, + 178.765, + 133.027, + 128.376, + 119.986, 60.908, 33.107, 33.107, @@ -24600,21 +24600,21 @@ 33.107, 33.107, 26.254, - 49.214, - 75.533, - 127.065, - 191.695, - 186.322, - 182.744, - 180.501, - 177.831, - 173.244, - 172.743, - 158.509, - 167.54, - 125.716, - 131.941, - 131.925, + 50.192, + 79.65, + 138.618, + 205.663, + 200.386, + 196.942, + 194.783, + 183.33, + 174.075, + 173.593, + 146.161, + 154.859, + 112.804, + 118.936, + 118.899, 60.908, 33.107, 33.107, @@ -24624,21 +24624,21 @@ 31.876, 31.876, 25.024, - 48.588, - 58.542, - 92.403, - 145.932, - 191.974, - 188.733, - 185.101, - 185.769, - 176.824, - 182.759, - 165.718, - 169.523, - 108.513, - 78.811, - 96.497, + 49.488, + 62.36, + 101.727, + 154.316, + 206.431, + 202.711, + 199.214, + 199.858, + 176.131, + 183.241, + 153.109, + 156.773, + 95.586, + 65.807, + 83.472, 79.921, 31.876, 31.876, @@ -24648,21 +24648,21 @@ 31.876, 31.876, 25.024, - 10.986, - 9.693, - 56.436, - 55.022, - 102.965, - 99.504, - 134.161, - 130.157, - 119.135, - 122.919, - 109.802, - 82.725, - 55.073, + 11.949, + 13.886, + 67.999, + 69.541, + 117.017, + 113.687, + 148.377, + 135.011, + 120.187, + 123.828, + 97.472, + 70.082, + 42.147, 0.0, - 13.026, + -0.0, 31.876, 31.876, 31.876, @@ -24672,21 +24672,21 @@ 33.107, 33.107, 26.254, - 49.39, - 75.678, - 127.084, - 191.837, - 186.834, - 182.882, - 180.986, - 170.911, - 164.555, - 169.085, - 156.795, - 165.511, - 125.874, - 131.948, - 131.925, + 50.288, + 79.675, + 138.624, + 206.4, + 200.878, + 197.075, + 193.372, + 163.489, + 165.705, + 170.067, + 144.507, + 152.896, + 112.948, + 118.945, + 118.899, 60.908, 33.107, 33.107, @@ -24696,21 +24696,21 @@ 33.107, 33.107, 26.254, - 49.561, - 76.64, - 128.592, - 194.935, - 194.672, - 187.991, - 191.769, - 180.592, - 182.651, - 182.559, - 156.187, - 165.214, - 125.295, - 131.856, - 131.925, + 50.326, + 79.136, + 135.258, + 199.982, + 200.874, + 201.996, + 205.638, + 194.871, + 196.853, + 183.494, + 143.922, + 152.611, + 112.392, + 118.855, + 118.899, 60.908, 33.107, 33.107, @@ -24720,21 +24720,21 @@ 33.107, 33.107, 26.254, - 49.628, - 75.722, - 126.95, - 191.021, - 184.726, - 180.542, - 178.561, - 172.358, - 162.837, - 168.42, - 156.495, - 165.803, - 125.791, - 131.839, - 131.925, + 50.634, + 79.885, + 139.063, + 204.904, + 198.845, + 194.818, + 192.912, + 177.532, + 164.058, + 169.458, + 144.25, + 153.208, + 112.872, + 118.84, + 118.899, 60.908, 33.107, 33.107, @@ -24744,21 +24744,21 @@ 33.107, 33.107, 26.254, - 49.327, - 75.392, - 126.583, - 189.548, - 182.836, - 178.537, - 177.492, - 174.43, - 169.165, - 175.704, - 163.934, - 173.235, - 133.998, - 132.959, - 131.967, + 50.251, + 79.706, + 139.585, + 203.484, + 197.023, + 192.886, + 191.915, + 178.754, + 170.435, + 176.786, + 151.724, + 160.665, + 121.077, + 119.959, + 118.941, 60.908, 33.107, 33.107, @@ -24768,21 +24768,21 @@ 33.107, 33.107, 26.254, - 49.427, - 75.429, - 126.669, - 189.075, - 182.525, - 178.414, - 177.141, - 171.924, - 161.826, - 166.84, - 155.01, - 164.52, - 125.729, - 131.937, - 131.925, + 50.263, + 79.744, + 139.843, + 203.027, + 196.722, + 192.766, + 191.543, + 176.08, + 163.075, + 167.903, + 142.786, + 151.939, + 112.805, + 118.935, + 118.899, 60.908, 33.107, 33.107, @@ -24792,21 +24792,21 @@ 31.876, 31.876, 25.024, - 48.126, - 57.719, - 91.293, - 142.398, - 184.883, - 181.387, - 180.006, - 174.196, - 166.459, - 172.33, - 159.585, - 167.862, - 108.123, - 78.71, - 96.497, + 48.938, + 61.846, + 103.725, + 156.296, + 198.997, + 195.634, + 194.307, + 179.215, + 167.602, + 173.296, + 147.296, + 155.258, + 95.196, + 65.711, + 83.472, 79.921, 31.876, 31.876, @@ -24816,21 +24816,21 @@ 31.876, 31.876, 25.024, - 10.961, - 9.512, - 56.243, - 54.685, - 102.012, - 98.582, - 132.799, - 127.282, - 116.907, - 120.988, - 108.332, - 81.497, - 54.867, + 11.84, + 13.514, + 68.295, + 68.553, + 116.098, + 112.799, + 147.064, + 132.69, + 118.038, + 121.966, + 96.054, + 68.895, + 41.945, + 0.0, 0.0, - 13.026, 31.876, 31.876, 31.876, @@ -24840,21 +24840,21 @@ 33.107, 33.107, 26.254, - 49.304, - 75.543, - 126.964, - 191.696, - 185.889, - 181.693, - 179.69, - 169.255, - 164.781, - 170.814, - 158.584, - 167.498, - 125.963, - 131.88, - 131.925, + 50.14, + 79.415, + 138.626, + 205.851, + 199.966, + 195.927, + 192.188, + 162.304, + 165.978, + 171.837, + 146.334, + 154.909, + 113.041, + 118.88, + 118.899, 60.908, 33.107, 33.107, @@ -24864,21 +24864,21 @@ 33.107, 33.107, 26.254, - 49.227, - 75.338, - 126.814, - 190.655, - 185.38, - 181.312, - 178.259, - 172.29, - 163.951, - 171.935, - 160.671, - 169.716, - 127.869, - 131.86, - 131.925, + 50.066, + 79.486, + 138.864, + 204.55, + 199.475, + 195.56, + 192.621, + 177.707, + 165.177, + 172.983, + 148.435, + 157.135, + 114.948, + 118.863, + 118.899, 60.908, 33.107, 33.107, @@ -24888,21 +24888,21 @@ 33.107, 33.107, 26.254, - 49.133, - 75.356, - 126.753, - 190.917, - 184.739, - 180.603, - 178.839, - 175.627, - 167.493, - 174.488, - 164.588, - 173.208, - 130.902, - 129.037, - 132.002, + 50.121, + 79.417, + 139.0, + 204.803, + 198.856, + 194.877, + 193.185, + 180.782, + 168.704, + 175.519, + 152.34, + 160.62, + 117.979, + 116.038, + 118.976, 60.908, 33.107, 33.107, @@ -24912,21 +24912,21 @@ 33.107, 33.107, 26.254, - 49.207, - 75.413, - 126.811, - 191.51, - 186.077, - 182.961, - 182.197, - 176.594, - 165.588, - 169.276, - 156.569, - 165.111, - 125.546, - 128.332, - 131.925, + 50.115, + 79.397, + 138.851, + 205.376, + 200.148, + 197.152, + 196.421, + 181.966, + 166.703, + 170.253, + 144.291, + 152.511, + 112.63, + 115.335, + 118.899, 60.908, 33.107, 33.107, @@ -24936,21 +24936,21 @@ 33.107, 33.107, 26.254, - 49.19, - 75.421, - 126.973, - 191.81, - 186.607, - 182.569, - 181.346, - 179.936, - 171.133, - 178.154, - 166.398, - 174.709, - 134.548, - 133.777, - 132.184, + 50.138, + 79.313, + 138.557, + 206.355, + 200.658, + 196.772, + 195.62, + 185.143, + 172.289, + 179.143, + 154.111, + 162.104, + 121.636, + 120.778, + 119.158, 60.908, 33.107, 33.107, @@ -24960,21 +24960,21 @@ 31.876, 31.876, 25.024, - 47.78, - 57.635, - 91.466, - 143.384, - 185.532, - 187.38, - 194.168, - 196.672, - 187.547, - 192.027, - 179.737, - 187.592, - 122.893, - 78.333, - 96.781, + 48.675, + 61.431, + 103.177, + 157.3, + 199.623, + 201.626, + 208.486, + 202.6, + 188.742, + 193.049, + 167.485, + 175.005, + 109.974, + 65.336, + 83.755, 79.921, 31.876, 31.876, @@ -24984,21 +24984,21 @@ 31.876, 31.876, 25.024, - 10.956, - 9.576, - 56.038, - 54.848, - 102.345, - 98.899, - 134.912, - 133.183, - 125.619, - 132.829, - 119.91, - 83.228, - 54.705, + 11.934, + 13.506, + 67.814, + 68.848, + 116.419, + 113.103, + 149.164, + 138.678, + 126.752, + 133.81, + 107.635, + 70.633, + 41.791, 0.0, - 13.026, + -0.0, 31.876, 31.876, 31.876, @@ -25008,21 +25008,21 @@ 33.107, 33.107, 26.254, - 49.167, - 75.405, - 126.896, - 191.641, - 186.249, - 183.131, - 183.818, - 171.378, - 169.408, - 173.283, - 160.439, - 168.715, - 126.0, - 128.685, - 131.925, + 50.112, + 79.278, + 138.646, + 205.672, + 200.313, + 197.315, + 191.871, + 168.656, + 170.531, + 174.259, + 148.16, + 156.117, + 113.089, + 115.69, + 118.899, 60.908, 33.107, 33.107, @@ -25032,21 +25032,21 @@ 33.107, 33.107, 26.254, - 49.257, - 75.496, - 127.01, - 191.812, - 187.645, - 187.539, - 186.7, - 189.208, - 181.191, - 185.92, - 172.755, - 180.595, - 139.713, - 133.842, - 132.513, + 50.386, + 79.562, + 138.445, + 206.404, + 201.684, + 201.722, + 200.956, + 194.154, + 182.333, + 186.89, + 160.471, + 167.993, + 126.801, + 120.846, + 119.487, 60.908, 33.107, 33.107, @@ -25056,21 +25056,21 @@ 33.107, 33.107, 26.254, - 49.209, - 75.494, - 127.004, - 191.773, - 186.91, - 183.762, - 188.434, - 189.121, - 178.657, - 182.782, - 169.667, - 177.65, - 137.395, - 132.139, - 132.23, + 50.153, + 79.352, + 138.357, + 206.325, + 200.95, + 197.94, + 202.669, + 194.543, + 179.788, + 183.754, + 157.383, + 165.047, + 124.48, + 119.141, + 119.204, 60.908, 33.107, 33.107, @@ -25080,21 +25080,21 @@ 33.107, 33.107, 26.254, - 49.222, - 75.453, - 126.949, - 191.703, - 186.262, - 185.676, - 192.633, - 188.716, - 180.081, - 186.301, - 173.381, - 181.061, - 138.425, - 130.994, - 132.333, + 50.143, + 79.202, + 138.469, + 206.001, + 200.325, + 199.888, + 206.917, + 194.415, + 181.245, + 187.299, + 161.115, + 168.47, + 125.509, + 117.997, + 119.307, 60.908, 33.107, 33.107, @@ -25104,21 +25104,21 @@ 33.107, 33.107, 26.254, - 48.96, - 75.402, - 126.991, - 191.779, - 186.776, - 186.638, - 193.997, - 197.722, - 189.59, - 195.868, - 182.167, - 189.672, - 145.76, - 138.776, - 133.115, + 49.79, + 78.979, + 138.342, + 206.337, + 200.822, + 200.832, + 208.263, + 203.546, + 190.745, + 196.86, + 169.897, + 177.08, + 132.845, + 125.779, + 120.09, 60.908, 33.107, 33.107, @@ -25128,21 +25128,21 @@ 31.876, 31.876, 25.024, - 47.737, - 57.696, - 91.593, - 143.605, - 187.985, - 207.899, - 213.515, - 207.168, - 195.751, - 201.889, - 191.198, - 198.088, - 126.483, - 78.795, - 96.92, + 48.535, + 61.245, + 102.846, + 158.326, + 202.02, + 222.053, + 227.753, + 212.96, + 196.895, + 202.875, + 178.905, + 185.48, + 113.568, + 65.796, + 83.894, 79.921, 31.876, 31.876, @@ -25152,21 +25152,21 @@ 31.876, 31.876, 25.024, - 11.027, - 9.886, - 56.638, - 55.478, - 103.514, - 99.688, - 133.648, - 133.403, - 124.143, - 129.116, - 117.106, - 87.108, - 54.88, + 11.899, + 13.41, + 66.526, + 71.734, + 117.545, + 113.863, + 147.88, + 138.815, + 125.138, + 130.0, + 104.74, + 74.441, + 41.973, + 0.0, 0.0, - 13.026, 31.876, 31.876, 31.876, @@ -25176,21 +25176,21 @@ 33.107, 33.107, 26.254, - 49.105, - 75.711, - 127.368, - 192.142, - 188.521, - 182.767, - 189.083, - 186.041, - 185.571, - 192.552, - 179.502, - 186.6, - 139.631, - 131.368, - 132.477, + 49.986, + 79.375, + 137.627, + 208.125, + 202.502, + 196.972, + 200.621, + 179.464, + 186.72, + 193.564, + 167.247, + 174.02, + 126.717, + 118.37, + 119.452, 60.908, 33.107, 33.107, @@ -25200,21 +25200,21 @@ 33.107, 33.107, 26.254, - 49.135, - 75.512, - 127.212, - 192.109, - 188.415, - 184.937, - 193.389, - 197.695, - 183.507, - 196.645, - 184.189, - 181.848, - 137.488, - 129.502, - 132.156, + 49.988, + 78.995, + 137.908, + 207.799, + 202.402, + 199.069, + 207.592, + 202.963, + 184.596, + 197.244, + 171.517, + 169.23, + 124.58, + 116.507, + 119.131, 60.908, 33.107, 33.107, @@ -25224,21 +25224,21 @@ 33.107, 33.107, 26.254, - 49.155, - 75.53, - 127.151, - 191.921, - 187.62, - 184.913, - 188.822, - 192.576, - 182.432, - 186.678, - 173.597, - 180.912, - 136.761, - 130.159, - 132.405, + 49.984, + 79.067, + 137.926, + 207.092, + 201.634, + 199.077, + 203.058, + 198.322, + 183.562, + 187.65, + 161.311, + 168.314, + 123.854, + 117.164, + 119.38, 60.908, 33.107, 33.107, @@ -25248,21 +25248,21 @@ 33.107, 33.107, 26.254, - 49.277, - 75.454, - 126.942, - 202.896, - 212.704, - 217.847, - 222.466, - 224.287, - 214.787, - 217.488, - 201.501, - 206.133, - 158.947, - 154.025, - 149.758, + 50.15, + 79.123, + 138.431, + 216.937, + 226.794, + 232.102, + 236.797, + 230.45, + 215.991, + 218.52, + 189.259, + 193.56, + 146.037, + 141.028, + 136.733, 60.908, 33.107, 33.107, @@ -25272,21 +25272,21 @@ 33.107, 33.107, 26.254, - 48.949, - 75.344, - 126.875, - 203.249, - 207.037, - 210.037, - 213.932, - 214.141, - 210.004, - 218.183, - 203.65, - 206.693, - 160.193, - 151.802, - 146.818, + 49.887, + 79.066, + 138.69, + 217.113, + 221.114, + 224.24, + 228.198, + 220.012, + 211.172, + 219.199, + 191.405, + 194.121, + 147.283, + 138.804, + 133.793, 60.908, 33.107, 33.107, @@ -25296,21 +25296,21 @@ 31.876, 31.876, 25.024, - 47.841, - 57.703, - 91.578, - 154.676, - 213.937, - 222.017, - 226.115, - 226.625, - 215.398, - 220.954, - 207.86, - 211.016, - 138.975, - 92.983, - 101.456, + 48.612, + 61.136, + 102.877, + 169.286, + 227.972, + 236.201, + 240.38, + 232.646, + 216.566, + 221.963, + 195.607, + 198.442, + 126.06, + 79.979, + 88.43, 80.07, 31.876, 31.876, @@ -25320,21 +25320,21 @@ 31.876, 31.876, 28.45, - 11.062, - 9.589, - 55.986, - 54.801, - 102.28, - 98.938, - 132.522, - 127.826, - 115.913, - 120.062, - 107.479, - 80.683, - 54.53, + 11.683, + 12.913, + 67.616, + 68.742, + 116.355, + 113.141, + 146.796, + 134.481, + 117.079, + 121.073, + 95.231, + 68.11, + 41.617, 0.0, - 13.026, + -0.0, 31.876, 31.876, 31.876, @@ -25344,21 +25344,21 @@ 33.107, 33.107, 29.681, - 49.213, - 75.383, - 126.813, - 191.42, - 185.408, - 181.565, - 179.616, - 167.634, - 167.477, - 176.973, - 166.938, - 175.429, - 136.227, - 138.732, - 135.513, + 49.832, + 78.732, + 138.504, + 205.287, + 199.502, + 195.804, + 189.79, + 163.996, + 168.674, + 178.006, + 154.706, + 162.865, + 123.314, + 125.728, + 122.487, 60.908, 33.107, 33.107, @@ -25368,21 +25368,21 @@ 33.107, 33.107, 29.681, - 49.155, - 75.375, - 126.854, - 191.636, - 193.114, - 202.53, - 204.751, - 204.799, - 196.295, - 203.913, - 190.716, - 197.294, - 152.424, - 146.338, - 141.339, + 49.752, + 78.756, + 138.469, + 205.712, + 207.167, + 216.706, + 218.989, + 211.258, + 197.428, + 204.897, + 178.451, + 184.712, + 139.507, + 133.332, + 128.314, 60.908, 33.107, 33.107, @@ -25392,21 +25392,21 @@ 31.876, 31.876, 28.45, - 11.081, - 9.66, - 56.142, - 55.108, - 104.632, - 100.991, - 140.432, - 131.157, - 118.606, - 122.513, - 109.562, - 81.563, - 54.348, + 11.671, + 12.984, + 67.339, + 70.059, + 118.625, + 115.121, + 154.416, + 137.132, + 119.674, + 123.436, + 97.24, + 68.961, + 41.447, + 0.0, 0.0, - 13.026, 31.876, 31.876, 31.876, @@ -25416,21 +25416,21 @@ 33.107, 33.107, 29.681, - 49.018, - 75.612, - 127.278, - 192.092, - 188.515, - 184.735, - 185.327, - 180.271, - 180.971, - 184.177, - 171.231, - 178.914, - 138.084, - 136.889, - 133.01, + 49.817, + 79.025, + 137.66, + 207.859, + 202.497, + 198.86, + 197.232, + 173.69, + 181.94, + 185.128, + 158.933, + 166.309, + 125.181, + 123.893, + 119.984, 60.908, 33.107, 33.107, @@ -25440,21 +25440,21 @@ 33.107, 33.107, 29.681, - 48.994, - 75.701, - 127.34, - 192.135, - 188.618, - 184.713, - 182.661, - 185.629, - 174.655, - 177.635, - 165.257, - 173.137, - 132.619, - 135.312, - 133.352, + 50.006, + 79.571, + 137.568, + 208.049, + 202.597, + 198.839, + 196.864, + 190.435, + 175.618, + 178.584, + 152.956, + 160.535, + 119.723, + 122.319, + 120.326, 60.908, 33.107, 33.107, @@ -25464,21 +25464,21 @@ 31.876, 31.876, 28.45, - 47.799, - 57.877, - 91.727, - 143.647, - 186.976, - 182.796, - 187.884, - 203.187, - 201.532, - 207.673, - 194.097, - 200.901, - 130.502, - 85.327, - 97.541, + 48.565, + 61.239, + 102.485, + 158.598, + 201.013, + 196.99, + 202.154, + 209.438, + 202.7, + 208.681, + 181.841, + 188.323, + 117.59, + 72.324, + 84.516, 79.977, 31.876, 31.876, @@ -25488,21 +25488,21 @@ 31.876, 31.876, 28.45, - 11.1, - 9.766, - 56.197, - 54.952, - 102.485, - 98.333, - 134.8, - 135.539, - 132.756, - 147.597, - 136.65, - 107.521, - 70.011, + 11.724, + 12.95, + 67.232, + 69.388, + 116.553, + 112.557, + 149.102, + 142.402, + 133.945, + 148.62, + 124.41, + 94.956, + 57.105, + 0.0, 0.0, - 13.026, 31.876, 31.876, 31.876, @@ -25512,21 +25512,21 @@ 33.107, 33.107, 29.681, - 49.046, - 75.564, - 129.441, - 223.669, - 224.292, - 225.575, - 229.618, - 223.137, - 222.588, - 229.109, - 213.029, - 215.316, - 165.313, - 157.232, - 152.36, + 49.762, + 78.867, + 140.278, + 238.614, + 238.321, + 239.753, + 241.31, + 217.503, + 223.739, + 230.101, + 200.754, + 202.733, + 152.425, + 144.239, + 139.334, 60.908, 33.107, 33.107, @@ -25536,21 +25536,21 @@ 33.107, 33.107, 29.681, - 49.089, - 76.38, - 132.793, - 224.084, - 234.384, - 244.128, - 249.666, - 251.456, - 247.45, - 252.457, - 230.464, - 230.87, - 179.569, - 169.409, - 160.956, + 49.825, + 79.113, + 141.614, + 231.098, + 248.274, + 258.061, + 264.032, + 265.364, + 249.679, + 252.911, + 218.025, + 218.223, + 166.673, + 156.412, + 147.931, 60.908, 33.107, 33.107, @@ -25560,21 +25560,21 @@ 33.107, 33.107, 29.681, - 49.023, - 75.59, - 131.204, - 227.306, - 232.957, - 237.177, - 237.386, - 235.141, - 223.303, - 227.339, - 210.592, - 213.001, - 166.014, - 158.999, - 152.432, + 49.887, + 79.19, + 142.177, + 241.739, + 247.033, + 251.429, + 251.717, + 241.461, + 224.517, + 228.39, + 198.372, + 200.446, + 153.109, + 145.995, + 139.407, 60.908, 33.107, 33.107, @@ -25584,21 +25584,21 @@ 33.107, 33.107, 29.681, - 49.078, - 75.528, - 127.022, - 206.808, - 222.485, - 232.283, - 236.204, - 236.37, - 225.64, - 227.29, - 209.492, - 211.075, - 163.601, - 155.505, - 148.989, + 49.665, + 78.753, + 138.231, + 221.089, + 236.553, + 246.502, + 250.499, + 243.218, + 226.828, + 228.319, + 197.257, + 198.509, + 150.693, + 142.499, + 135.963, 60.908, 33.107, 33.107, @@ -25608,21 +25608,21 @@ 33.107, 33.107, 29.681, - 49.093, - 75.525, - 127.046, - 192.032, - 192.251, - 202.828, - 211.707, - 211.736, - 200.333, - 205.314, - 191.594, - 197.973, - 152.903, - 146.67, - 138.648, + 49.636, + 78.603, + 138.166, + 206.5, + 206.302, + 217.022, + 225.978, + 218.629, + 201.494, + 206.318, + 179.339, + 185.396, + 139.993, + 133.666, + 125.623, 60.908, 33.107, 33.107, @@ -25632,21 +25632,21 @@ 31.876, 31.876, 28.45, - 47.994, - 58.746, - 92.489, - 144.773, - 193.137, - 205.707, - 218.558, - 225.535, - 226.197, - 209.79, - 192.022, - 198.51, - 131.886, - 88.729, - 99.075, + 48.179, + 61.214, + 101.129, + 158.054, + 208.868, + 217.304, + 233.738, + 240.785, + 224.963, + 206.557, + 179.708, + 185.917, + 118.983, + 75.727, + 86.049, 79.99, 31.876, 31.876, @@ -25656,21 +25656,21 @@ 31.876, 31.876, 28.45, - 11.249, - 10.505, - 56.496, - 55.326, - 104.612, - 100.51, - 139.128, - 152.038, - 141.637, - 148.688, - 136.426, - 100.725, - 62.331, + 11.511, + 13.457, + 66.717, + 71.047, + 118.606, + 114.657, + 153.35, + 158.825, + 142.75, + 149.655, + 124.139, + 88.128, + 49.43, + 0.0, 0.0, - 13.026, 31.876, 31.876, 31.876, @@ -25680,21 +25680,21 @@ 33.107, 33.107, 29.681, - 49.099, - 75.671, - 127.248, - 191.98, - 187.343, - 190.009, - 198.987, - 196.431, - 195.513, - 203.468, - 189.24, - 195.677, - 151.705, - 146.607, - 141.113, + 49.678, + 78.674, + 137.763, + 207.175, + 201.369, + 204.191, + 212.093, + 189.854, + 196.669, + 204.466, + 176.982, + 183.102, + 138.797, + 133.602, + 128.087, 60.908, 33.107, 33.107, @@ -25704,21 +25704,21 @@ 33.107, 33.107, 29.681, - 49.113, - 75.608, - 127.114, - 191.814, - 194.289, - 202.592, - 206.419, - 208.254, - 198.487, - 205.948, - 194.396, - 201.875, - 155.852, - 150.177, - 146.925, + 49.62, + 78.662, + 138.095, + 206.364, + 208.344, + 216.797, + 220.702, + 215.267, + 199.658, + 206.96, + 182.147, + 189.305, + 142.946, + 137.171, + 133.9, 60.908, 33.107, 33.107, @@ -25728,21 +25728,21 @@ 33.107, 33.107, 29.681, - 49.12, - 75.595, - 127.084, - 191.765, - 186.079, - 181.933, - 185.488, - 189.581, - 177.901, - 183.488, - 172.493, - 180.955, - 141.845, - 146.016, - 137.581, + 49.605, + 78.651, + 138.179, + 206.111, + 200.151, + 196.162, + 199.797, + 196.742, + 179.095, + 184.516, + 160.254, + 168.389, + 128.935, + 133.008, + 124.555, 60.908, 33.107, 33.107, @@ -25752,21 +25752,21 @@ 33.107, 33.107, 29.681, - 49.129, - 75.616, - 127.137, - 191.828, - 186.321, - 186.03, - 193.796, - 201.568, - 196.236, - 204.03, - 191.524, - 198.937, - 156.935, - 156.132, - 148.579, + 49.589, + 78.624, + 138.103, + 206.347, + 200.385, + 200.259, + 208.108, + 208.747, + 197.44, + 205.072, + 179.3, + 186.383, + 144.026, + 143.124, + 135.553, 60.908, 33.107, 33.107, @@ -25776,21 +25776,21 @@ 33.107, 33.107, 33.107, - 49.134, - 75.589, - 127.103, - 194.696, - 215.353, - 229.228, - 233.524, - 234.584, - 222.903, - 229.231, - 212.117, - 214.651, - 165.39, - 159.976, - 151.839, + 49.596, + 78.57, + 138.179, + 209.152, + 229.421, + 243.458, + 247.834, + 241.744, + 224.105, + 230.265, + 199.884, + 202.092, + 152.484, + 146.968, + 138.813, 60.908, 33.107, 33.107, @@ -25800,21 +25800,21 @@ 31.876, 31.876, 31.876, - 47.9, - 57.927, - 91.763, - 143.673, - 197.115, - 214.157, - 222.288, - 221.69, - 206.533, - 214.12, - 202.128, - 206.161, - 135.487, - 96.211, - 103.368, + 48.381, + 60.989, + 102.619, + 158.349, + 211.169, + 228.367, + 236.575, + 228.705, + 207.71, + 215.132, + 189.876, + 193.587, + 122.58, + 83.204, + 90.342, 80.188, 31.876, 31.876, @@ -25824,21 +25824,21 @@ 31.876, 31.876, 31.876, - 11.172, - 9.986, - 56.495, - 55.307, - 104.662, - 105.648, - 153.37, - 157.154, - 142.414, - 147.946, - 155.182, - 112.113, - 67.21, + 11.699, + 12.989, + 66.886, + 70.778, + 118.668, + 119.808, + 167.607, + 163.746, + 143.54, + 148.917, + 154.289, + 92.515, + 54.302, + 0.0, 0.0, - 13.026, 31.876, 31.876, 31.876, @@ -25849,20 +25849,20 @@ 33.107, 33.107, 49.275, - 77.058, - 129.722, - 197.498, - 213.984, - 225.472, - 234.762, - 240.629, - 255.632, - 260.431, - 229.548, - 226.044, - 164.168, - 160.994, - 152.763, + 77.109, + 131.763, + 199.77, + 216.082, + 239.466, + 248.762, + 254.803, + 257.595, + 266.687, + 216.756, + 213.048, + 151.267, + 147.99, + 139.737, 60.908, 33.107, 33.107, @@ -25872,21 +25872,21 @@ 33.107, 33.107, 33.107, - 49.139, - 75.801, - 127.406, - 211.819, - 229.015, - 236.644, - 238.524, - 239.669, - 226.229, - 236.739, - 215.916, - 213.021, - 161.849, - 159.936, - 152.642, + 49.626, + 78.81, + 137.637, + 227.522, + 243.015, + 250.803, + 252.765, + 246.215, + 227.368, + 237.724, + 203.647, + 200.439, + 148.943, + 146.928, + 139.616, 60.908, 33.107, 33.107, @@ -25896,21 +25896,21 @@ 33.107, 33.107, 33.107, - 49.156, - 75.73, - 127.289, - 191.994, - 192.28, - 202.514, - 208.984, - 214.704, - 205.077, - 210.971, - 198.763, - 207.111, - 162.999, - 160.066, - 153.309, + 49.578, + 78.611, + 137.901, + 207.003, + 206.316, + 216.71, + 223.259, + 221.828, + 206.251, + 211.983, + 186.512, + 194.534, + 150.093, + 147.058, + 140.283, 60.908, 33.107, 33.107, @@ -25920,21 +25920,21 @@ 33.107, 33.107, 33.107, - 49.16, - 75.755, - 127.287, - 193.812, - 206.028, - 221.925, - 225.597, - 228.354, - 215.95, - 219.131, - 206.206, - 211.081, - 162.775, - 160.428, - 152.288, + 49.577, + 78.653, + 137.932, + 208.781, + 220.066, + 236.112, + 239.864, + 235.473, + 217.116, + 220.141, + 193.958, + 198.509, + 149.87, + 147.418, + 139.262, 60.908, 33.107, 33.107, @@ -25944,21 +25944,21 @@ 33.107, 33.107, 33.107, - 49.159, - 75.798, - 127.371, - 192.085, - 191.542, - 206.107, - 215.063, - 218.03, - 204.545, - 209.386, - 196.163, - 202.557, - 155.56, - 153.52, - 147.912, + 49.596, + 78.723, + 137.806, + 207.377, + 205.561, + 220.285, + 229.32, + 224.952, + 205.701, + 210.382, + 183.899, + 189.975, + 142.653, + 140.509, + 134.887, 60.908, 33.107, 33.107, @@ -25968,21 +25968,21 @@ 31.876, 31.876, 31.876, - 47.93, - 58.073, - 91.925, - 143.835, - 190.858, - 193.979, - 196.225, - 198.69, - 187.574, - 194.724, - 183.912, - 192.427, - 130.572, - 96.418, - 111.263, + 48.369, + 61.079, + 102.488, + 158.956, + 204.887, + 208.162, + 210.483, + 205.592, + 188.732, + 195.724, + 171.653, + 179.847, + 117.664, + 83.407, + 98.237, 85.304, 31.876, 31.876, @@ -25992,21 +25992,21 @@ 31.876, 31.876, 31.876, - 11.217, - 10.044, - 56.482, - 58.275, - 131.55, - 139.464, - 176.427, - 175.175, - 161.722, - 166.444, - 154.696, - 119.269, - 79.997, + 11.606, + 13.004, + 67.097, + 73.298, + 145.583, + 153.646, + 190.686, + 182.22, + 162.865, + 167.434, + 142.431, + 106.69, + 67.087, 0.0, - 13.026, + -0.0, 31.876, 31.876, 31.876, @@ -26016,21 +26016,21 @@ 33.107, 33.107, 33.107, - 49.176, - 75.799, - 127.365, - 192.524, - 204.568, - 219.307, - 227.275, - 226.502, - 218.65, - 225.251, - 209.599, - 211.952, - 162.341, - 159.608, - 151.991, + 49.562, + 78.797, + 137.967, + 207.613, + 218.595, + 233.488, + 241.534, + 218.978, + 219.811, + 226.252, + 197.339, + 199.373, + 149.433, + 146.595, + 138.965, 60.908, 33.107, 33.107, @@ -26040,21 +26040,21 @@ 33.107, 33.107, 33.107, - 49.185, - 75.815, - 127.422, - 194.091, - 199.318, - 210.786, - 220.446, - 226.95, - 217.3, - 224.5, - 210.262, - 213.48, - 163.829, - 159.47, - 151.091, + 49.543, + 78.83, + 137.879, + 209.359, + 213.333, + 224.954, + 234.689, + 233.851, + 218.433, + 225.471, + 197.974, + 200.889, + 150.927, + 146.455, + 138.066, 60.908, 33.107, 33.107, @@ -26065,20 +26065,20 @@ 33.107, 33.107, 49.275, - 76.656, - 130.165, - 215.537, - 223.761, - 233.454, - 234.298, - 234.589, - 229.974, - 221.339, - 206.089, - 207.685, - 157.832, - 156.189, - 147.887, + 78.363, + 130.431, + 229.866, + 237.789, + 247.5, + 248.397, + 248.702, + 235.917, + 222.333, + 193.82, + 195.101, + 144.926, + 143.174, + 134.862, 60.908, 33.107, 33.107, @@ -26088,21 +26088,21 @@ 33.107, 33.107, 33.107, - 49.189, - 75.86, - 127.432, - 202.461, - 221.329, - 227.213, - 228.196, - 230.643, - 214.771, - 216.142, - 200.96, - 206.195, - 159.608, - 156.864, - 148.31, + 49.525, + 78.932, + 137.921, + 217.722, + 235.347, + 241.389, + 242.459, + 237.513, + 215.93, + 217.149, + 188.704, + 193.623, + 146.699, + 143.848, + 135.285, 60.908, 33.107, 33.107, @@ -26112,21 +26112,21 @@ 33.107, 33.107, 33.107, - 52.632, - 75.808, - 127.345, - 196.345, - 205.331, - 211.376, - 216.185, - 219.234, - 208.416, - 214.47, - 198.34, - 198.853, - 148.904, - 149.152, - 134.816, + 52.916, + 78.766, + 138.146, + 211.243, + 219.364, + 225.563, + 230.442, + 226.337, + 209.574, + 215.471, + 186.081, + 186.273, + 135.992, + 136.135, + 121.79, 60.908, 33.107, 33.107, @@ -26136,21 +26136,21 @@ 31.876, 31.876, 31.876, - 51.401, - 58.138, - 91.98, - 143.934, - 196.609, - 205.641, - 212.274, - 215.413, - 209.485, - 206.834, - 194.494, - 200.647, - 129.596, - 91.11, - 97.457, + 51.676, + 61.253, + 102.619, + 158.977, + 210.644, + 219.826, + 226.539, + 222.379, + 210.376, + 207.823, + 182.219, + 188.061, + 116.695, + 78.093, + 84.432, 79.921, 31.876, 31.876, @@ -26160,21 +26160,21 @@ 31.876, 31.876, 31.876, - 14.678, - 10.144, - 56.593, - 55.307, - 103.202, - 98.823, - 131.956, - 129.377, - 115.381, - 119.735, - 107.522, - 80.71, - 54.654, + 14.942, + 13.532, + 67.254, + 70.246, + 117.253, + 113.037, + 146.257, + 136.228, + 116.574, + 120.768, + 95.283, + 68.148, + 41.748, 0.0, - 13.026, + -0.0, 31.876, 31.876, 31.876, @@ -26184,21 +26184,21 @@ 33.107, 33.107, 33.107, - 52.874, - 75.859, - 127.177, - 191.323, - 184.677, - 180.047, - 179.181, - 181.797, - 172.862, - 178.233, - 166.42, - 175.153, - 135.491, - 137.32, - 132.137, + 53.152, + 79.06, + 138.742, + 205.203, + 198.806, + 194.35, + 193.566, + 174.659, + 174.124, + 179.317, + 154.219, + 162.604, + 122.582, + 124.3, + 119.111, 60.908, 33.107, 33.107, @@ -26208,21 +26208,21 @@ 33.107, 33.107, 33.107, - 52.655, - 75.778, - 127.206, - 208.699, - 219.617, - 227.591, - 234.381, - 241.174, - 232.853, - 232.183, - 214.904, - 219.456, - 172.322, - 173.16, - 162.193, + 52.851, + 78.855, + 138.69, + 222.566, + 233.726, + 241.86, + 248.734, + 248.772, + 234.087, + 233.245, + 202.688, + 206.901, + 159.41, + 160.14, + 149.168, 60.908, 33.107, 33.107, @@ -26232,21 +26232,21 @@ 33.107, 33.107, 33.107, - 52.656, - 75.78, - 139.751, - 239.739, - 253.495, - 259.231, - 261.912, - 264.087, - 250.53, - 255.63, - 240.203, - 244.246, - 184.85, - 174.58, - 159.724, + 52.85, + 78.895, + 151.336, + 253.606, + 267.596, + 273.482, + 276.25, + 271.545, + 251.762, + 256.694, + 227.991, + 231.695, + 171.938, + 161.559, + 146.698, 60.908, 33.107, 33.107, @@ -26256,21 +26256,21 @@ 33.107, 33.107, 33.107, - 52.662, - 75.805, - 145.515, - 243.31, - 243.449, - 247.315, - 254.322, - 255.172, - 241.095, - 243.104, - 225.534, - 224.834, - 170.629, - 165.764, - 151.068, + 52.835, + 78.886, + 157.015, + 257.174, + 257.552, + 261.579, + 268.672, + 262.776, + 242.334, + 244.174, + 213.325, + 212.284, + 157.718, + 152.744, + 138.043, 60.908, 33.107, 33.107, @@ -26280,21 +26280,21 @@ 33.107, 33.107, 33.107, - 52.667, - 75.815, - 127.272, - 191.925, - 190.099, - 197.621, - 201.455, - 202.097, - 192.382, - 199.482, - 186.006, - 192.922, - 146.542, - 146.711, - 134.67, + 52.819, + 78.891, + 138.713, + 205.909, + 204.194, + 211.879, + 215.797, + 209.648, + 193.615, + 200.547, + 173.793, + 180.368, + 133.627, + 133.691, + 121.645, 60.908, 33.107, 33.107, @@ -26304,21 +26304,21 @@ 31.876, 31.876, 31.876, - 51.432, - 58.123, - 91.866, - 148.044, - 216.694, - 228.626, - 234.778, - 232.375, - 221.184, - 228.033, - 216.53, - 218.265, - 143.541, - 105.493, - 111.78, + 51.607, + 61.226, + 103.266, + 161.908, + 230.806, + 242.903, + 249.138, + 240.051, + 222.426, + 229.099, + 204.316, + 205.707, + 130.624, + 92.472, + 98.754, 83.16, 31.876, 31.876, @@ -26328,21 +26328,21 @@ 31.876, 31.876, 31.876, - 14.711, - 10.148, - 57.919, - 73.045, - 138.341, - 139.695, - 178.821, - 181.98, - 170.377, - 175.917, - 164.536, - 123.966, - 82.573, + 14.865, + 13.158, + 68.938, + 87.581, + 152.405, + 153.914, + 193.114, + 189.358, + 171.556, + 176.924, + 152.275, + 111.383, + 69.649, 0.0, - 13.026, + -0.0, 31.876, 31.876, 31.876, @@ -26352,21 +26352,21 @@ 33.107, 33.107, 33.107, - 52.669, - 75.927, - 132.305, - 226.755, - 235.733, - 240.848, - 245.302, - 247.655, - 235.362, - 239.472, - 226.7, - 227.829, - 174.332, - 173.646, - 158.042, + 52.82, + 78.915, + 143.225, + 241.418, + 249.782, + 255.052, + 259.586, + 240.522, + 236.541, + 240.486, + 214.446, + 215.245, + 161.406, + 160.624, + 145.016, 60.908, 33.107, 33.107, @@ -26376,21 +26376,21 @@ 33.107, 33.107, 33.107, - 52.674, - 75.955, - 129.917, - 225.527, - 234.756, - 248.662, - 248.736, - 251.029, - 244.316, - 247.16, - 220.632, - 216.925, - 160.735, - 161.484, - 146.6, + 52.806, + 78.921, + 140.731, + 240.452, + 248.758, + 262.627, + 263.015, + 258.244, + 245.293, + 247.899, + 208.273, + 204.302, + 147.81, + 148.46, + 133.575, 60.908, 33.107, 33.107, @@ -26400,21 +26400,21 @@ 33.107, 33.107, 33.107, - 52.678, - 76.016, - 128.969, - 222.905, - 230.37, - 235.569, - 243.829, - 247.899, - 232.161, - 237.184, - 224.924, - 227.857, - 176.134, - 177.8, - 161.64, + 52.78, + 79.083, + 139.754, + 237.787, + 244.41, + 249.757, + 258.094, + 255.111, + 233.316, + 238.18, + 212.647, + 215.248, + 163.218, + 164.774, + 148.614, 60.908, 33.107, 33.107, @@ -26424,21 +26424,21 @@ 33.107, 33.107, 33.107, - 52.682, - 76.007, - 131.296, - 223.731, - 238.2, - 248.26, - 252.683, - 253.443, - 238.219, - 242.032, - 228.333, - 230.692, - 181.15, - 183.683, - 166.483, + 52.769, + 79.111, + 142.026, + 238.767, + 252.228, + 262.429, + 266.928, + 260.502, + 239.351, + 243.003, + 216.032, + 218.071, + 168.231, + 170.658, + 153.458, 60.908, 33.107, 33.107, @@ -26448,21 +26448,21 @@ 33.107, 33.107, 33.107, - 56.097, - 76.027, - 130.738, - 224.07, - 234.629, - 242.328, - 245.854, - 247.109, - 233.62, - 241.108, - 221.889, - 224.606, - 173.788, - 173.862, - 157.747, + 56.207, + 79.095, + 141.433, + 239.087, + 248.661, + 256.523, + 260.127, + 254.265, + 234.786, + 242.113, + 209.618, + 212.005, + 160.866, + 160.837, + 144.721, 60.908, 33.107, 33.107, @@ -26472,21 +26472,21 @@ 31.876, 31.876, 31.876, - 54.867, - 58.28, - 92.076, - 143.906, - 187.129, - 190.65, - 197.282, - 199.961, - 188.607, - 195.73, - 183.951, - 190.787, - 123.4, - 89.231, - 97.17, + 54.976, + 61.323, + 103.086, + 158.372, + 201.197, + 204.881, + 211.595, + 207.456, + 189.806, + 196.757, + 171.706, + 178.205, + 110.471, + 76.206, + 84.144, 79.921, 31.876, 31.876, @@ -26496,21 +26496,21 @@ 31.876, 31.876, 31.876, - 18.135, - 10.398, - 56.548, - 55.18, - 104.874, - 97.5, - 137.689, - 142.89, - 137.569, - 143.957, - 131.337, - 94.794, - 56.611, - 2.747, - 13.026, + 18.266, + 13.351, + 68.024, + 69.043, + 118.868, + 111.769, + 151.916, + 150.669, + 138.797, + 145.006, + 119.106, + 82.217, + 43.681, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -26520,21 +26520,21 @@ 33.107, 33.107, 33.107, - 56.101, - 75.925, - 127.335, - 191.686, - 185.491, - 184.448, - 199.931, - 207.185, - 196.718, - 200.734, - 187.839, - 192.627, - 142.305, - 145.362, - 133.185, + 56.194, + 79.136, + 139.11, + 205.56, + 199.598, + 198.707, + 214.272, + 203.024, + 197.937, + 201.779, + 175.603, + 180.045, + 129.372, + 132.337, + 120.159, 60.908, 33.107, 33.107, @@ -26544,21 +26544,21 @@ 33.107, 33.107, 33.107, - 56.106, - 75.965, - 127.423, - 192.034, - 188.222, - 192.222, - 196.013, - 200.615, - 198.368, - 210.431, - 196.196, - 200.512, - 151.198, - 155.153, - 139.324, + 56.177, + 79.123, + 138.907, + 205.984, + 202.313, + 206.463, + 210.325, + 208.117, + 199.56, + 211.449, + 183.939, + 187.914, + 138.267, + 142.127, + 126.299, 60.908, 33.107, 33.107, @@ -26568,21 +26568,21 @@ 33.107, 33.107, 33.107, - 56.111, - 75.994, - 127.442, - 192.036, - 187.469, - 194.948, - 203.463, - 208.085, - 202.531, - 213.922, - 199.812, - 204.272, - 156.779, - 165.278, - 146.233, + 56.162, + 79.105, + 138.898, + 205.957, + 201.564, + 209.2, + 217.789, + 215.713, + 203.732, + 214.944, + 187.553, + 191.676, + 143.845, + 152.252, + 133.207, 60.908, 33.107, 33.107, @@ -26592,21 +26592,21 @@ 33.107, 33.107, 33.107, - 56.11, - 75.98, - 127.362, - 192.901, - 200.406, - 209.514, - 219.103, - 223.31, - 210.935, + 56.165, + 79.239, + 139.217, + 206.788, 214.54, - 200.698, - 206.354, - 158.415, - 165.675, - 149.432, + 223.809, + 233.479, + 230.529, + 212.178, + 215.602, + 188.473, + 193.777, + 145.48, + 152.649, + 136.406, 60.908, 33.107, 33.107, @@ -26616,21 +26616,21 @@ 33.107, 33.107, 33.107, - 56.115, - 75.993, - 127.455, - 212.667, - 220.714, - 230.672, - 236.557, - 238.146, - 229.993, - 231.491, - 210.064, - 210.396, - 162.534, - 169.708, - 152.327, + 56.149, + 79.232, + 139.099, + 226.585, + 234.81, + 244.927, + 250.889, + 245.503, + 231.205, + 232.525, + 197.816, + 197.804, + 149.597, + 156.683, + 139.302, 60.908, 33.107, 33.107, @@ -26640,21 +26640,21 @@ 31.876, 31.876, 31.876, - 54.89, - 58.375, - 92.213, - 152.963, - 220.732, - 233.282, - 236.037, - 236.243, - 226.655, - 229.811, - 216.539, - 215.247, - 140.588, - 108.984, - 109.544, + 54.901, + 61.465, + 103.083, + 167.586, + 234.797, + 247.508, + 250.342, + 243.748, + 227.668, + 230.673, + 204.15, + 202.623, + 127.649, + 95.958, + 96.519, 82.915, 31.876, 31.876, @@ -26665,20 +26665,20 @@ 31.876, 31.876, 18.171, - 10.387, - 56.873, - 55.83, - 118.162, - 121.921, - 166.381, - 170.902, - 153.464, - 172.983, - 156.4, - 108.811, - 71.869, - 6.173, - 13.026, + 13.48, + 67.466, + 72.132, + 132.098, + 136.124, + 180.481, + 176.643, + 154.456, + 173.234, + 143.527, + 96.14, + 58.93, + 0.0, + 0.0, 31.876, 31.876, 31.876, @@ -26689,20 +26689,20 @@ 33.107, 33.107, 56.128, - 76.137, - 127.702, - 215.883, - 227.402, - 233.826, - 238.693, - 242.552, - 226.807, - 229.484, - 212.34, - 214.453, - 164.818, - 169.471, - 150.562, + 79.187, + 138.598, + 230.655, + 241.452, + 248.041, + 252.987, + 242.284, + 227.984, + 230.491, + 200.063, + 201.837, + 151.872, + 156.445, + 137.537, 60.908, 33.107, 33.107, @@ -26713,20 +26713,20 @@ 33.107, 33.107, 56.128, - 76.105, - 127.598, - 195.444, - 205.964, - 214.962, - 219.562, - 221.734, - 208.909, - 213.063, - 198.807, - 205.449, - 159.512, - 165.627, - 146.643, + 79.176, + 138.827, + 210.161, + 220.003, + 229.158, + 233.838, + 228.795, + 210.072, + 214.055, + 186.526, + 192.83, + 146.562, + 152.601, + 133.617, 60.908, 33.107, 33.107, @@ -26737,20 +26737,20 @@ 33.107, 33.107, 56.128, - 76.111, - 127.632, - 192.407, - 193.121, - 201.972, - 206.677, - 209.063, - 200.677, - 217.86, - 205.52, - 205.249, - 157.178, - 162.54, - 145.047, + 79.207, + 138.781, + 207.451, + 207.138, + 216.13, + 220.897, + 215.776, + 201.79, + 218.518, + 192.905, + 192.579, + 144.229, + 149.515, + 132.021, 60.908, 33.107, 33.107, @@ -26761,20 +26761,20 @@ 33.107, 33.107, 56.128, - 76.736, - 127.685, - 192.582, - 197.143, - 212.99, - 224.555, - 229.853, - 231.783, - 243.917, - 204.589, - 217.158, - 164.423, - 171.9, - 150.405, + 78.115, + 138.667, + 207.372, + 211.189, + 227.202, + 238.847, + 238.702, + 232.31, + 243.967, + 192.292, + 204.225, + 151.397, + 158.875, + 137.379, 60.908, 33.107, 33.107, @@ -26785,20 +26785,20 @@ 33.107, 33.107, 56.128, - 76.198, - 127.813, - 200.326, - 212.355, - 219.126, - 223.639, - 227.714, - 213.166, - 219.794, - 204.772, - 207.234, - 159.149, - 163.971, - 137.163, + 79.262, + 138.347, + 215.876, + 226.355, + 233.293, + 237.873, + 234.53, + 214.288, + 220.627, + 192.358, + 194.617, + 146.197, + 150.945, + 124.138, 60.908, 33.107, 33.107, @@ -26809,20 +26809,20 @@ 31.876, 31.876, 58.323, - 58.378, - 92.112, - 144.009, - 186.243, - 191.298, - 204.777, - 210.993, - 209.633, - 217.49, - 210.051, - 208.218, - 132.086, - 101.383, - 98.882, + 61.695, + 103.886, + 158.072, + 200.328, + 205.54, + 219.099, + 218.029, + 210.834, + 218.512, + 192.454, + 195.599, + 119.132, + 88.357, + 85.857, 80.535, 31.876, 31.876, @@ -26833,20 +26833,20 @@ 31.876, 31.876, 21.597, - 10.342, - 56.666, - 55.475, - 103.607, - 100.654, - 153.344, - 179.269, - 183.011, - 182.821, - 143.057, - 108.832, - 70.088, - 9.599, - 13.026, + 13.682, + 68.573, + 69.631, + 117.656, + 114.862, + 167.629, + 186.001, + 183.709, + 183.36, + 130.777, + 96.203, + 57.131, + 0.0, + 0.0, 31.876, 31.876, 31.876, @@ -26857,20 +26857,20 @@ 31.876, 31.876, 21.597, - 10.392, - 56.767, - 55.47, - 102.688, - 98.611, - 136.941, - 139.619, - 149.878, - 152.06, - 140.37, - 97.53, - 57.874, - 9.599, - 13.026, + 13.638, + 68.319, + 69.582, + 116.77, + 112.846, + 151.247, + 146.857, + 150.278, + 152.381, + 127.418, + 84.775, + 44.917, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -26881,20 +26881,20 @@ 33.107, 33.107, 59.554, - 76.181, - 127.616, - 192.292, - 186.532, - 184.018, - 190.477, - 201.089, - 195.138, - 199.286, - 186.293, - 194.163, - 149.086, - 158.901, - 134.897, + 79.445, + 139.263, + 206.508, + 200.607, + 198.244, + 204.767, + 204.279, + 196.289, + 200.258, + 173.984, + 181.512, + 136.127, + 145.875, + 121.871, 60.908, 33.107, 33.107, @@ -26905,20 +26905,20 @@ 33.107, 33.107, 59.554, - 76.196, - 127.7, - 192.341, - 190.953, - 203.763, - 209.916, - 216.054, - 208.962, - 215.758, - 214.637, - 208.546, - 160.081, - 169.296, - 148.976, + 79.412, + 139.046, + 206.722, + 205.011, + 217.968, + 224.183, + 223.195, + 210.09, + 216.714, + 201.868, + 195.889, + 147.084, + 156.27, + 135.95, 60.908, 33.107, 33.107, @@ -26929,20 +26929,20 @@ 33.107, 33.107, 59.554, - 76.207, - 127.716, - 196.532, - 206.909, - 222.969, - 230.395, - 230.897, - 223.804, - 227.221, - 211.304, - 215.332, - 167.454, - 178.42, - 158.778, + 79.44, + 139.052, + 210.775, + 220.978, + 237.197, + 244.697, + 238.219, + 224.979, + 228.216, + 199.005, + 202.685, + 154.488, + 165.394, + 145.753, 60.908, 33.107, 33.107, @@ -26953,20 +26953,20 @@ 33.107, 33.107, 59.554, - 76.212, - 128.832, - 220.153, - 231.487, - 236.575, - 238.937, - 241.157, - 232.143, - 236.841, - 220.049, - 224.169, - 176.405, - 188.076, - 163.333, + 79.494, + 140.327, + 234.309, + 245.566, + 250.815, + 253.251, + 248.384, + 233.333, + 237.836, + 207.74, + 211.512, + 163.437, + 175.051, + 150.307, 60.908, 33.107, 33.107, @@ -26977,20 +26977,20 @@ 31.876, 31.876, 58.323, - 58.439, - 92.132, - 165.899, - 232.953, - 240.782, - 244.336, - 243.078, - 232.365, - 234.289, - 218.271, - 223.278, - 150.562, - 126.092, - 121.495, + 61.952, + 104.61, + 179.821, + 247.117, + 255.108, + 258.731, + 249.522, + 233.622, + 235.349, + 206.027, + 210.651, + 137.595, + 113.066, + 108.47, 98.048, 31.876, 31.876, @@ -27001,20 +27001,20 @@ 31.876, 31.876, 21.597, - 10.393, - 56.853, - 63.895, - 132.73, - 144.488, - 187.815, - 185.787, - 178.0, - 180.643, - 161.98, - 124.644, - 82.171, - 13.026, - 13.026, + 13.991, + 69.534, + 77.831, + 146.914, + 158.835, + 202.235, + 191.974, + 179.263, + 181.707, + 149.736, + 112.02, + 69.201, + -0.0, + -0.0, 31.876, 31.876, 31.876, @@ -27025,20 +27025,20 @@ 33.107, 33.107, 59.554, - 76.186, - 127.632, - 202.575, - 223.005, - 234.86, - 235.197, - 230.946, - 220.421, - 225.842, - 212.24, - 215.346, - 163.166, - 176.548, - 154.471, + 79.707, + 139.875, + 216.466, + 237.133, + 249.159, + 249.574, + 237.595, + 221.657, + 226.889, + 199.988, + 202.716, + 150.192, + 163.522, + 141.445, 60.908, 33.107, 33.107, @@ -27049,20 +27049,20 @@ 33.107, 33.107, 59.554, - 76.205, - 127.573, - 191.976, - 197.774, - 210.128, - 221.274, - 224.427, - 214.627, - 219.211, - 206.108, - 211.792, - 162.827, - 176.004, - 151.716, + 79.675, + 139.929, + 205.869, + 211.898, + 224.402, + 235.603, + 230.945, + 215.775, + 220.173, + 193.796, + 199.135, + 149.849, + 162.978, + 138.69, 60.908, 33.107, 33.107, @@ -27073,20 +27073,20 @@ 33.107, 33.107, 59.554, - 76.252, - 127.657, - 192.311, - 197.505, - 206.735, - 212.063, - 216.681, - 211.477, - 217.944, - 202.543, - 206.875, - 158.748, - 171.286, - 147.064, + 79.613, + 139.702, + 206.185, + 211.599, + 220.975, + 226.356, + 223.568, + 212.592, + 218.887, + 190.213, + 194.204, + 145.768, + 158.26, + 134.039, 60.908, 33.107, 33.107, @@ -27097,20 +27097,20 @@ 33.107, 33.107, 59.554, - 76.301, - 127.733, - 192.271, - 186.189, - 200.176, - 220.711, - 222.171, - 210.085, - 214.383, - 199.904, - 203.604, - 152.216, - 166.049, - 144.712, + 79.549, + 139.504, + 206.136, + 200.282, + 214.419, + 235.026, + 229.479, + 211.263, + 215.361, + 187.576, + 190.898, + 139.227, + 153.023, + 131.687, 60.908, 33.107, 33.107, @@ -27121,20 +27121,20 @@ 33.107, 33.107, 59.554, - 76.347, - 127.916, - 192.458, - 191.088, - 195.308, - 195.429, - 194.254, - 184.76, - 195.975, - 185.814, - 193.744, - 154.715, - 166.638, - 144.508, + 79.394, + 138.671, + 207.183, + 205.163, + 209.582, + 209.771, + 201.835, + 185.957, + 196.957, + 173.466, + 181.07, + 141.731, + 153.612, + 131.483, 60.908, 33.107, 33.107, @@ -27145,20 +27145,20 @@ 31.876, 31.876, 61.75, - 58.509, - 92.052, - 141.146, - 182.226, - 182.104, - 183.995, - 181.676, - 174.326, - 181.696, - 171.629, - 181.931, - 127.478, - 102.695, - 97.613, + 62.17, + 105.129, + 155.118, + 196.465, + 196.531, + 198.493, + 187.503, + 175.656, + 182.804, + 159.406, + 169.305, + 114.494, + 89.67, + 84.588, 80.045, 31.876, 31.876, @@ -27169,20 +27169,20 @@ 31.876, 31.876, 25.024, - 10.417, - 56.496, - 51.815, - 97.903, - 100.503, - 150.687, - 154.211, - 149.267, - 154.383, - 142.131, - 104.656, - 68.119, - 13.026, - 13.026, + 14.321, + 70.305, + 65.816, + 112.175, + 114.944, + 165.185, + 159.116, + 150.595, + 155.494, + 129.917, + 92.033, + 55.133, + -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -27193,20 +27193,20 @@ 33.107, 33.107, 62.98, - 76.198, - 127.413, - 189.044, - 182.991, - 184.601, - 186.643, - 183.036, - 175.484, - 181.619, - 170.374, - 180.212, - 144.01, - 157.56, - 133.312, + 80.07, + 141.008, + 203.029, + 197.231, + 199.005, + 201.112, + 188.125, + 176.768, + 182.691, + 158.129, + 167.576, + 131.017, + 144.534, + 120.286, 60.908, 33.107, 33.107, @@ -27217,20 +27217,20 @@ 33.107, 33.107, 62.98, - 76.237, - 127.525, - 190.281, - 184.068, - 180.257, - 181.0, - 186.095, - 181.097, - 186.704, - 175.13, - 184.304, - 147.278, - 161.182, - 135.148, + 80.007, + 140.682, + 204.222, + 198.242, + 194.575, + 195.372, + 191.608, + 182.293, + 187.715, + 162.847, + 171.645, + 134.28, + 148.157, + 122.122, 60.908, 33.107, 33.107, @@ -27241,20 +27241,20 @@ 33.107, 33.107, 62.98, - 76.31, - 127.713, - 190.959, - 184.004, - 179.387, - 177.451, - 172.903, - 162.237, - 168.835, - 162.124, - 174.789, - 138.579, - 150.969, - 132.328, + 79.807, + 139.984, + 204.874, + 198.181, + 193.737, + 191.875, + 179.591, + 163.503, + 169.9, + 149.859, + 162.129, + 125.576, + 137.943, + 119.302, 60.908, 33.107, 33.107, @@ -27265,20 +27265,20 @@ 33.107, 33.107, 63.026, - 76.262, - 127.514, - 189.594, - 183.179, - 181.08, - 187.58, - 190.014, - 184.305, - 189.528, - 177.804, - 187.206, - 147.794, - 157.919, - 133.785, + 80.054, + 140.908, + 203.56, + 197.387, + 195.435, + 201.987, + 195.306, + 185.522, + 190.546, + 165.516, + 174.543, + 134.79, + 144.893, + 120.76, 60.908, 33.107, 33.107, @@ -27289,20 +27289,20 @@ 33.107, 33.107, 63.025, - 76.297, - 127.636, - 190.717, - 184.123, - 187.272, - 199.221, - 199.157, - 191.386, - 198.146, - 187.171, - 195.893, - 157.711, - 165.318, - 141.967, + 80.004, + 140.526, + 204.643, + 198.296, + 201.603, + 213.623, + 205.022, + 192.613, + 199.167, + 174.87, + 183.208, + 144.704, + 152.293, + 128.941, 60.908, 33.107, 33.107, @@ -27313,20 +27313,20 @@ 31.876, 31.876, 61.75, - 58.673, - 92.446, - 146.51, - 203.59, - 210.755, - 220.525, - 225.667, - 217.598, - 223.978, - 213.274, - 220.667, - 152.455, - 119.293, - 115.113, + 61.874, + 103.982, + 160.383, + 217.732, + 225.11, + 234.961, + 233.351, + 218.871, + 225.043, + 201.018, + 208.006, + 139.449, + 106.267, + 102.088, 88.935, 31.876, 31.876, @@ -27337,20 +27337,20 @@ 31.876, 31.876, 25.024, - 10.531, - 56.636, - 59.244, - 128.696, - 142.98, - 187.299, - 184.498, - 184.106, - 190.215, - 174.645, - 146.297, - 102.065, - 13.026, - 13.026, + 14.4, + 70.391, + 73.241, + 142.955, + 157.402, + 201.785, + 189.456, + 185.402, + 191.292, + 162.389, + 133.631, + 89.055, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -27361,20 +27361,20 @@ 33.107, 33.107, 62.98, - 76.307, - 141.196, - 234.796, - 252.438, - 274.874, - 276.419, - 266.662, - 255.63, - 258.44, - 238.736, - 236.246, - 186.435, - 189.218, - 166.79, + 80.158, + 154.76, + 248.774, + 266.667, + 289.255, + 290.857, + 271.766, + 256.872, + 259.47, + 226.448, + 223.566, + 173.423, + 176.192, + 153.765, 60.908, 33.107, 33.107, @@ -27385,20 +27385,20 @@ 33.107, 33.107, 62.98, - 76.336, - 137.252, - 230.171, - 236.406, - 244.063, - 257.197, - 259.447, - 247.67, - 254.402, - 238.715, - 236.406, - 186.839, - 190.332, - 167.192, + 80.101, + 150.726, + 244.137, + 250.616, + 258.427, + 271.616, + 264.699, + 248.893, + 255.419, + 226.42, + 223.72, + 173.823, + 177.306, + 154.167, 60.908, 33.107, 33.107, @@ -27409,20 +27409,20 @@ 33.107, 33.107, 62.98, - 76.397, - 127.771, - 191.25, - 186.962, - 198.928, - 203.337, - 204.655, - 197.449, - 202.601, - 191.389, - 198.578, - 156.709, - 162.599, - 136.595, + 79.896, + 140.342, + 205.159, + 201.107, + 213.238, + 217.717, + 211.006, + 198.677, + 203.626, + 179.096, + 185.887, + 143.692, + 149.574, + 123.57, 60.908, 33.107, 33.107, @@ -27433,20 +27433,20 @@ 33.107, 33.107, 62.98, - 76.365, - 127.671, - 190.443, - 186.957, - 199.886, - 204.584, - 201.747, - 193.237, - 198.15, - 185.35, - 193.17, - 154.201, - 159.243, - 135.152, + 80.151, + 140.904, + 204.382, + 201.132, + 214.21, + 218.965, + 207.181, + 194.447, + 199.161, + 173.048, + 180.474, + 141.182, + 146.217, + 122.127, 60.908, 33.107, 33.107, @@ -27457,20 +27457,20 @@ 33.107, 33.107, 62.98, - 76.537, - 128.02, - 192.951, - 184.132, - 191.656, - 208.37, - 211.937, - 203.072, - 213.117, - 182.911, - 191.215, - 155.344, - 160.527, - 135.443, + 79.305, + 139.408, + 209.227, + 198.309, + 205.814, + 222.451, + 217.356, + 203.821, + 213.452, + 170.614, + 178.518, + 142.323, + 147.502, + 122.418, 60.908, 33.107, 33.107, @@ -27481,20 +27481,20 @@ 31.876, 31.876, 61.75, - 58.738, - 92.429, - 143.518, - 185.652, - 184.362, - 183.853, - 189.477, - 186.623, - 194.958, - 182.654, - 190.74, - 131.699, - 97.247, - 96.507, + 62.09, + 104.765, + 157.41, + 199.773, + 198.532, + 198.076, + 196.009, + 187.607, + 195.671, + 170.101, + 177.856, + 118.673, + 84.221, + 83.482, 79.921, 31.876, 31.876, @@ -27505,20 +27505,20 @@ 31.876, 31.876, 28.45, - 10.699, - 56.988, - 54.4, - 104.727, - 100.256, - 137.706, - 144.64, - 126.475, - 135.789, - 116.47, - 91.643, - 68.505, - 13.026, - 13.026, + 14.092, + 69.493, + 68.313, + 118.745, + 114.442, + 151.814, + 150.445, + 127.271, + 136.234, + 103.915, + 78.689, + 55.479, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -27529,20 +27529,20 @@ 33.107, 33.107, 66.636, - 76.606, - 127.875, - 191.914, - 185.927, - 196.514, - 210.204, - 216.547, - 209.2, - 211.585, - 194.608, - 197.182, - 156.465, - 157.7, - 135.383, + 80.101, + 140.376, + 205.801, + 200.054, + 210.797, + 224.557, + 222.945, + 210.393, + 212.571, + 182.275, + 184.458, + 143.439, + 144.675, + 122.357, 60.908, 33.107, 33.107, @@ -27553,20 +27553,20 @@ 33.107, 33.107, 66.407, - 76.745, - 128.142, - 191.564, - 185.359, - 181.214, - 180.477, - 181.551, - 167.642, - 173.265, - 162.268, - 172.639, - 140.959, - 150.753, - 132.615, + 78.308, + 139.125, + 205.464, + 199.492, + 195.504, + 194.834, + 191.248, + 168.838, + 174.251, + 149.935, + 159.913, + 127.933, + 137.727, + 119.589, 60.908, 33.107, 33.107, @@ -27577,20 +27577,20 @@ 33.107, 33.107, 66.577, - 76.548, - 127.877, - 190.912, - 185.147, - 187.56, - 192.649, - 190.686, - 180.477, - 185.992, - 174.996, - 184.876, - 152.351, - 154.518, - 134.772, + 79.93, + 140.477, + 204.836, + 199.314, + 201.894, + 207.048, + 197.139, + 181.702, + 186.999, + 162.665, + 172.143, + 139.325, + 141.493, + 121.746, 60.908, 33.107, 33.107, @@ -27601,20 +27601,20 @@ 33.107, 33.107, 66.452, - 76.519, - 127.845, - 190.208, - 186.965, - 189.943, - 197.637, - 202.627, - 194.682, - 209.101, - 204.724, - 207.273, - 161.27, - 166.442, - 143.756, + 79.682, + 140.629, + 204.165, + 201.188, + 204.326, + 212.086, + 209.155, + 195.947, + 209.844, + 187.878, + 194.264, + 148.244, + 153.416, + 130.731, 60.908, 33.107, 33.107, @@ -27625,20 +27625,20 @@ 33.107, 33.107, 66.407, - 76.582, - 129.767, - 194.413, - 195.68, - 233.782, - 229.288, - 236.627, - 255.958, - 255.712, - 211.627, - 221.755, - 173.511, - 173.998, - 147.928, + 79.371, + 131.623, + 202.884, + 209.923, + 247.487, + 243.759, + 251.063, + 261.155, + 263.644, + 199.341, + 208.734, + 160.485, + 160.972, + 134.902, 60.908, 33.107, 33.107, @@ -27649,20 +27649,20 @@ 31.876, 31.876, 65.176, - 58.764, - 92.222, - 140.192, - 181.661, - 187.197, - 198.906, - 223.017, - 223.137, - 225.264, - 205.156, - 199.474, - 138.515, - 100.107, - 98.863, + 62.457, + 106.358, + 154.212, + 195.94, + 201.631, + 213.403, + 226.515, + 223.513, + 225.284, + 192.161, + 186.607, + 125.489, + 87.081, + 85.837, 80.604, 31.876, 31.876, @@ -27673,20 +27673,20 @@ 31.876, 31.876, 28.45, - 10.732, - 56.849, - 51.89, - 98.601, - 97.537, - 139.704, - 143.294, - 138.797, - 144.429, - 132.523, - 91.698, - 73.74, - 13.026, - 13.026, + 14.459, + 70.759, + 65.9, + 112.861, + 111.946, + 154.165, + 148.202, + 140.046, + 145.459, + 120.204, + 78.96, + 60.714, + -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -27697,20 +27697,20 @@ 31.876, 31.876, 28.45, - 10.766, - 56.939, - 52.65, - 100.021, - 111.171, - 155.961, - 147.988, - 138.199, - 140.9, - 125.2, - 88.264, - 72.007, - 13.026, - 13.026, + 14.312, + 70.448, + 66.633, + 114.245, + 125.546, + 170.383, + 153.42, + 139.425, + 141.912, + 112.883, + 75.525, + 58.982, + -0.0, + -0.0, 31.876, 31.876, 31.876, @@ -27721,20 +27721,20 @@ 33.107, 33.107, 66.407, - 76.541, - 127.804, - 189.782, - 187.449, - 195.161, - 194.783, - 190.261, - 181.586, - 187.084, - 175.439, - 185.128, - 153.343, - 153.479, - 135.148, + 80.076, + 141.368, + 203.752, + 201.653, + 209.487, + 209.139, + 195.584, + 182.758, + 188.057, + 163.099, + 172.383, + 140.318, + 140.454, + 122.122, 60.908, 33.107, 33.107, @@ -27745,20 +27745,20 @@ 33.107, 33.107, 66.407, - 76.573, - 127.894, - 190.458, - 184.035, - 194.977, - 209.384, - 198.805, - 188.948, - 194.112, - 182.906, - 190.357, - 154.394, - 152.806, - 133.789, + 79.918, + 141.018, + 204.403, + 198.222, + 209.09, + 223.53, + 204.769, + 190.142, + 195.079, + 170.534, + 177.588, + 141.368, + 139.78, + 120.764, 60.908, 33.107, 33.107, @@ -27769,20 +27769,20 @@ 33.107, 33.107, 66.407, - 76.595, - 127.915, - 190.035, - 183.878, - 184.712, - 191.364, - 191.34, - 183.309, - 189.163, - 177.705, - 187.27, - 156.55, - 154.49, - 135.265, + 79.877, + 141.028, + 203.997, + 198.081, + 199.053, + 205.75, + 197.366, + 184.497, + 190.137, + 165.349, + 174.501, + 143.524, + 141.464, + 122.239, 60.908, 33.107, 33.107, @@ -27793,20 +27793,20 @@ 33.107, 33.107, 66.407, - 76.599, - 127.892, - 189.981, - 183.485, - 180.282, - 180.254, - 176.548, - 168.657, - 175.168, - 164.451, - 175.28, - 146.024, - 152.269, - 133.526, + 79.974, + 141.277, + 203.946, + 197.695, + 194.636, + 194.66, + 182.249, + 169.867, + 176.154, + 152.102, + 162.518, + 132.998, + 139.244, + 120.5, 60.908, 33.107, 33.107, @@ -27817,20 +27817,20 @@ 31.876, 31.876, 68.602, - 58.893, - 92.485, - 142.017, - 184.106, - 180.707, - 179.953, - 178.261, - 177.319, - 183.327, - 171.7, - 181.629, - 129.847, - 96.646, - 96.497, + 62.227, + 105.812, + 155.972, + 198.292, + 195.021, + 194.296, + 183.974, + 178.451, + 184.268, + 159.332, + 168.859, + 116.821, + 83.62, + 83.472, 79.921, 31.876, 31.876, @@ -27841,20 +27841,20 @@ 31.876, 31.876, 31.876, - 10.873, - 57.148, - 54.435, - 106.331, - 101.78, - 132.55, - 132.065, - 123.827, - 122.8, - 114.475, - 87.844, - 75.357, - 13.026, - 13.026, + 14.126, + 70.026, + 68.354, + 120.295, + 115.916, + 146.863, + 138.126, + 124.733, + 123.752, + 102.008, + 75.047, + 62.332, + -0.0, + -0.0, 31.876, 31.876, 31.876, @@ -27865,20 +27865,20 @@ 33.107, 33.107, 69.951, - 76.74, - 128.24, - 192.409, - 185.723, - 181.933, - 181.682, - 181.135, - 171.33, - 178.507, - 167.989, - 178.797, - 149.234, - 151.234, - 133.047, + 79.531, + 139.518, + 206.283, + 199.849, + 196.201, + 196.007, + 189.333, + 172.5, + 179.462, + 155.602, + 165.986, + 136.209, + 138.209, + 120.021, 60.908, 33.107, 33.107, @@ -27889,20 +27889,20 @@ 33.107, 33.107, 70.124, - 76.729, - 128.066, - 191.053, - 184.908, - 184.462, - 189.152, - 189.787, - 182.33, - 189.476, - 178.763, - 188.622, - 156.813, - 153.714, - 135.159, + 79.688, + 140.712, + 204.979, + 199.074, + 198.785, + 203.541, + 196.578, + 183.532, + 190.461, + 166.4, + 175.83, + 143.787, + 140.688, + 122.133, 60.908, 33.107, 33.107, @@ -27913,20 +27913,20 @@ 33.107, 33.107, 69.833, - 76.685, - 127.998, - 190.16, - 185.604, - 184.707, - 183.615, - 188.801, - 189.326, - 195.048, - 181.709, - 187.562, - 152.082, - 153.095, - 134.477, + 79.687, + 141.195, + 204.12, + 199.814, + 199.065, + 198.02, + 195.022, + 190.509, + 196.013, + 169.332, + 174.765, + 139.056, + 140.07, + 121.452, 60.908, 33.107, 33.107, @@ -27937,20 +27937,20 @@ 33.107, 33.107, 69.833, - 76.689, - 127.981, - 194.175, - 203.229, - 198.931, - 198.272, - 194.165, - 185.332, - 191.216, - 179.75, - 190.575, - 159.927, - 154.458, - 135.824, + 79.727, + 141.369, + 208.156, + 217.453, + 213.3, + 212.684, + 200.174, + 186.516, + 192.185, + 167.38, + 177.777, + 146.901, + 141.433, + 122.799, 60.908, 33.107, 33.107, @@ -27961,20 +27961,20 @@ 33.107, 33.107, 69.833, - 76.72, - 128.327, - 206.268, - 218.058, - 236.61, - 235.143, - 227.881, - 217.398, - 224.148, - 203.425, - 199.243, - 161.19, - 155.052, - 136.514, + 79.436, + 141.465, + 220.219, + 232.231, + 250.939, + 249.538, + 234.447, + 218.605, + 225.134, + 191.059, + 186.424, + 148.165, + 142.027, + 123.488, 60.908, 33.107, 33.107, @@ -27985,20 +27985,20 @@ 31.876, 31.876, 68.602, - 59.036, - 92.648, - 142.252, - 183.979, - 180.333, - 179.169, - 176.021, - 177.577, - 191.108, - 179.615, - 188.853, - 130.63, - 96.531, - 96.497, + 61.446, + 105.523, + 156.201, + 198.174, + 194.664, + 193.545, + 183.09, + 178.751, + 192.072, + 167.237, + 176.02, + 117.605, + 83.505, + 83.472, 79.921, 31.876, 31.876, @@ -28009,20 +28009,20 @@ 31.876, 31.876, 31.876, - 11.018, - 57.291, - 53.812, - 100.617, - 97.314, - 131.834, - 129.017, - 117.74, - 123.408, - 112.903, - 88.859, - 78.784, - 13.026, - 13.026, + 13.225, + 70.036, + 67.757, + 114.801, + 111.622, + 146.177, + 136.368, + 118.884, + 124.341, + 100.502, + 76.025, + 65.758, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -28033,20 +28033,20 @@ 33.107, 33.107, 69.963, - 76.965, - 128.155, - 190.25, - 183.775, - 179.785, - 178.42, - 176.408, - 179.863, - 191.337, - 180.331, - 188.426, - 154.04, - 149.737, - 131.925, + 79.034, + 141.07, + 204.21, + 197.978, + 194.138, + 192.826, + 183.8, + 181.063, + 192.312, + 167.952, + 175.613, + 141.015, + 136.712, + 118.899, 60.908, 33.107, 33.107, @@ -28057,20 +28057,20 @@ 33.107, 33.107, 70.01, - 76.908, - 128.13, - 190.201, - 183.956, - 180.193, - 180.006, - 180.244, - 175.458, - 184.342, - 173.555, - 184.189, - 153.369, - 151.424, - 133.157, + 78.904, + 141.058, + 204.163, + 198.153, + 194.532, + 194.39, + 187.664, + 176.63, + 185.295, + 161.162, + 171.359, + 140.344, + 138.398, + 120.131, 60.908, 33.107, 33.107, @@ -28081,20 +28081,20 @@ 33.107, 33.107, 70.007, - 76.942, - 128.32, - 191.943, - 185.3, - 182.428, - 186.908, - 190.76, - 180.741, - 194.53, - 179.263, - 185.361, - 152.667, - 150.987, - 133.003, + 78.424, + 139.926, + 205.839, + 199.446, + 196.732, + 201.262, + 199.912, + 181.765, + 195.014, + 166.586, + 172.424, + 139.641, + 137.962, + 119.977, 60.908, 33.107, 33.107, @@ -28105,20 +28105,20 @@ 33.107, 33.107, 69.971, - 80.358, - 128.344, - 191.959, - 184.882, - 180.789, - 179.34, - 179.532, - 167.291, - 174.238, - 164.616, - 175.286, - 151.063, - 150.955, - 132.765, + 81.715, + 139.796, + 205.854, + 199.044, + 195.105, + 193.713, + 188.963, + 168.445, + 175.131, + 152.139, + 162.399, + 138.038, + 137.93, + 119.74, 60.908, 33.107, 33.107, @@ -28129,20 +28129,20 @@ 33.107, 33.107, 70.385, - 80.632, - 128.303, - 190.69, - 183.289, - 181.157, - 183.673, - 182.724, - 169.978, - 176.271, - 166.939, - 178.641, - 152.646, - 151.68, - 133.031, + 81.962, + 140.139, + 204.634, + 197.512, + 195.548, + 198.14, + 191.93, + 171.254, + 177.314, + 154.597, + 165.822, + 139.621, + 138.654, + 120.006, 60.908, 33.107, 33.107, @@ -28153,20 +28153,20 @@ 31.876, 31.876, 69.127, - 62.985, - 92.669, - 140.481, - 181.906, - 177.918, - 177.979, - 176.856, - 166.907, - 173.101, - 163.22, - 175.322, - 133.856, - 96.853, - 96.497, + 64.592, + 106.301, + 154.501, + 196.182, + 192.344, + 192.447, + 184.054, + 168.156, + 174.116, + 150.872, + 162.504, + 120.83, + 83.828, + 83.472, 79.921, 31.876, 31.876, @@ -28177,20 +28177,20 @@ 31.876, 31.876, 31.876, - 14.542, - 57.321, - 52.186, - 98.538, - 95.372, - 136.859, - 139.787, - 129.902, - 132.063, - 118.624, - 91.151, - 78.788, - 13.026, - 13.026, + 16.039, + 70.862, + 66.196, + 112.804, + 109.785, + 151.311, + 147.161, + 131.119, + 133.046, + 106.244, + 78.316, + 65.762, + 0.0, + -0.0, 31.876, 31.876, 31.876, @@ -28201,20 +28201,20 @@ 33.107, 33.107, 70.311, - 80.624, - 128.188, - 189.705, - 184.505, - 194.898, - 210.815, - 217.518, - 212.181, - 222.386, - 205.128, - 205.323, - 169.004, - 163.033, - 139.663, + 81.938, + 141.306, + 203.689, + 198.73, + 209.273, + 225.233, + 225.447, + 213.382, + 223.357, + 192.734, + 192.474, + 155.978, + 150.008, + 126.637, 60.908, 33.107, 33.107, @@ -28225,20 +28225,20 @@ 33.107, 33.107, 69.889, - 80.35, - 128.228, - 190.022, - 190.109, - 205.297, - 217.657, - 225.389, - 222.214, - 212.037, - 192.773, - 193.056, - 162.635, - 155.053, - 134.174, + 81.564, + 141.225, + 203.998, + 204.322, + 219.64, + 232.037, + 233.484, + 222.991, + 212.891, + 180.233, + 180.197, + 149.61, + 142.027, + 121.148, 60.908, 33.107, 33.107, @@ -28249,20 +28249,20 @@ 33.107, 33.107, 69.899, - 80.369, - 128.278, - 190.648, - 205.609, - 206.356, - 204.463, - 201.845, - 189.613, - 195.258, - 185.211, - 199.288, - 157.854, - 152.527, - 134.03, + 81.507, + 141.034, + 204.606, + 219.479, + 220.648, + 218.81, + 210.233, + 190.781, + 196.214, + 172.806, + 186.315, + 144.828, + 139.501, + 121.005, 60.908, 33.107, 33.107, @@ -28273,20 +28273,20 @@ 33.107, 33.107, 69.929, - 80.415, - 128.327, - 190.406, - 182.996, - 183.787, - 194.661, - 197.279, - 172.254, - 181.491, - 166.121, - 180.863, - 151.631, - 150.538, - 132.025, + 81.382, + 140.813, + 204.364, + 197.234, + 197.992, + 209.445, + 208.796, + 169.066, + 182.18, + 153.661, + 167.955, + 138.606, + 137.513, + 119.0, 60.908, 33.107, 33.107, @@ -28297,20 +28297,20 @@ 33.107, 33.107, 70.588, - 80.9, - 128.437, - 190.835, - 183.777, - 179.832, - 180.241, - 181.356, - 168.125, - 174.27, - 164.442, - 180.204, - 152.371, - 151.071, - 132.506, + 81.454, + 140.386, + 204.778, + 197.985, + 194.193, + 194.644, + 191.114, + 169.332, + 175.248, + 152.056, + 167.337, + 139.346, + 138.046, + 119.481, 60.908, 33.107, 33.107, @@ -28321,20 +28321,20 @@ 31.876, 31.876, 69.102, - 63.058, - 92.839, - 140.775, - 181.798, - 177.544, - 176.196, - 174.264, - 162.981, - 169.829, - 160.572, - 177.037, - 131.925, - 96.497, - 96.497, + 63.787, + 106.29, + 154.789, + 196.082, + 191.988, + 190.692, + 182.504, + 164.244, + 170.838, + 148.201, + 164.163, + 118.899, + 83.472, + 83.472, 79.944, 31.876, 31.876, @@ -28345,20 +28345,20 @@ 31.876, 31.876, 31.876, - 14.636, - 57.979, - 53.147, - 99.181, - 95.091, - 129.221, - 127.785, - 115.817, - 122.303, - 113.2, - 93.885, - 78.784, - 13.026, - 13.026, + 15.239, + 70.959, + 67.129, + 113.427, + 109.491, + 143.671, + 136.551, + 117.041, + 123.287, + 100.797, + 80.99, + 65.758, + -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -28369,20 +28369,20 @@ 33.107, 33.107, 33.107, - 57.018, - 75.412, - 124.788, - 183.882, - 179.77, - 178.417, - 179.365, - 167.754, - 174.433, - 164.692, - 180.512, - 200.372, - 151.007, - 150.328, + 57.45, + 87.648, + 138.737, + 198.088, + 194.131, + 192.833, + 188.973, + 168.952, + 175.387, + 152.28, + 167.611, + 187.346, + 137.981, + 137.303, 150.796, 60.908, 33.107, @@ -28393,20 +28393,20 @@ 33.107, 33.107, 33.107, - 56.798, - 75.575, - 125.127, - 184.476, - 180.695, - 185.59, - 195.224, - 182.45, - 188.161, - 176.609, - 183.655, - 200.663, - 150.98, - 150.51, + 57.145, + 87.549, + 139.064, + 198.659, + 195.022, + 199.954, + 205.113, + 183.602, + 189.092, + 164.193, + 170.751, + 187.637, + 137.954, + 137.484, 151.025, 60.908, 33.107, @@ -28417,20 +28417,20 @@ 33.107, 33.107, 33.107, - 56.463, - 75.421, - 125.426, - 185.112, - 182.331, - 188.382, - 193.924, - 180.397, - 186.064, - 175.439, - 189.207, - 202.055, - 151.812, - 150.916, + 56.782, + 87.432, + 139.352, + 199.271, + 196.624, + 202.728, + 203.799, + 181.55, + 186.992, + 163.013, + 176.297, + 189.029, + 138.787, + 137.89, 151.694, 60.908, 33.107, @@ -28441,20 +28441,20 @@ 33.107, 33.107, 33.107, - 56.636, - 75.424, - 125.576, - 191.317, - 203.365, - 211.802, - 219.57, - 204.173, - 204.467, - 188.196, - 199.587, - 213.923, - 156.127, - 152.596, + 56.759, + 87.175, + 139.498, + 205.484, + 217.674, + 226.152, + 229.868, + 205.307, + 205.373, + 175.742, + 186.661, + 200.898, + 143.101, + 139.57, 152.94, 60.908, 33.107, @@ -28465,20 +28465,20 @@ 33.107, 33.107, 33.107, - 56.213, - 75.45, - 126.045, - 187.674, - 198.077, - 210.171, - 224.052, - 202.085, - 205.985, - 193.326, - 201.88, - 212.076, - 154.352, - 153.367, + 56.382, + 86.896, + 139.948, + 201.787, + 212.323, + 224.491, + 234.264, + 203.231, + 206.907, + 180.881, + 188.957, + 199.05, + 141.327, + 140.342, 153.733, 60.908, 33.107, @@ -28490,19 +28490,19 @@ 31.876, 31.876, 54.955, - 57.714, - 89.836, - 137.195, - 197.299, - 205.67, - 206.615, - 194.093, - 204.96, - 195.699, - 202.533, - 213.396, - 135.573, - 99.181, + 69.465, + 103.77, + 151.384, + 211.654, + 220.078, + 217.101, + 195.287, + 205.914, + 183.267, + 189.603, + 200.371, + 122.548, + 86.155, 117.506, 80.336, 31.876, @@ -28514,19 +28514,19 @@ 31.876, 31.876, 18.171, - 9.947, - 56.359, - 49.276, - 97.478, - 96.002, - 132.645, - 129.435, - 125.567, - 116.396, - 136.357, - 114.211, - 78.784, - 13.026, + 19.119, + 70.932, + 63.4, + 111.79, + 110.371, + 146.969, + 128.061, + 126.444, + 103.889, + 123.336, + 101.185, + 65.758, + 0.0, 31.876, 31.876, 31.876, @@ -28538,19 +28538,19 @@ 33.107, 33.107, 56.589, - 75.813, - 128.226, - 185.975, - 181.289, - 179.66, - 180.711, - 174.497, - 171.69, - 162.281, - 181.787, - 197.856, - 149.638, - 149.638, + 85.089, + 139.463, + 200.103, + 195.595, + 194.029, + 195.042, + 176.442, + 172.632, + 149.848, + 168.86, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -28562,19 +28562,19 @@ 33.107, 33.107, 56.765, - 76.422, - 128.194, - 185.62, - 181.51, - 189.035, - 200.946, - 205.232, - 193.221, - 181.683, - 189.962, - 200.773, - 151.682, - 150.588, + 80.438, + 139.71, + 199.763, + 195.81, + 203.143, + 214.887, + 211.501, + 193.875, + 169.021, + 176.941, + 187.748, + 138.656, + 137.563, 150.941, 60.908, 33.107, @@ -28586,19 +28586,19 @@ 33.107, 33.107, 56.956, - 77.029, - 126.814, - 193.358, - 180.833, - 179.058, - 180.019, - 178.213, - 171.565, - 162.543, - 183.779, - 198.102, - 149.702, - 149.638, + 77.843, + 140.69, + 208.893, + 195.157, + 193.45, + 194.377, + 184.163, + 172.524, + 150.111, + 170.777, + 185.076, + 136.677, + 136.613, 150.775, 60.908, 33.107, @@ -28610,19 +28610,19 @@ 33.107, 33.107, 58.108, - 77.28, - 128.011, - 185.98, - 181.154, - 179.599, - 180.561, - 165.841, - 172.095, - 162.823, - 182.517, - 198.329, - 150.146, - 150.127, + 87.421, + 141.895, + 200.142, + 195.482, + 193.989, + 193.114, + 166.478, + 173.03, + 150.375, + 169.57, + 185.303, + 137.121, + 137.101, 151.285, 60.908, 33.107, @@ -28634,19 +28634,19 @@ 33.107, 33.107, 61.214, - 76.227, - 123.936, - 182.128, - 177.784, - 176.407, - 176.629, - 163.077, - 169.799, - 161.25, - 181.879, - 197.856, - 149.638, - 149.638, + 88.234, + 137.925, + 196.406, + 192.225, + 190.901, + 186.944, + 164.343, + 170.816, + 148.859, + 168.949, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -28658,19 +28658,19 @@ 31.876, 31.876, 59.146, - 58.06, - 89.721, - 135.592, - 179.438, - 178.086, - 179.384, - 165.495, - 171.956, - 168.67, - 184.556, - 198.554, - 132.17, - 96.497, + 69.363, + 103.663, + 149.806, + 193.817, + 192.518, + 190.317, + 166.702, + 172.923, + 153.098, + 171.543, + 185.528, + 119.145, + 83.472, 115.348, 79.921, 31.876, @@ -28682,19 +28682,19 @@ 31.876, 31.876, 21.597, - 10.65, - 57.35, - 47.389, - 104.785, - 101.469, - 145.263, - 145.971, - 147.038, - 116.831, - 135.625, - 114.211, - 78.784, - 13.026, + 14.618, + 70.094, + 61.59, + 118.817, + 115.63, + 159.585, + 156.089, + 144.667, + 104.289, + 122.61, + 101.185, + 65.758, + -0.0, 31.876, 31.876, 31.876, @@ -28706,19 +28706,19 @@ 33.107, 33.107, 60.25, - 76.269, - 128.778, - 185.878, - 191.873, - 190.786, - 194.671, - 184.561, - 176.486, - 163.464, - 183.33, - 198.407, - 149.927, - 149.638, + 86.112, + 137.902, + 200.013, + 205.771, + 204.725, + 201.381, + 198.525, + 173.497, + 151.01, + 170.363, + 185.381, + 136.901, + 136.613, 150.775, 60.908, 33.107, @@ -28730,19 +28730,19 @@ 33.107, 33.107, 60.08, - 75.733, - 126.577, - 188.105, - 202.066, - 220.649, - 235.432, - 222.345, - 228.982, - 209.285, - 208.489, - 214.204, - 156.615, - 153.792, + 86.083, + 140.465, + 202.256, + 216.386, + 234.798, + 247.147, + 222.799, + 229.333, + 196.382, + 195.464, + 201.178, + 143.589, + 140.767, 154.018, 60.908, 33.107, @@ -28754,19 +28754,19 @@ 33.107, 33.107, 59.575, - 75.754, - 126.479, - 186.793, - 186.529, - 194.2, - 200.252, - 187.601, - 193.533, - 184.04, - 200.741, - 204.825, - 153.607, - 152.371, + 85.703, + 140.372, + 200.971, + 200.856, + 208.577, + 213.158, + 188.026, + 194.457, + 171.583, + 187.777, + 191.799, + 140.582, + 139.346, 152.156, 60.908, 33.107, @@ -28778,19 +28778,19 @@ 31.876, 31.876, 21.597, - 10.754, - 57.324, - 56.475, - 98.072, - 96.266, - 132.775, - 133.8, - 123.966, - 119.59, - 135.622, - 114.211, - 78.784, - 13.026, + 14.003, + 69.698, + 72.548, + 112.366, + 110.629, + 147.1, + 138.097, + 124.893, + 106.936, + 122.608, + 101.185, + 65.758, + -0.0, 31.876, 31.876, 31.876, @@ -28802,19 +28802,19 @@ 33.107, 33.107, 60.472, - 76.372, - 125.642, - 183.762, - 179.084, - 177.435, - 179.408, - 165.728, - 171.982, - 162.889, - 184.643, - 197.899, - 149.638, - 149.638, + 86.548, + 139.579, + 197.98, + 193.48, + 191.894, + 191.955, + 166.455, + 172.964, + 150.476, + 171.629, + 184.874, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -28826,19 +28826,19 @@ 31.876, 31.876, 58.961, - 59.215, - 90.834, - 136.292, - 180.292, - 178.556, - 179.598, - 171.758, - 170.805, - 161.83, - 182.435, - 197.856, - 131.925, - 96.497, + 62.496, + 104.747, + 150.482, + 194.641, + 192.972, + 193.976, + 177.193, + 171.786, + 149.418, + 169.481, + 184.831, + 118.899, + 83.472, 115.348, 79.921, 31.876, @@ -28850,19 +28850,19 @@ 31.876, 31.876, 21.597, - 10.761, - 55.209, - 48.415, - 97.874, - 96.024, - 132.349, - 124.537, - 123.703, - 114.214, - 134.294, - 114.211, - 78.784, - 13.026, + 14.039, + 69.12, + 62.578, + 112.176, + 110.397, + 146.691, + 129.936, + 124.641, + 101.779, + 121.338, + 101.185, + 65.758, + -0.0, 31.876, 31.876, 31.876, @@ -28874,19 +28874,19 @@ 33.107, 33.107, 60.177, - 76.552, - 126.454, - 185.6, - 184.026, - 191.234, - 202.584, - 198.046, - 198.491, - 187.786, - 202.193, - 210.659, - 154.49, - 152.222, + 80.163, + 140.351, + 199.751, + 198.322, + 205.564, + 216.868, + 203.088, + 199.409, + 175.349, + 189.242, + 197.633, + 141.465, + 139.197, 151.715, 60.908, 33.107, @@ -28898,19 +28898,19 @@ 33.107, 33.107, 63.859, - 76.983, - 128.432, - 193.287, - 187.761, - 189.613, - 192.279, - 187.632, - 174.656, - 164.709, - 184.11, - 198.719, - 149.747, - 149.638, + 79.627, + 139.165, + 209.028, + 201.823, + 203.624, + 206.222, + 194.335, + 175.542, + 152.239, + 171.14, + 185.693, + 136.721, + 136.613, 150.775, 60.908, 33.107, @@ -28922,19 +28922,19 @@ 33.107, 33.107, 64.403, - 77.018, - 128.371, - 186.587, - 181.733, - 180.978, - 184.758, - 185.474, - 176.322, - 166.616, - 186.308, - 200.331, - 150.582, - 149.719, + 79.709, + 139.752, + 200.698, + 196.028, + 195.353, + 199.102, + 193.596, + 177.277, + 154.198, + 173.357, + 187.306, + 137.556, + 136.693, 150.775, 60.908, 33.107, @@ -28946,19 +28946,19 @@ 33.107, 33.107, 64.31, - 76.481, - 127.375, - 185.892, - 181.601, - 181.982, - 183.861, - 171.034, - 175.013, - 193.574, - 205.786, + 84.707, + 141.332, + 200.031, + 195.907, + 196.362, + 198.206, + 171.612, + 175.956, + 193.795, + 205.787, 217.926, - 167.098, - 149.638, + 160.331, + 136.613, 150.775, 60.908, 33.107, @@ -28970,19 +28970,19 @@ 33.107, 33.107, 64.044, - 77.396, - 129.094, - 194.431, - 196.047, - 195.577, - 195.934, - 195.879, - 195.408, - 174.716, - 182.749, - 197.856, - 149.638, - 149.638, + 77.898, + 134.948, + 203.179, + 196.445, + 197.941, + 196.803, + 196.976, + 198.62, + 161.784, + 169.782, + 184.831, + 136.613, + 136.613, 150.799, 60.908, 33.107, @@ -28994,19 +28994,19 @@ 31.876, 31.876, 63.269, - 59.448, - 92.853, - 144.726, - 188.782, - 190.7, - 188.798, - 182.626, - 189.466, - 195.3, - 189.742, - 197.856, - 131.936, - 96.672, + 66.668, + 107.605, + 158.601, + 202.805, + 204.645, + 202.821, + 182.824, + 189.713, + 190.56, + 171.125, + 184.831, + 118.91, + 83.647, 115.624, 80.35, 31.876, @@ -29018,19 +29018,19 @@ 31.876, 31.876, 25.024, - 11.006, - 60.474, - 60.113, - 112.655, - 110.737, - 146.204, - 145.222, - 146.669, - 134.258, - 136.48, - 115.082, - 79.784, - 13.026, + 12.522, + 63.76, + 62.998, + 117.366, + 126.958, + 161.718, + 159.111, + 161.633, + 125.178, + 123.478, + 102.057, + 66.759, + 0.0, 31.876, 31.876, 31.876, @@ -29042,19 +29042,19 @@ 33.107, 33.107, 65.086, - 77.492, - 131.025, - 185.912, - 193.549, - 193.012, - 192.005, - 194.492, - 196.102, - 162.415, - 183.958, - 197.856, - 149.638, - 149.638, + 84.424, + 131.174, + 200.054, + 207.701, + 207.967, + 205.901, + 202.881, + 196.272, + 149.981, + 170.939, + 184.831, + 136.613, + 136.613, 150.798, 60.908, 33.107, @@ -29066,19 +29066,19 @@ 33.107, 33.107, 64.307, - 76.639, - 126.932, - 184.441, - 180.267, - 184.546, - 189.664, - 172.785, - 174.923, - 165.299, - 188.886, - 198.271, - 149.638, - 149.638, + 83.846, + 140.814, + 198.637, + 194.64, + 198.995, + 204.077, + 174.5, + 175.925, + 152.886, + 175.869, + 185.245, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -29090,19 +29090,19 @@ 33.107, 33.107, 63.609, - 76.169, - 127.463, - 186.021, - 181.55, - 179.797, - 188.258, - 169.29, - 180.249, - 167.114, - 186.948, - 198.375, - 150.137, - 149.789, + 83.358, + 141.56, + 200.156, + 195.854, + 194.178, + 202.329, + 170.728, + 180.885, + 154.515, + 173.972, + 185.349, + 137.112, + 136.764, 150.775, 60.908, 33.107, @@ -29114,19 +29114,19 @@ 33.107, 33.107, 63.636, - 76.373, - 127.47, - 185.524, - 180.943, - 179.064, - 180.106, - 179.061, - 171.512, - 162.381, - 186.247, - 197.856, - 149.638, - 149.638, + 83.136, + 141.455, + 199.678, + 195.271, + 193.464, + 194.468, + 180.626, + 172.468, + 149.949, + 173.277, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -29138,19 +29138,19 @@ 33.107, 33.107, 64.106, - 76.62, - 127.083, - 184.946, - 179.977, - 178.934, - 180.678, - 169.412, - 172.221, - 163.578, - 187.695, - 199.052, - 150.478, - 149.68, + 83.415, + 140.96, + 199.123, + 194.343, + 193.374, + 195.077, + 171.505, + 173.209, + 151.159, + 174.726, + 186.027, + 137.452, + 136.655, 150.775, 60.908, 33.107, @@ -29162,19 +29162,19 @@ 31.876, 31.876, 66.204, - 59.105, - 91.557, - 136.464, - 182.728, - 182.937, - 179.545, - 174.562, - 170.936, - 161.694, - 186.04, - 197.856, - 131.925, - 96.497, + 65.707, + 105.441, + 150.651, + 196.988, + 197.188, + 193.928, + 176.589, + 171.915, + 149.29, + 173.08, + 184.831, + 118.899, + 83.472, 115.348, 79.921, 31.876, @@ -29186,19 +29186,19 @@ 31.876, 31.876, 28.45, - 10.435, - 56.867, - 49.109, - 97.366, - 95.049, - 130.91, - 142.165, - 140.771, - 128.659, - 138.046, - 114.211, - 78.784, - 13.026, + 16.641, + 71.193, + 63.25, + 111.69, + 109.463, + 145.31, + 143.498, + 141.037, + 117.74, + 125.075, + 101.185, + 65.758, + 0.0, 31.876, 31.876, 31.876, @@ -29210,19 +29210,19 @@ 33.392, 33.37, 68.291, - 77.544, - 128.058, - 192.798, - 193.401, - 179.173, - 195.919, - 194.562, - 195.523, - 170.292, - 183.212, - 197.856, - 149.65, - 150.07, + 83.312, + 142.468, + 206.67, + 208.64, + 193.568, + 196.85, + 202.551, + 198.195, + 157.538, + 170.225, + 184.831, + 136.625, + 137.045, 151.62, 60.908, 33.107, @@ -29234,19 +29234,19 @@ 34.096, 34.422, 68.957, - 77.79, - 127.935, - 185.005, - 179.918, - 177.717, - 178.641, - 168.401, - 170.428, - 161.409, - 182.547, - 197.856, - 149.638, - 149.638, + 83.857, + 141.893, + 199.18, + 194.285, + 192.169, + 193.06, + 171.102, + 171.427, + 149.016, + 169.589, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -29258,19 +29258,19 @@ 34.072, 34.376, 68.876, - 77.473, - 127.429, - 184.969, - 179.941, - 178.012, - 179.045, - 168.474, - 170.523, - 161.439, - 182.409, - 197.856, - 149.638, - 149.638, + 83.535, + 141.3, + 199.146, + 194.307, + 192.453, + 193.448, + 171.274, + 171.518, + 149.045, + 169.457, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -29282,19 +29282,19 @@ 33.8, 34.142, 68.678, - 77.177, - 128.842, - 186.272, - 181.899, - 180.625, - 181.127, - 181.021, - 171.496, - 162.04, - 182.556, - 197.856, - 149.638, - 149.638, + 82.725, + 137.268, + 200.399, + 196.191, + 194.965, + 195.45, + 189.223, + 172.453, + 149.621, + 169.597, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -29306,19 +29306,19 @@ 33.216, 33.336, 68.178, - 77.049, - 128.711, - 186.016, - 191.025, - 191.319, - 193.108, - 195.708, - 191.093, - 161.974, - 184.022, - 197.856, - 149.638, - 149.638, + 81.895, + 138.028, + 200.153, + 204.961, + 205.242, + 206.97, + 198.383, + 196.07, + 149.566, + 171.006, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -29330,19 +29330,19 @@ 31.876, 31.876, 66.533, - 59.29, - 92.138, - 136.788, - 179.654, - 177.831, - 179.665, - 169.727, - 170.942, - 162.009, - 183.249, - 198.449, - 131.925, - 96.497, + 64.676, + 106.109, + 150.964, + 194.032, + 192.298, + 194.107, + 173.1, + 171.977, + 149.65, + 170.32, + 185.423, + 118.899, + 83.472, 115.348, 79.921, 31.876, @@ -29354,19 +29354,19 @@ 31.876, 31.876, 28.45, - 10.522, - 56.693, - 48.711, - 98.391, - 100.399, - 143.156, - 130.017, - 131.917, - 124.947, - 140.9, - 115.557, - 79.266, - 13.026, + 16.076, + 70.66, + 62.868, + 112.727, + 114.806, + 157.529, + 133.174, + 132.908, + 112.566, + 127.886, + 102.532, + 66.24, + 0.0, 31.876, 31.876, 31.876, @@ -29378,19 +29378,19 @@ 33.107, 33.107, 67.493, - 76.807, - 129.62, - 186.738, - 194.067, - 212.5, - 214.884, - 223.532, - 202.216, - 181.775, - 195.21, - 201.895, - 152.637, - 151.68, + 80.651, + 132.229, + 200.848, + 208.105, + 226.541, + 229.241, + 237.663, + 204.388, + 169.383, + 182.277, + 188.87, + 139.612, + 138.654, 152.061, 60.908, 33.107, @@ -29402,19 +29402,19 @@ 33.107, 33.107, 67.138, - 76.415, - 127.58, - 186.695, - 195.054, - 212.426, - 216.743, - 204.645, - 199.741, - 186.689, - 201.518, - 210.789, - 156.177, - 154.416, + 81.518, + 141.743, + 200.846, + 209.387, + 226.829, + 231.114, + 208.021, + 200.734, + 174.308, + 188.582, + 197.763, + 143.151, + 141.391, 154.606, 60.908, 33.107, @@ -29426,19 +29426,19 @@ 33.107, 33.107, 66.557, - 76.372, - 127.662, - 187.771, - 197.8, - 213.427, - 225.704, - 216.529, - 208.207, - 193.196, - 199.899, - 202.737, - 152.871, - 151.617, + 81.207, + 142.401, + 201.892, + 212.062, + 227.746, + 240.014, + 219.52, + 209.157, + 180.777, + 186.945, + 189.712, + 139.845, + 138.591, 151.877, 60.908, 33.107, @@ -29450,19 +29450,19 @@ 33.107, 33.107, 66.762, - 76.816, - 128.898, - 195.634, - 200.758, - 210.33, - 217.801, - 207.671, - 202.135, - 181.986, - 193.586, - 202.108, - 152.795, - 151.952, + 78.356, + 136.954, + 208.001, + 214.854, + 224.711, + 231.843, + 221.953, + 202.546, + 169.623, + 180.631, + 189.083, + 139.769, + 138.927, 152.122, 60.908, 33.107, @@ -29474,19 +29474,19 @@ 33.107, 33.107, 66.962, - 76.542, - 127.81, - 187.407, - 187.318, - 199.637, - 190.437, - 183.209, - 180.977, - 171.893, - 188.819, - 201.127, - 151.335, - 150.39, + 80.83, + 143.589, + 201.51, + 201.606, + 213.647, + 204.797, + 185.671, + 181.962, + 159.497, + 175.884, + 188.101, + 138.309, + 137.364, 150.879, 60.908, 33.107, @@ -29498,19 +29498,19 @@ 31.876, 31.876, 66.192, - 59.244, - 92.343, - 138.636, - 182.18, - 180.965, - 181.847, - 188.724, - 177.524, - 174.09, - 185.642, - 198.82, - 131.925, - 96.497, + 63.621, + 107.616, + 152.741, + 196.474, + 195.343, + 196.199, + 191.069, + 178.325, + 161.261, + 172.621, + 185.794, + 118.899, + 83.472, 115.348, 79.921, 31.876, @@ -29522,19 +29522,19 @@ 31.876, 31.876, 31.876, - 10.706, - 57.38, - 49.966, - 98.249, - 97.542, - 134.62, - 125.616, - 125.53, - 113.216, - 135.35, - 114.211, - 78.784, - 13.026, + 14.932, + 73.053, + 64.076, + 112.541, + 111.92, + 148.976, + 128.249, + 126.404, + 100.82, + 122.346, + 101.185, + 65.758, + -0.0, 31.876, 31.876, 31.876, @@ -29546,19 +29546,19 @@ 33.107, 33.107, 71.776, - 77.545, - 127.836, - 185.034, - 180.404, - 191.415, - 216.158, - 202.598, - 191.778, - 179.005, - 186.246, - 198.979, - 150.366, - 149.693, + 82.202, + 141.862, + 199.21, + 194.779, + 205.866, + 230.29, + 206.144, + 192.448, + 166.25, + 173.23, + 185.953, + 137.34, + 136.667, 150.775, 60.908, 33.107, @@ -29570,19 +29570,19 @@ 31.876, 31.876, 31.876, - 10.653, - 57.105, - 48.6, - 97.965, - 106.721, - 153.519, - 146.51, - 142.569, - 124.817, - 136.408, - 114.229, - 78.784, - 13.026, + 15.203, + 71.34, + 62.762, + 112.316, + 120.902, + 167.766, + 150.377, + 143.595, + 112.482, + 123.521, + 101.204, + 65.758, + -0.0, 31.876, 31.876, 31.876, @@ -29594,19 +29594,19 @@ 33.107, 33.107, 70.91, - 77.238, - 128.104, - 186.864, - 189.839, - 188.187, - 190.443, - 183.965, - 181.012, - 187.062, - 183.873, - 197.856, - 149.638, - 149.638, + 81.387, + 143.348, + 200.969, + 203.823, + 202.233, + 204.403, + 186.67, + 181.591, + 174.25, + 170.858, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -29618,19 +29618,19 @@ 33.107, 33.107, 71.064, - 77.777, - 129.455, - 194.907, - 193.775, - 191.003, - 187.129, - 193.45, - 194.666, - 179.971, - 202.192, - 203.533, - 149.638, - 149.638, + 78.444, + 133.91, + 201.018, + 206.743, + 204.94, + 201.22, + 209.524, + 203.035, + 180.613, + 199.662, + 184.831, + 136.613, + 136.613, 150.775, 60.908, 33.107, @@ -29642,19 +29642,19 @@ 33.107, 33.107, 71.135, - 77.736, - 128.678, - 193.35, - 193.761, - 194.901, - 194.989, - 195.802, - 195.357, - 192.24, - 202.853, + 77.998, + 139.403, + 208.857, + 206.853, + 200.474, + 200.115, + 197.221, + 198.821, + 192.386, + 202.858, 216.707, - 155.942, - 149.638, + 138.826, + 136.613, 150.775, 60.908, 33.107, @@ -29666,19 +29666,19 @@ 31.876, 31.876, 69.848, - 60.002, - 95.031, - 146.698, - 195.48, - 195.157, - 195.754, - 195.777, - 195.978, - 194.196, - 200.352, + 60.576, + 95.256, + 152.759, + 198.283, + 199.419, + 197.375, + 199.527, + 211.776, + 194.287, + 200.462, 216.707, - 139.443, - 96.497, + 123.493, + 83.472, 115.415, 80.182, 31.876, @@ -29690,19 +29690,19 @@ 31.876, 31.876, 31.876, - 10.838, - 59.941, - 57.99, - 112.078, - 111.297, - 146.711, - 146.89, - 147.191, - 125.189, - 135.735, - 114.211, - 78.784, - 13.026, + 14.092, + 61.32, + 66.725, + 113.826, + 116.662, + 152.161, + 151.486, + 150.402, + 112.309, + 122.716, + 101.185, + 65.758, + 0.0, 31.876, 31.876, 31.876, @@ -29714,19 +29714,19 @@ 33.107, 33.107, 70.664, - 77.09, - 128.211, - 187.975, - 181.994, - 179.546, - 189.3, - 184.428, - 169.921, - 165.391, - 179.79, - 197.856, - 149.638, - 149.638, + 80.413, + 144.086, + 202.036, + 196.282, + 193.927, + 203.303, + 187.298, + 170.937, + 152.833, + 166.946, + 184.831, + 136.613, + 136.613, 150.791, 60.908, 33.107, @@ -29737,7 +29737,7 @@ "annual_emissions_tonnes_PM25": 0.03, "lifecycle_emissions_tonnes_NOx": 2.84, "annual_emissions_tonnes_PM25_bau": 0.03, - "annual_energy_supplied_kwh": 914721.13, + "annual_energy_supplied_kwh": 920618.46, "emissions_region": "California", "electric_to_storage_series_kw": [ 0.0, @@ -38501,7 +38501,7 @@ 0.0, 0.0 ], - "lifecycle_emissions_tonnes_NOx_bau": 3.1, + "lifecycle_emissions_tonnes_NOx_bau": 3.11, "electric_to_load_series_kw_bau": [ 31.876, 31.876, @@ -38510,16 +38510,16 @@ 32.388, 32.759, 32.725, - 11.65, - 60.99, - 60.206, - 112.996, - 113.11, - 148.575, - 148.548, - 148.445, - 148.264, - 151.43, + 11.701, + 61.786, + 61.326, + 114.313, + 114.512, + 149.959, + 149.812, + 149.485, + 148.975, + 151.609, 133.062, 97.634, 31.876, @@ -38534,16 +38534,16 @@ 33.107, 33.107, 71.869, - 78.307, - 130.6, - 196.463, - 196.647, - 196.763, - 196.802, - 196.771, - 196.669, - 196.489, - 199.587, + 78.357, + 131.408, + 197.598, + 197.981, + 198.183, + 198.205, + 198.047, + 197.722, + 197.211, + 199.6, 216.707, 168.489, 168.492, @@ -38558,16 +38558,16 @@ 33.107, 33.107, 71.547, - 78.285, - 131.154, - 196.807, - 196.683, - 196.781, - 196.823, - 196.796, - 196.691, - 196.507, - 199.656, + 78.334, + 131.506, + 197.95, + 198.04, + 198.239, + 198.265, + 198.12, + 197.785, + 197.262, + 199.85, 216.707, 168.518, 168.721, @@ -38582,16 +38582,16 @@ 33.107, 33.107, 71.658, - 78.318, - 130.979, - 196.474, - 196.658, - 196.774, - 196.812, - 196.784, - 196.682, - 196.501, - 199.655, + 78.498, + 131.793, + 197.616, + 198.003, + 198.203, + 198.224, + 198.077, + 197.749, + 197.241, + 199.845, 216.707, 168.489, 168.489, @@ -38606,16 +38606,16 @@ 33.107, 33.107, 71.407, - 78.284, - 131.563, - 197.567, - 197.654, - 197.651, - 197.69, - 197.583, - 197.439, - 197.122, - 200.095, + 78.333, + 132.345, + 198.669, + 198.956, + 199.038, + 199.059, + 198.6, + 198.12, + 197.842, + 200.186, 217.36, 169.265, 169.393, @@ -38630,16 +38630,16 @@ 32.841, 33.064, 71.197, - 61.634, - 96.093, - 148.389, - 196.527, - 196.574, - 196.661, - 196.762, - 196.667, - 196.496, - 199.659, + 61.694, + 96.869, + 149.463, + 197.4, + 197.405, + 197.705, + 198.001, + 197.697, + 197.214, + 199.857, 216.707, 150.775, 115.348, @@ -38654,16 +38654,16 @@ 32.031, 32.061, 32.114, - 11.406, - 60.187, - 59.666, - 112.986, - 113.101, - 148.568, - 148.546, - 148.449, - 148.275, - 151.445, + 11.573, + 60.936, + 60.72, + 114.241, + 114.45, + 149.912, + 149.787, + 149.476, + 148.985, + 151.645, 133.062, 97.634, 31.876, @@ -38678,16 +38678,16 @@ 33.107, 33.107, 71.587, - 78.31, - 130.999, - 196.483, - 196.662, - 196.788, - 196.83, - 196.804, - 196.706, - 196.522, - 199.677, + 78.487, + 131.798, + 197.622, + 198.02, + 198.249, + 198.278, + 198.133, + 197.814, + 197.293, + 199.909, 216.707, 168.489, 168.489, @@ -38702,16 +38702,16 @@ 33.107, 33.107, 71.617, - 78.052, - 130.449, - 196.463, - 196.648, - 196.767, - 196.807, - 196.784, - 196.688, - 196.515, - 199.682, + 78.099, + 130.812, + 197.579, + 197.962, + 198.173, + 198.2, + 198.067, + 197.757, + 197.266, + 199.924, 216.707, 168.489, 168.489, @@ -38726,16 +38726,16 @@ 33.107, 33.107, 71.299, - 77.906, - 130.386, - 196.461, - 196.596, - 197.305, - 197.995, - 197.794, - 197.771, - 197.602, - 200.494, + 77.977, + 131.162, + 197.553, + 197.694, + 198.294, + 199.167, + 198.59, + 198.537, + 198.049, + 200.568, 216.758, 168.489, 168.489, @@ -38750,16 +38750,16 @@ 33.107, 33.107, 71.17, - 78.026, - 130.702, - 196.328, - 196.623, - 196.741, - 196.669, - 196.646, - 196.674, - 196.473, - 199.684, + 78.033, + 130.748, + 196.626, + 197.819, + 198.059, + 197.698, + 197.593, + 197.702, + 197.125, + 199.923, 216.707, 168.489, 168.489, @@ -38774,16 +38774,16 @@ 33.107, 33.107, 71.145, - 77.775, - 130.349, - 196.463, - 196.648, - 196.766, - 196.806, - 196.78, - 196.687, - 196.517, - 199.694, + 77.935, + 131.094, + 197.537, + 197.932, + 198.151, + 198.181, + 198.04, + 197.737, + 197.257, + 199.954, 216.707, 168.489, 168.489, @@ -38798,16 +38798,16 @@ 31.876, 31.876, 69.872, - 60.022, - 94.934, - 148.243, - 196.641, - 197.576, - 200.443, - 204.329, - 206.706, - 202.725, - 199.721, + 60.189, + 95.686, + 149.309, + 197.897, + 198.929, + 201.794, + 205.582, + 207.757, + 203.466, + 199.976, 217.96, 150.775, 115.348, @@ -38822,16 +38822,16 @@ 31.876, 31.876, 31.876, - 11.331, - 59.464, - 59.683, - 113.157, - 116.692, - 153.331, - 152.992, - 152.981, - 152.493, - 150.114, + 11.513, + 60.248, + 60.792, + 114.469, + 117.858, + 154.315, + 153.88, + 153.884, + 153.086, + 150.402, 133.062, 97.634, 31.876, @@ -38846,16 +38846,16 @@ 31.876, 31.876, 31.876, - 11.337, - 60.275, - 59.683, - 112.899, - 113.008, - 148.302, - 148.549, - 148.189, - 147.972, - 147.958, + 11.415, + 60.997, + 60.71, + 113.792, + 114.066, + 148.911, + 149.78, + 148.585, + 148.016, + 147.989, 133.062, 97.656, 31.876, @@ -38870,16 +38870,16 @@ 33.107, 33.107, 72.055, - 78.414, - 130.61, - 196.46, - 196.647, - 196.766, - 196.811, - 196.791, - 196.701, - 196.529, - 196.283, + 78.576, + 131.317, + 197.505, + 197.91, + 198.14, + 198.184, + 198.063, + 197.767, + 197.277, + 196.564, 216.707, 168.489, 168.489, @@ -38894,16 +38894,16 @@ 33.107, 33.107, 72.113, - 78.698, - 131.543, - 197.427, - 197.605, - 197.265, - 197.109, - 197.248, - 197.268, - 197.123, - 196.995, + 78.868, + 132.257, + 198.451, + 198.83, + 198.597, + 198.144, + 198.488, + 198.311, + 197.86, + 197.282, 217.648, 169.581, 169.609, @@ -38918,16 +38918,16 @@ 33.158, 33.216, 72.404, - 78.594, - 130.628, - 196.397, - 196.574, - 196.667, - 196.687, - 196.552, - 196.516, - 196.331, - 196.177, + 78.723, + 131.159, + 196.979, + 197.556, + 197.739, + 197.723, + 197.216, + 197.138, + 196.614, + 196.209, 216.707, 168.489, 168.489, @@ -38942,16 +38942,16 @@ 33.107, 33.107, 71.35, - 77.819, - 130.31, - 196.343, - 196.456, - 196.467, - 196.806, - 196.788, - 196.505, - 196.423, - 196.177, + 77.96, + 130.38, + 196.666, + 197.001, + 196.956, + 198.149, + 198.04, + 197.099, + 196.914, + 196.209, 216.707, 168.489, 168.489, @@ -38966,16 +38966,16 @@ 32.265, 32.304, 70.631, - 60.589, - 95.256, - 148.254, - 196.66, - 196.781, - 196.494, - 196.233, - 196.267, - 196.161, - 196.167, + 60.762, + 95.98, + 149.326, + 197.938, + 198.171, + 197.017, + 196.327, + 196.405, + 196.175, + 196.186, 216.707, 150.775, 115.348, @@ -38990,16 +38990,16 @@ 32.412, 32.572, 32.831, - 11.885, - 60.462, - 59.661, - 112.944, - 113.023, - 148.492, - 148.398, - 148.301, - 148.262, - 148.094, + 11.947, + 60.762, + 60.447, + 113.945, + 114.066, + 149.568, + 149.205, + 148.916, + 148.872, + 148.417, 133.062, 97.634, 31.876, @@ -39014,16 +39014,16 @@ 33.244, 33.107, 71.731, - 78.278, - 130.552, - 196.479, - 196.662, - 196.782, - 196.828, - 196.807, - 196.723, - 196.559, - 196.313, + 78.48, + 131.308, + 197.54, + 197.922, + 198.156, + 198.207, + 198.084, + 197.8, + 197.338, + 196.636, 216.707, 168.489, 168.489, @@ -39038,16 +39038,16 @@ 33.252, 33.274, 71.623, - 78.109, - 130.518, - 196.473, - 196.554, - 196.727, - 196.976, - 196.939, - 196.911, - 196.743, - 196.501, + 78.3, + 131.238, + 197.515, + 197.393, + 197.785, + 197.896, + 197.791, + 197.705, + 197.246, + 196.591, 216.721, 168.489, 168.489, @@ -39062,16 +39062,16 @@ 33.107, 33.107, 71.536, - 77.728, - 130.334, - 196.34, - 198.494, - 201.295, - 200.969, - 210.208, - 217.541, - 214.505, - 204.91, + 77.757, + 130.612, + 196.644, + 198.957, + 201.756, + 201.458, + 210.612, + 217.676, + 214.575, + 204.937, 216.414, 170.607, 170.495, @@ -39087,15 +39087,15 @@ 33.107, 67.007, 77.277, - 130.293, - 196.328, - 198.209, - 212.217, - 224.263, - 231.786, - 236.225, - 237.063, - 229.409, + 130.382, + 196.595, + 198.376, + 212.506, + 224.271, + 233.115, + 237.342, + 237.856, + 229.742, 235.345, 180.247, 171.697, @@ -39110,16 +39110,16 @@ 33.107, 33.107, 66.525, - 77.112, - 130.345, - 196.557, - 203.99, - 219.14, - 232.143, - 241.589, - 240.383, - 228.461, - 212.878, + 77.29, + 130.764, + 197.345, + 204.03, + 220.137, + 233.125, + 242.381, + 240.403, + 229.2, + 213.147, 224.624, 179.883, 173.853, @@ -39134,16 +39134,16 @@ 31.876, 31.876, 65.393, - 59.458, - 94.93, - 148.307, - 196.729, - 206.593, - 225.181, - 226.994, - 221.778, - 213.01, - 202.064, + 59.681, + 95.73, + 149.484, + 198.15, + 208.065, + 226.654, + 228.412, + 222.99, + 213.882, + 202.456, 215.369, 151.001, 115.348, @@ -39158,16 +39158,16 @@ 31.876, 31.876, 28.45, - 11.335, - 59.643, - 59.735, - 113.126, - 115.759, - 152.216, - 152.171, - 152.041, - 150.945, - 149.372, + 11.599, + 60.468, + 60.901, + 114.509, + 117.231, + 153.689, + 153.549, + 153.206, + 151.793, + 149.762, 129.635, 97.634, 31.876, @@ -39182,16 +39182,16 @@ 33.107, 33.107, 67.545, - 77.738, - 130.413, - 196.517, - 196.707, - 196.82, - 196.862, - 196.701, - 196.674, - 196.431, - 196.233, + 78.001, + 131.222, + 197.644, + 198.029, + 198.23, + 198.262, + 197.694, + 197.617, + 196.892, + 196.359, 213.281, 168.489, 168.489, @@ -39206,16 +39206,16 @@ 33.107, 33.107, 68.015, - 78.109, - 130.825, - 196.509, - 196.621, - 196.713, - 196.743, - 196.707, - 196.637, - 196.499, - 196.264, + 78.188, + 131.586, + 197.599, + 197.678, + 197.851, + 197.86, + 197.703, + 197.478, + 197.092, + 196.449, 213.281, 168.489, 168.489, @@ -39231,15 +39231,15 @@ 33.107, 68.134, 78.18, - 130.871, - 196.41, - 196.547, - 196.846, - 196.899, - 196.882, - 196.795, - 196.626, - 196.338, + 130.911, + 196.87, + 197.306, + 198.318, + 198.372, + 198.261, + 197.962, + 197.479, + 196.665, 213.281, 168.489, 168.489, @@ -39254,16 +39254,16 @@ 33.107, 33.107, 67.59, - 77.949, - 130.883, - 196.599, - 196.694, - 196.804, - 196.855, - 196.843, - 196.768, - 196.61, - 196.354, + 78.143, + 131.569, + 197.632, + 197.933, + 198.148, + 198.219, + 198.129, + 197.875, + 197.418, + 196.709, 213.281, 168.489, 168.489, @@ -39278,16 +39278,16 @@ 33.107, 33.107, 67.73, - 78.01, - 130.974, - 196.803, - 196.676, - 196.738, - 196.745, - 196.877, - 196.789, - 196.632, - 196.39, + 78.289, + 131.789, + 197.953, + 197.805, + 197.917, + 197.848, + 198.222, + 197.929, + 197.479, + 196.811, 213.281, 168.604, 168.804, @@ -39302,16 +39302,16 @@ 31.876, 32.006, 67.647, - 60.833, - 95.327, - 148.319, - 196.731, - 196.846, - 196.891, - 196.87, - 196.789, - 196.634, - 196.395, + 61.139, + 96.146, + 149.46, + 198.072, + 198.287, + 198.327, + 198.203, + 197.928, + 197.48, + 196.82, 209.854, 150.775, 115.348, @@ -39326,16 +39326,16 @@ 31.876, 31.949, 28.668, - 11.548, - 60.338, - 59.764, - 113.076, - 113.189, - 148.663, - 148.643, - 148.562, - 148.408, - 148.171, + 11.84, + 61.124, + 60.87, + 114.395, + 114.608, + 150.081, + 149.956, + 149.68, + 149.237, + 148.583, 126.209, 97.634, 31.876, @@ -39350,16 +39350,16 @@ 33.107, 33.107, 68.128, - 78.034, - 130.649, - 196.443, - 196.625, - 196.715, - 196.712, - 196.652, - 196.633, - 196.457, - 196.255, + 78.098, + 131.035, + 197.087, + 197.64, + 197.817, + 197.716, + 197.487, + 197.444, + 196.943, + 196.408, 209.854, 168.489, 168.489, @@ -39374,16 +39374,16 @@ 33.107, 33.107, 67.707, - 78.021, - 130.902, - 196.529, - 196.716, - 196.83, - 196.882, - 196.763, - 196.677, - 196.549, - 196.317, + 78.319, + 131.663, + 197.585, + 197.984, + 198.213, + 198.279, + 197.862, + 197.584, + 197.219, + 196.584, 209.854, 168.489, 168.489, @@ -39398,16 +39398,16 @@ 33.107, 33.107, 67.924, - 78.058, - 130.686, - 196.477, - 196.626, - 196.754, - 196.69, - 196.669, - 196.571, - 196.524, - 196.304, + 78.215, + 131.232, + 197.263, + 197.579, + 197.921, + 197.602, + 197.524, + 197.236, + 197.131, + 196.539, 209.854, 168.489, 168.489, @@ -39422,16 +39422,16 @@ 33.107, 33.107, 64.02, - 77.873, - 130.93, - 196.655, - 196.526, - 196.5, - 196.691, - 196.724, - 196.527, - 196.47, - 196.254, + 78.01, + 131.255, + 197.299, + 197.178, + 197.021, + 197.611, + 197.709, + 197.096, + 196.967, + 196.398, 209.854, 168.489, 168.489, @@ -39446,15 +39446,15 @@ 33.107, 33.107, 64.812, - 78.39, - 130.767, - 196.478, - 196.579, - 196.702, - 196.363, + 78.663, + 131.282, 197.247, - 200.009, - 200.763, + 197.386, + 197.732, + 196.625, + 197.542, + 200.173, + 200.899, 199.787, 211.431, 168.632, @@ -39470,16 +39470,16 @@ 31.876, 31.876, 62.819, - 59.761, - 94.939, - 148.137, - 204.765, - 215.887, - 215.28, - 215.074, - 214.921, - 214.474, - 212.375, + 59.797, + 95.252, + 148.275, + 205.083, + 216.793, + 216.111, + 215.997, + 215.695, + 215.091, + 212.459, 218.694, 153.011, 116.124, @@ -39495,15 +39495,15 @@ 31.876, 25.024, 11.318, - 59.537, - 59.77, - 113.379, - 114.454, - 151.384, - 153.43, - 155.91, - 156.884, - 154.65, + 60.291, + 60.866, + 114.692, + 115.89, + 152.835, + 154.781, + 157.072, + 157.733, + 155.068, 128.388, 97.684, 31.876, @@ -39518,16 +39518,16 @@ 33.107, 33.107, 63.44, - 77.166, - 130.405, - 202.957, - 217.955, - 229.857, - 240.157, - 248.288, - 242.398, - 236.214, - 225.753, + 77.449, + 131.136, + 203.635, + 219.248, + 231.274, + 241.577, + 249.635, + 243.545, + 237.051, + 225.776, 224.907, 172.008, 170.842, @@ -39542,16 +39542,16 @@ 33.107, 33.107, 63.389, - 77.144, - 130.406, - 197.35, - 209.928, - 228.432, - 226.111, - 222.026, - 221.833, - 220.547, - 216.695, + 77.467, + 131.191, + 198.477, + 210.472, + 229.884, + 227.574, + 223.398, + 223.014, + 221.217, + 217.127, 215.655, 171.592, 170.477, @@ -39566,16 +39566,16 @@ 33.107, 33.107, 63.537, - 77.281, - 130.411, - 196.59, - 196.789, - 196.908, - 197.443, - 198.202, - 198.079, - 197.846, - 197.476, + 77.629, + 131.227, + 197.738, + 198.165, + 198.381, + 198.915, + 199.599, + 199.271, + 198.736, + 197.938, 207.114, 168.635, 168.489, @@ -39590,16 +39590,16 @@ 33.107, 33.107, 63.558, - 77.553, - 130.583, - 196.587, - 196.773, - 196.883, - 196.929, - 196.908, - 196.825, - 196.675, - 196.441, + 77.666, + 131.411, + 197.721, + 198.104, + 198.317, + 198.363, + 198.239, + 197.96, + 197.518, + 196.884, 206.428, 168.489, 168.489, @@ -39614,16 +39614,16 @@ 33.107, 33.107, 64.161, - 77.871, - 130.837, - 196.632, - 196.766, - 196.949, - 197.115, - 197.132, - 196.941, - 196.819, - 196.767, + 78.23, + 131.631, + 197.742, + 198.083, + 198.374, + 198.549, + 198.471, + 198.083, + 197.668, + 197.202, 206.818, 168.947, 169.073, @@ -39638,16 +39638,16 @@ 31.876, 31.876, 64.059, - 60.907, - 95.824, - 148.405, - 196.776, - 196.887, - 196.932, - 196.915, - 196.829, - 196.594, - 196.221, + 61.256, + 96.619, + 149.523, + 198.105, + 198.32, + 198.363, + 198.247, + 197.961, + 197.28, + 196.305, 206.428, 150.775, 115.348, @@ -39662,16 +39662,16 @@ 31.876, 31.876, 25.024, - 11.372, - 60.35, - 59.805, - 112.954, - 112.93, - 148.228, - 148.459, - 148.459, - 148.344, - 148.137, + 11.467, + 60.829, + 60.405, + 113.751, + 113.59, + 148.604, + 149.28, + 149.285, + 148.967, + 148.422, 122.783, 97.634, 31.876, @@ -39687,16 +39687,16 @@ 31.876, 21.597, 11.318, - 60.727, - 60.143, - 112.947, - 113.228, - 149.182, - 148.72, - 148.627, - 148.479, - 148.237, - 122.833, + 60.771, + 60.178, + 112.994, + 113.392, + 150.231, + 149.584, + 149.769, + 149.331, + 148.68, + 122.845, 97.901, 31.876, 31.876, @@ -39710,17 +39710,17 @@ 33.723, 33.906, 62.098, - 78.683, - 130.943, - 196.603, - 196.788, - 196.898, - 196.947, - 196.934, - 196.858, - 196.705, - 196.47, - 206.446, + 79.048, + 131.743, + 197.712, + 198.095, + 198.315, + 198.373, + 198.275, + 198.02, + 197.568, + 196.933, + 206.464, 168.489, 168.489, 150.775, @@ -39734,17 +39734,17 @@ 33.407, 33.466, 61.664, - 78.136, - 130.57, - 196.597, - 196.773, - 196.886, - 196.941, - 196.934, - 196.86, - 196.713, - 196.478, - 206.451, + 78.484, + 131.343, + 197.662, + 198.033, + 198.272, + 198.351, + 198.271, + 198.018, + 197.585, + 196.945, + 206.472, 168.489, 168.489, 150.775, @@ -39758,17 +39758,17 @@ 33.107, 33.107, 61.069, - 77.994, - 130.619, - 196.33, - 196.281, - 196.69, - 196.798, - 196.767, - 196.65, - 196.549, - 196.354, - 206.431, + 78.339, + 130.857, + 196.554, + 196.433, + 197.556, + 197.859, + 197.736, + 197.393, + 197.124, + 196.627, + 206.434, 168.489, 168.489, 150.775, @@ -39782,17 +39782,17 @@ 33.107, 33.107, 61.098, - 77.824, - 130.744, - 196.661, - 196.859, - 196.982, - 197.038, - 197.027, - 196.943, - 196.782, - 196.523, - 206.44, + 78.238, + 131.635, + 197.887, + 198.308, + 198.455, + 198.511, + 198.5, + 198.226, + 197.747, + 197.045, + 206.453, 168.489, 168.489, 150.775, @@ -39806,17 +39806,17 @@ 31.876, 31.876, 59.852, - 60.1, - 95.074, - 148.432, - 196.834, - 196.933, - 196.967, - 196.94, - 196.867, - 196.735, - 196.507, - 203.014, + 60.516, + 95.945, + 149.615, + 198.219, + 198.395, + 198.405, + 198.264, + 198.019, + 197.625, + 197.002, + 203.027, 150.775, 115.348, 115.348, @@ -39830,17 +39830,17 @@ 31.876, 31.876, 21.597, - 11.358, - 59.95, - 59.858, - 113.189, - 113.306, - 148.784, - 148.586, - 148.094, - 147.999, - 148.021, - 119.387, + 11.753, + 60.781, + 61.013, + 114.568, + 114.778, + 150.256, + 149.631, + 148.277, + 148.055, + 148.114, + 119.413, 97.634, 31.876, 31.876, @@ -39854,17 +39854,17 @@ 33.107, 33.107, 61.03, - 77.857, - 130.558, - 196.644, - 196.826, - 196.941, - 196.992, - 196.977, - 196.899, - 196.749, - 196.507, - 203.044, + 78.244, + 131.383, + 197.776, + 198.174, + 198.405, + 198.464, + 198.359, + 198.09, + 197.648, + 196.99, + 203.082, 168.489, 168.489, 150.775, @@ -39878,17 +39878,17 @@ 33.179, 33.342, 58.029, - 77.983, - 130.566, - 196.676, - 196.747, - 196.813, - 197.045, - 197.03, - 196.944, - 196.214, - 196.227, - 203.006, + 77.989, + 131.436, + 197.884, + 197.874, + 197.965, + 198.517, + 198.495, + 198.201, + 196.286, + 196.315, + 203.009, 168.489, 168.489, 150.775, @@ -39902,17 +39902,17 @@ 33.107, 33.252, 58.042, - 78.255, - 130.845, - 196.689, - 196.879, - 196.999, - 197.052, - 197.04, - 196.956, - 196.798, - 196.16, - 203.03, + 78.694, + 131.746, + 197.917, + 198.324, + 198.472, + 198.525, + 198.512, + 198.227, + 197.757, + 196.171, + 203.057, 168.489, 168.489, 150.775, @@ -39926,16 +39926,16 @@ 33.107, 33.107, 58.026, - 78.094, - 130.593, - 196.427, - 196.538, - 196.702, - 196.255, - 196.719, - 196.531, - 196.273, - 196.324, + 78.139, + 131.1, + 196.831, + 197.103, + 197.559, + 196.377, + 197.552, + 197.036, + 196.415, + 196.539, 203.002, 168.489, 168.489, @@ -39950,16 +39950,16 @@ 33.107, 33.107, 56.95, - 77.698, - 130.625, - 196.509, - 196.628, - 196.761, - 196.706, - 196.686, - 196.543, - 196.429, - 196.278, + 77.813, + 131.103, + 197.111, + 197.396, + 197.758, + 197.537, + 197.464, + 197.08, + 196.787, + 196.43, 203.002, 168.489, 168.489, @@ -39973,18 +39973,18 @@ 31.876, 31.876, 31.876, - 56.046, - 59.92, - 95.052, - 148.348, - 196.75, - 197.259, - 200.233, - 214.368, - 218.975, - 211.964, - 207.006, - 205.992, + 56.048, + 60.102, + 95.537, + 149.123, + 197.861, + 198.394, + 201.312, + 215.605, + 219.888, + 212.484, + 207.214, + 205.999, 151.286, 115.348, 115.348, @@ -39997,18 +39997,18 @@ 31.876, 31.876, 31.876, - 18.179, - 11.381, - 59.776, - 59.785, - 113.99, - 122.652, - 170.732, - 169.545, - 169.05, - 168.901, - 160.03, - 119.903, + 18.188, + 11.79, + 60.602, + 60.561, + 115.042, + 123.776, + 171.9, + 170.413, + 169.808, + 169.753, + 160.491, + 119.948, 97.634, 31.876, 31.876, @@ -40021,18 +40021,18 @@ 33.107, 33.107, 33.107, - 56.519, - 77.55, - 130.827, - 196.814, - 196.856, - 196.717, - 196.981, - 196.97, - 196.769, - 196.743, - 196.333, - 203.157, + 56.53, + 77.971, + 131.656, + 197.912, + 198.144, + 197.622, + 198.382, + 198.288, + 197.692, + 197.589, + 196.555, + 203.202, 168.779, 168.949, 151.312, @@ -40045,18 +40045,18 @@ 33.107, 33.107, 33.107, - 57.79, - 78.463, - 131.278, - 196.658, - 196.832, - 196.94, - 196.838, - 196.981, - 196.898, - 196.745, - 196.52, - 203.066, + 57.794, + 78.658, + 131.753, + 197.273, + 198.131, + 198.334, + 197.945, + 198.31, + 198.036, + 197.587, + 196.976, + 203.115, 168.489, 168.513, 150.902, @@ -40069,18 +40069,18 @@ 33.107, 33.107, 33.107, - 53.922, - 77.918, - 130.949, - 196.753, - 196.769, - 196.847, - 196.82, - 196.827, - 196.811, - 196.649, - 196.55, - 203.014, + 53.948, + 78.358, + 131.818, + 197.931, + 197.886, + 198.025, + 197.864, + 197.866, + 197.799, + 197.339, + 197.039, + 203.026, 168.489, 168.489, 150.775, @@ -40093,18 +40093,18 @@ 33.107, 33.107, 33.107, - 53.689, - 77.532, - 130.547, - 196.731, - 196.902, - 197.006, - 197.044, - 197.023, - 196.942, - 196.79, - 196.47, - 199.628, + 53.726, + 78.008, + 131.453, + 197.95, + 198.319, + 198.478, + 198.517, + 198.41, + 198.133, + 197.687, + 196.858, + 199.67, 168.489, 168.489, 150.775, @@ -40117,18 +40117,18 @@ 33.107, 33.107, 33.107, - 53.267, - 77.524, - 130.659, - 196.712, - 196.874, - 196.967, - 196.987, - 196.95, - 196.883, - 196.624, - 196.452, - 199.654, + 53.283, + 77.865, + 131.526, + 197.872, + 198.224, + 198.391, + 198.373, + 198.214, + 197.986, + 197.272, + 196.815, + 199.711, 168.489, 168.489, 150.775, @@ -40141,18 +40141,18 @@ 31.876, 31.876, 31.876, - 52.46, - 59.998, - 95.364, - 148.5, - 196.879, - 196.982, - 197.021, - 197.006, - 196.92, - 196.772, - 196.546, - 199.664, + 52.499, + 60.453, + 96.011, + 149.654, + 198.231, + 198.429, + 198.462, + 198.354, + 198.07, + 197.633, + 197.016, + 199.728, 150.775, 115.348, 115.348, @@ -40165,18 +40165,18 @@ 31.876, 31.876, 31.876, - 14.755, - 60.196, - 59.73, - 113.095, - 113.148, - 148.605, - 148.692, - 148.6, - 148.543, - 148.355, - 112.797, - 80.561, + 14.794, + 60.471, + 60.319, + 114.299, + 114.283, + 149.705, + 149.9, + 149.587, + 149.416, + 148.911, + 113.142, + 80.606, 31.876, 31.876, 31.876, @@ -40189,18 +40189,18 @@ 33.107, 33.107, 70.58, - 81.062, - 130.623, - 196.5, - 196.743, - 196.911, - 197.016, - 197.056, - 197.03, - 196.944, - 196.792, - 196.561, - 151.459, + 81.11, + 131.093, + 197.39, + 197.938, + 198.31, + 198.489, + 198.529, + 198.403, + 198.115, + 197.67, + 197.039, + 151.529, 168.489, 150.775, 60.908, @@ -40213,18 +40213,18 @@ 33.107, 33.107, 71.114, - 81.41, - 130.861, - 196.594, - 196.736, - 196.904, - 197.008, - 197.055, - 197.035, - 196.948, - 196.798, - 196.57, - 151.472, + 81.462, + 131.326, + 197.47, + 197.912, + 198.276, + 198.478, + 198.527, + 198.408, + 198.12, + 197.681, + 197.056, + 151.547, 168.489, 150.775, 60.908, @@ -40237,18 +40237,18 @@ 33.107, 33.107, 71.056, - 81.357, - 130.739, - 196.546, - 196.74, - 196.889, - 196.985, - 197.025, - 197.011, - 196.937, - 196.792, - 196.57, - 151.475, + 81.419, + 131.221, + 197.431, + 197.902, + 198.223, + 198.405, + 198.442, + 198.343, + 198.087, + 197.662, + 197.05, + 151.55, 168.489, 150.775, 60.908, @@ -40261,18 +40261,18 @@ 33.107, 33.107, 71.766, - 78.497, - 131.15, - 196.608, - 196.757, - 196.922, - 197.023, - 197.059, - 197.038, - 196.947, - 196.794, - 196.57, - 151.472, + 78.563, + 131.633, + 197.506, + 197.948, + 198.315, + 198.496, + 198.527, + 198.406, + 198.107, + 197.662, + 197.047, + 151.546, 168.489, 150.775, 60.908, @@ -40285,18 +40285,18 @@ 33.107, 33.107, 71.75, - 78.449, - 131.024, - 196.53, - 196.722, - 196.872, - 196.956, - 197.01, - 197.003, - 196.933, - 196.796, - 196.582, - 151.487, + 78.512, + 131.48, + 197.379, + 197.829, + 198.158, + 198.311, + 198.392, + 198.313, + 198.07, + 197.663, + 197.066, + 151.565, 168.489, 150.775, 60.908, @@ -40309,18 +40309,18 @@ 31.876, 31.876, 69.962, - 60.426, - 95.396, - 148.316, - 196.774, - 196.94, - 197.048, - 197.091, - 197.071, - 196.989, - 196.762, - 196.465, - 133.735, + 60.504, + 95.902, + 149.234, + 197.989, + 198.358, + 198.521, + 198.564, + 198.478, + 198.198, + 197.573, + 196.819, + 133.797, 115.348, 115.348, 79.921, @@ -40333,18 +40333,18 @@ 31.876, 31.876, 31.876, - 11.338, - 60.255, - 59.942, - 113.148, - 113.311, - 148.838, - 148.87, - 148.84, - 148.759, - 148.609, - 112.962, - 80.65, + 11.421, + 60.772, + 60.884, + 114.388, + 114.744, + 150.31, + 150.343, + 150.222, + 149.946, + 149.504, + 113.466, + 80.735, 31.876, 31.876, 31.876, @@ -40357,18 +40357,18 @@ 33.107, 33.107, 71.432, - 78.206, - 130.917, - 196.564, - 196.791, - 196.953, - 197.052, - 197.084, - 197.048, - 196.956, - 196.809, - 196.597, - 151.502, + 78.291, + 131.436, + 197.501, + 198.019, + 198.374, + 198.525, + 198.556, + 198.407, + 198.11, + 197.68, + 197.087, + 151.585, 168.489, 150.775, 60.908, @@ -40381,18 +40381,18 @@ 33.107, 33.107, 71.716, - 78.455, - 131.152, - 196.561, - 196.723, - 196.842, - 196.862, - 196.884, - 196.873, - 196.724, - 196.798, - 196.587, - 148.066, + 78.491, + 131.434, + 197.087, + 197.799, + 198.038, + 197.998, + 198.01, + 197.942, + 197.508, + 197.649, + 197.06, + 148.146, 168.489, 150.775, 60.908, @@ -40405,18 +40405,18 @@ 33.107, 33.107, 71.388, - 78.234, - 131.214, - 196.858, - 197.185, - 197.514, - 197.675, - 197.39, - 197.037, - 196.952, - 197.175, - 197.148, - 148.554, + 78.32, + 131.696, + 197.724, + 198.33, + 198.837, + 199.093, + 198.809, + 198.365, + 198.087, + 198.019, + 197.605, + 148.629, 169.243, 151.676, 60.908, @@ -40429,18 +40429,18 @@ 34.179, 34.375, 69.002, - 79.387, - 131.794, - 196.997, - 196.749, - 196.88, - 196.966, - 197.02, - 197.02, - 196.951, - 196.806, - 196.587, - 148.066, + 79.472, + 132.259, + 197.841, + 197.857, + 198.134, + 198.297, + 198.38, + 198.319, + 198.081, + 197.654, + 197.051, + 148.145, 168.489, 150.775, 60.908, @@ -40453,18 +40453,18 @@ 33.107, 33.107, 68.216, - 78.428, - 131.086, - 196.542, - 196.643, - 196.875, - 196.882, - 196.896, - 196.849, - 196.828, - 196.783, - 196.45, - 148.012, + 78.52, + 131.571, + 197.183, + 197.484, + 198.122, + 198.041, + 198.026, + 197.862, + 197.768, + 197.598, + 196.772, + 148.071, 168.489, 150.809, 60.908, @@ -40477,18 +40477,18 @@ 31.876, 31.876, 66.844, - 60.639, - 95.728, - 148.353, - 196.705, - 196.92, - 197.009, - 197.036, - 197.007, - 196.723, - 196.708, - 196.467, - 130.34, + 60.728, + 96.195, + 148.973, + 197.679, + 198.237, + 198.403, + 198.415, + 198.275, + 197.491, + 197.423, + 196.806, + 130.415, 115.348, 115.348, 79.955, @@ -40501,18 +40501,18 @@ 31.876, 31.876, 28.45, - 11.35, - 60.697, - 59.888, - 113.117, - 113.285, - 148.815, - 148.858, - 148.818, - 149.013, - 148.87, - 112.943, - 77.21, + 11.443, + 61.169, + 60.729, + 114.231, + 114.614, + 150.244, + 150.287, + 149.973, + 150.137, + 149.714, + 113.397, + 77.289, 31.876, 31.876, 31.876, @@ -40525,18 +40525,18 @@ 33.107, 33.107, 67.626, - 77.888, - 130.658, - 196.579, - 197.065, - 201.322, - 204.239, - 204.189, - 204.608, - 204.398, - 203.862, - 199.449, - 149.361, + 77.993, + 131.172, + 197.492, + 198.27, + 202.73, + 205.711, + 204.484, + 205.411, + 205.217, + 204.375, + 199.632, + 149.443, 168.633, 150.775, 60.908, @@ -40549,18 +40549,18 @@ 33.107, 33.107, 67.543, - 77.903, - 130.87, - 196.603, - 196.805, - 196.954, - 197.047, - 197.094, - 197.075, - 196.99, - 196.835, - 196.329, - 148.084, + 78.009, + 131.385, + 197.511, + 197.995, + 198.314, + 198.486, + 198.546, + 198.425, + 198.146, + 197.695, + 196.524, + 148.168, 168.489, 150.775, 60.908, @@ -40573,18 +40573,18 @@ 33.107, 33.107, 67.544, - 77.924, - 130.714, - 196.576, - 196.778, - 198.927, - 210.564, - 213.377, - 212.973, - 212.232, - 205.259, - 199.683, - 149.203, + 78.032, + 131.207, + 197.438, + 197.898, + 200.209, + 211.74, + 214.552, + 214.045, + 213.221, + 206.057, + 200.116, + 149.283, 168.584, 150.775, 60.908, @@ -40597,18 +40597,18 @@ 33.107, 33.107, 67.492, - 77.82, - 130.539, - 196.498, - 196.804, - 203.627, - 211.455, - 213.586, - 214.584, - 214.991, - 213.729, - 209.394, - 152.138, + 77.929, + 130.82, + 197.099, + 197.911, + 204.942, + 212.804, + 214.605, + 215.671, + 216.096, + 214.491, + 209.688, + 152.195, 170.015, 151.616, 60.908, @@ -40621,18 +40621,18 @@ 33.107, 33.107, 63.478, - 77.42, - 130.426, - 196.625, - 197.451, - 209.216, - 224.965, - 232.861, - 231.306, - 224.337, - 217.51, - 211.883, - 152.945, + 77.547, + 130.993, + 197.593, + 198.706, + 210.662, + 226.437, + 234.334, + 232.707, + 225.533, + 218.405, + 212.375, + 153.034, 169.595, 151.14, 60.908, @@ -40645,18 +40645,18 @@ 31.876, 31.876, 62.392, - 59.709, - 94.986, - 148.411, - 208.4, - 224.603, - 230.635, - 229.653, - 231.912, - 235.915, - 232.521, - 221.208, - 136.327, + 59.833, + 95.516, + 149.322, + 209.589, + 225.987, + 232.107, + 231.126, + 233.294, + 237.1, + 233.403, + 221.214, + 136.33, 116.045, 115.348, 79.921, @@ -40669,18 +40669,18 @@ 31.876, 31.876, 25.024, - 11.353, - 60.151, - 59.972, - 113.227, - 113.389, - 148.921, - 148.956, - 148.93, - 148.835, - 148.677, - 113.018, - 77.271, + 11.487, + 60.726, + 60.954, + 114.497, + 114.854, + 150.394, + 150.428, + 150.355, + 150.043, + 149.583, + 113.511, + 77.361, 31.876, 31.876, 31.876, @@ -40693,18 +40693,18 @@ 33.107, 33.107, 64.441, - 78.148, - 131.03, - 196.681, - 196.847, - 196.996, - 197.083, - 197.108, - 196.931, - 196.999, - 196.852, - 196.642, - 148.125, + 78.283, + 131.591, + 197.625, + 198.068, + 198.39, + 198.547, + 198.544, + 198.024, + 198.139, + 197.708, + 197.114, + 148.213, 165.063, 150.775, 60.908, @@ -40717,18 +40717,18 @@ 33.107, 33.107, 64.438, - 78.093, - 130.929, - 196.565, - 196.695, - 196.911, - 197.006, - 197.057, - 197.049, - 196.979, - 196.834, - 196.627, - 148.111, + 78.226, + 131.452, + 197.289, + 197.593, + 198.15, + 198.34, + 198.411, + 198.325, + 198.084, + 197.66, + 197.082, + 148.198, 165.063, 150.775, 60.908, @@ -40741,18 +40741,18 @@ 33.107, 33.107, 64.356, - 78.035, - 130.844, - 196.514, - 196.736, - 196.975, - 197.075, - 197.119, - 197.101, - 197.018, - 196.87, - 196.65, - 148.122, + 78.172, + 131.376, + 197.102, + 197.706, + 198.314, + 198.511, + 198.559, + 198.445, + 198.167, + 197.734, + 197.12, + 148.213, 165.063, 150.775, 60.908, @@ -40765,18 +40765,18 @@ 33.107, 33.107, 64.303, - 78.005, - 130.94, - 196.68, - 196.876, - 197.032, - 197.13, - 197.171, - 197.146, - 197.054, - 196.595, - 196.647, - 148.119, + 78.15, + 131.503, + 197.639, + 198.126, + 198.457, + 198.603, + 198.643, + 198.55, + 198.246, + 197.116, + 197.119, + 148.213, 165.063, 150.775, 60.908, @@ -40789,18 +40789,18 @@ 33.107, 33.107, 60.61, - 77.849, - 130.753, - 196.664, - 196.883, - 197.042, - 197.136, - 197.167, - 197.136, - 197.042, - 196.883, - 196.652, - 148.128, + 78.001, + 131.323, + 197.627, + 198.133, + 198.488, + 198.609, + 198.64, + 198.517, + 198.216, + 197.755, + 197.124, + 148.222, 165.063, 150.775, 60.908, @@ -40813,18 +40813,18 @@ 31.876, 31.876, 59.181, - 60.007, - 95.239, - 148.444, - 196.869, - 197.013, - 197.093, - 197.113, - 197.083, - 197.12, - 197.224, - 196.997, - 130.678, + 60.162, + 95.811, + 149.393, + 198.09, + 198.395, + 198.539, + 198.529, + 198.392, + 198.242, + 198.076, + 197.465, + 130.772, 111.994, 115.348, 79.921, @@ -40837,18 +40837,18 @@ 31.876, 31.876, 21.597, - 11.376, - 59.717, - 59.85, - 115.49, - 127.945, - 171.707, - 170.289, - 170.043, - 170.396, - 168.898, - 121.998, - 78.707, + 11.491, + 60.26, + 60.744, + 116.645, + 129.278, + 173.128, + 171.701, + 171.356, + 171.508, + 169.721, + 122.453, + 78.797, 28.45, 31.876, 31.876, @@ -40861,18 +40861,18 @@ 33.107, 33.107, 60.012, - 77.413, - 130.481, - 196.644, - 197.84, - 202.074, - 202.07, - 202.013, - 202.012, - 201.78, - 201.487, - 201.083, - 149.85, + 77.568, + 131.028, + 197.543, + 199.006, + 203.411, + 203.498, + 203.442, + 203.344, + 202.912, + 202.321, + 201.494, + 149.93, 165.733, 150.775, 60.908, @@ -40885,18 +40885,18 @@ 33.107, 33.107, 60.309, - 77.596, - 130.587, - 196.662, - 196.869, - 198.412, - 202.921, - 200.603, - 200.619, - 200.595, - 200.258, - 199.789, - 150.196, + 77.755, + 131.156, + 197.597, + 198.066, + 199.796, + 204.394, + 202.072, + 201.979, + 201.75, + 201.122, + 200.262, + 150.286, 165.94, 150.896, 60.908, @@ -40910,17 +40910,17 @@ 33.107, 60.172, 77.486, - 130.578, - 196.509, - 196.882, - 196.346, - 196.7, - 199.391, - 217.63, - 227.035, - 244.911, - 253.622, - 195.651, + 131.141, + 197.033, + 198.098, + 196.58, + 197.424, + 200.864, + 219.001, + 228.012, + 245.485, + 253.714, + 195.654, 198.018, 171.933, 60.908, @@ -40933,18 +40933,18 @@ 33.107, 33.107, 59.633, - 77.164, - 130.488, - 199.701, - 215.727, - 226.602, - 233.977, - 239.0, - 236.847, - 233.658, - 231.819, - 225.651, - 168.339, + 77.33, + 131.053, + 200.225, + 216.941, + 227.993, + 235.449, + 240.219, + 238.187, + 234.288, + 232.12, + 225.908, + 168.393, 174.865, 152.221, 60.908, @@ -40958,16 +40958,16 @@ 33.107, 59.969, 77.293, - 130.487, - 197.107, - 210.645, - 225.438, - 237.618, - 238.576, - 233.306, - 227.553, - 222.41, - 217.253, + 131.039, + 198.044, + 210.901, + 225.469, + 237.72, + 238.623, + 233.493, + 227.738, + 222.762, + 217.373, 160.437, 167.277, 151.574, @@ -40981,18 +40981,18 @@ 31.876, 31.876, 55.532, - 59.824, - 95.127, - 148.491, - 196.92, - 197.299, - 197.909, - 197.932, - 197.926, - 197.863, - 197.681, - 197.435, - 131.07, + 59.946, + 95.732, + 149.478, + 198.183, + 198.729, + 199.381, + 199.405, + 199.291, + 199.019, + 198.548, + 197.906, + 131.159, 111.973, 115.348, 79.921, @@ -41004,19 +41004,19 @@ 31.876, 31.876, 31.876, - 18.174, - 11.383, - 59.982, - 59.893, - 113.217, - 113.334, - 148.826, - 148.915, - 149.138, - 149.063, - 148.917, - 113.102, - 77.306, + 18.176, + 11.552, + 60.549, + 60.812, + 114.374, + 114.622, + 150.165, + 150.262, + 150.411, + 150.16, + 149.746, + 113.55, + 77.395, 28.45, 31.876, 31.876, @@ -41028,19 +41028,19 @@ 33.107, 33.107, 33.107, - 56.756, - 77.439, - 130.501, - 196.669, - 196.857, - 198.893, - 205.652, - 207.9, - 208.253, - 209.639, - 209.727, - 209.607, - 156.896, + 56.759, + 77.607, + 131.06, + 197.571, + 198.001, + 200.19, + 207.008, + 209.226, + 209.49, + 210.704, + 210.531, + 210.047, + 156.984, 163.131, 151.564, 60.908, @@ -41052,19 +41052,19 @@ 33.107, 33.107, 33.107, - 56.729, - 77.469, - 130.533, - 196.665, - 196.837, - 196.954, - 197.031, - 197.079, - 197.076, - 197.004, - 196.868, - 196.669, - 148.173, + 56.733, + 77.634, + 131.089, + 197.55, + 197.947, + 198.198, + 198.343, + 198.406, + 198.33, + 198.079, + 197.674, + 197.109, + 148.254, 161.636, 150.775, 60.908, @@ -41076,19 +41076,19 @@ 33.107, 33.107, 33.107, - 56.873, - 77.639, - 130.639, - 196.669, - 196.757, - 196.868, - 197.08, - 197.109, - 197.09, - 197.012, - 196.887, - 196.564, - 148.183, + 56.881, + 77.779, + 131.191, + 197.562, + 197.694, + 197.941, + 198.439, + 198.449, + 198.34, + 198.078, + 197.685, + 196.911, + 148.265, 161.639, 150.775, 60.908, @@ -41100,19 +41100,19 @@ 33.107, 33.107, 33.107, - 56.885, - 77.575, - 130.565, - 196.678, - 196.858, - 197.125, - 198.735, - 200.576, - 200.519, - 200.423, - 200.204, - 199.845, - 149.578, + 56.892, + 77.742, + 131.126, + 197.581, + 197.992, + 198.395, + 200.054, + 201.852, + 201.679, + 201.415, + 200.952, + 200.249, + 149.663, 162.36, 150.775, 60.908, @@ -41124,19 +41124,19 @@ 33.107, 33.107, 33.107, - 56.642, - 77.504, - 130.624, - 196.661, - 196.843, - 196.989, - 197.057, - 197.063, - 197.015, - 196.922, - 196.815, - 196.645, - 148.17, + 56.647, + 77.671, + 131.149, + 197.524, + 197.949, + 198.272, + 198.392, + 198.354, + 198.182, + 197.899, + 197.562, + 197.059, + 148.248, 161.636, 150.775, 60.908, @@ -41148,19 +41148,19 @@ 31.876, 31.876, 31.876, - 55.763, - 59.984, - 95.393, - 148.461, - 196.844, - 196.961, - 197.026, - 197.049, - 197.032, - 196.966, - 196.841, - 196.66, - 130.463, + 55.77, + 60.152, + 95.945, + 149.336, + 197.944, + 198.198, + 198.312, + 198.318, + 198.213, + 197.982, + 197.607, + 197.08, + 130.543, 108.495, 115.392, 80.169, @@ -41172,19 +41172,19 @@ 31.876, 31.876, 31.876, - 14.75, - 11.387, - 60.869, - 60.454, - 113.431, - 113.866, - 149.136, - 149.104, - 149.05, - 148.786, - 148.642, - 113.029, - 77.348, + 14.757, + 11.556, + 61.412, + 61.31, + 114.523, + 115.13, + 150.474, + 150.434, + 150.287, + 149.839, + 149.421, + 113.456, + 77.432, 25.024, 31.876, 31.876, @@ -41196,19 +41196,19 @@ 33.107, 33.107, 33.107, - 54.872, - 78.662, - 131.495, - 197.529, - 197.594, - 197.688, - 197.707, - 197.288, - 197.121, - 197.039, - 196.899, - 196.703, - 148.299, + 54.881, + 78.843, + 132.061, + 198.433, + 198.734, + 198.99, + 199.086, + 198.651, + 198.404, + 198.128, + 197.716, + 197.151, + 148.386, 161.993, 151.239, 60.908, @@ -41220,19 +41220,19 @@ 33.107, 33.107, 33.107, - 54.908, - 78.601, - 131.395, - 196.987, - 196.878, - 196.901, - 196.641, - 196.731, - 196.786, - 196.388, - 196.372, - 196.293, - 147.968, + 54.919, + 78.719, + 131.951, + 197.849, + 198.021, + 197.999, + 197.271, + 197.482, + 197.587, + 196.663, + 196.622, + 196.451, + 148.009, 161.636, 150.775, 60.908, @@ -41245,18 +41245,18 @@ 33.107, 33.107, 53.96, - 77.949, - 130.834, - 196.53, - 196.612, - 196.396, - 196.753, - 196.93, - 196.871, - 196.594, - 196.679, - 196.51, - 148.197, + 78.085, + 131.239, + 197.062, + 197.247, + 196.691, + 197.557, + 197.976, + 197.79, + 197.115, + 197.259, + 196.833, + 148.279, 161.636, 150.775, 60.908, @@ -41268,19 +41268,19 @@ 33.107, 33.107, 33.107, - 53.57, - 77.739, - 130.869, - 196.766, - 196.904, - 197.045, - 197.134, - 197.167, - 196.658, - 196.812, - 196.436, - 196.318, - 147.959, + 53.582, + 77.916, + 131.437, + 197.678, + 198.069, + 198.376, + 198.544, + 198.566, + 197.277, + 197.605, + 196.756, + 196.499, + 147.99, 161.636, 150.775, 60.908, @@ -41292,19 +41292,19 @@ 33.107, 33.107, 33.107, - 53.624, - 77.699, - 130.775, - 196.725, - 196.91, - 197.045, - 197.122, - 197.135, - 197.1, - 197.009, - 196.875, - 196.676, - 148.189, + 53.638, + 77.888, + 131.362, + 197.655, + 198.083, + 198.377, + 198.516, + 198.492, + 198.346, + 198.06, + 197.663, + 197.099, + 148.279, 161.636, 150.775, 60.908, @@ -41316,19 +41316,19 @@ 31.876, 31.876, 31.876, - 52.204, - 59.931, - 95.364, - 148.503, - 196.9, - 197.042, - 197.107, - 197.108, - 197.062, - 196.968, - 196.843, - 196.684, - 130.792, + 52.22, + 60.12, + 95.932, + 149.411, + 198.058, + 198.365, + 198.478, + 198.428, + 198.26, + 197.974, + 197.601, + 197.102, + 130.877, 108.911, 115.771, 80.478, @@ -41340,19 +41340,19 @@ 31.876, 31.876, 31.876, - 14.759, - 11.421, - 60.877, - 60.489, - 113.425, - 113.391, - 148.848, - 148.85, - 148.82, - 148.75, - 148.629, - 113.006, - 77.316, + 14.777, + 11.612, + 61.439, + 61.381, + 114.553, + 114.661, + 150.152, + 150.11, + 149.988, + 149.747, + 149.38, + 113.412, + 77.407, 21.597, 31.876, 31.876, @@ -41364,19 +41364,19 @@ 33.107, 33.107, 33.107, - 53.649, - 77.988, - 131.182, - 196.997, - 197.014, - 197.179, - 197.196, - 197.115, - 197.095, - 197.012, - 196.868, - 196.7, - 148.224, + 53.668, + 78.176, + 131.73, + 197.847, + 198.096, + 198.423, + 198.517, + 198.428, + 198.319, + 198.045, + 197.629, + 197.129, + 148.307, 158.337, 150.979, 60.908, @@ -41388,19 +41388,19 @@ 33.107, 33.107, 33.107, - 50.585, - 77.97, - 130.906, - 196.727, - 196.897, - 197.021, - 197.083, - 199.675, - 202.825, - 207.969, - 209.656, - 209.022, - 153.886, + 50.603, + 78.155, + 131.48, + 197.633, + 198.036, + 198.306, + 198.409, + 200.941, + 203.978, + 208.98, + 210.422, + 209.436, + 153.967, 158.601, 150.775, 60.908, @@ -41412,19 +41412,19 @@ 33.107, 33.107, 33.107, - 50.121, - 77.634, - 130.647, - 196.708, - 196.877, - 196.995, - 197.051, - 197.051, - 198.669, - 201.531, - 201.236, - 200.815, - 148.719, + 50.141, + 77.818, + 131.204, + 197.589, + 197.978, + 198.235, + 198.333, + 198.288, + 199.825, + 202.535, + 201.991, + 201.22, + 148.805, 158.244, 150.775, 60.908, @@ -41436,19 +41436,19 @@ 33.107, 33.107, 33.107, - 49.949, - 77.55, - 130.599, - 196.699, - 196.867, - 196.989, - 197.05, - 197.064, - 197.026, - 196.96, - 196.835, - 196.654, - 148.187, + 49.968, + 77.728, + 131.143, + 197.562, + 197.95, + 198.216, + 198.322, + 198.306, + 198.159, + 197.931, + 197.561, + 197.046, + 148.273, 158.21, 150.775, 60.908, @@ -41460,19 +41460,19 @@ 33.107, 33.107, 33.107, - 49.846, - 77.543, - 130.639, - 196.675, - 196.834, - 196.964, - 197.046, - 197.082, - 197.065, - 196.994, - 196.86, - 196.671, - 148.195, + 49.868, + 77.725, + 131.168, + 197.494, + 197.863, + 198.155, + 198.311, + 198.343, + 198.235, + 197.994, + 197.605, + 197.072, + 148.284, 158.215, 150.775, 60.908, @@ -41484,20 +41484,20 @@ 31.876, 31.876, 31.876, - 48.712, - 59.881, - 95.226, - 148.475, - 196.812, - 196.954, - 196.986, - 197.145, - 197.119, - 196.867, - 196.804, - 196.62, - 130.455, - 105.077, + 48.735, + 60.07, + 95.784, + 149.315, + 197.78, + 198.103, + 198.134, + 198.48, + 198.353, + 197.713, + 197.495, + 196.993, + 130.548, + 105.079, 115.348, 79.942, 31.876, @@ -41508,20 +41508,20 @@ 31.876, 31.876, 31.876, - 11.345, - 11.454, - 60.205, - 60.042, - 113.26, - 113.386, - 148.901, - 148.319, - 148.398, - 148.848, - 148.705, - 112.866, - 77.354, - 21.601, + 11.376, + 11.657, + 60.681, + 60.846, + 114.381, + 114.656, + 150.253, + 148.779, + 148.955, + 149.925, + 149.509, + 113.193, + 77.463, + 21.603, 31.876, 31.876, 31.876, @@ -41532,20 +41532,20 @@ 33.107, 33.107, 33.107, - 50.447, - 77.966, - 130.932, - 196.502, - 196.933, - 197.074, - 197.16, - 197.078, - 196.638, - 196.259, - 196.791, - 196.527, - 148.243, - 158.224, + 50.485, + 78.178, + 131.51, + 196.943, + 198.101, + 198.405, + 198.567, + 198.307, + 197.224, + 196.383, + 197.467, + 196.857, + 148.332, + 158.228, 150.775, 60.908, 33.107, @@ -41556,20 +41556,20 @@ 33.107, 33.107, 33.107, - 50.228, - 77.602, - 130.663, - 196.755, - 196.737, - 197.064, - 197.135, - 197.152, - 196.841, - 196.864, - 196.879, - 196.679, - 148.198, - 158.214, + 50.257, + 77.804, + 131.254, + 197.681, + 197.55, + 198.378, + 198.504, + 198.49, + 197.697, + 197.704, + 197.639, + 197.087, + 148.293, + 158.217, 150.775, 60.908, 33.107, @@ -41580,20 +41580,20 @@ 33.107, 33.107, 33.107, - 50.119, - 77.607, - 130.612, - 196.706, - 196.874, - 197.002, - 197.088, - 197.127, - 197.778, - 199.766, - 199.56, - 199.25, - 150.613, - 158.215, + 50.15, + 77.804, + 131.151, + 197.553, + 197.949, + 198.232, + 198.396, + 198.424, + 198.98, + 200.775, + 200.307, + 199.653, + 150.72, + 158.218, 150.775, 60.908, 33.107, @@ -41604,20 +41604,20 @@ 33.107, 33.107, 33.107, - 50.097, - 77.644, - 130.668, - 196.729, - 196.901, - 197.042, - 201.205, - 207.24, - 208.586, - 208.855, - 208.84, - 208.132, - 154.406, - 159.083, + 50.137, + 77.854, + 131.215, + 197.594, + 198.008, + 198.316, + 202.558, + 208.58, + 209.816, + 209.902, + 209.614, + 208.547, + 154.501, + 159.088, 150.792, 60.908, 33.107, @@ -41628,20 +41628,20 @@ 33.107, 33.107, 33.107, - 49.886, - 77.476, - 130.578, - 196.731, - 196.905, - 198.72, - 209.11, - 213.856, - 214.07, - 215.727, - 215.363, - 214.333, - 162.293, - 161.341, + 49.923, + 77.681, + 131.136, + 197.605, + 198.018, + 199.991, + 210.455, + 215.186, + 215.302, + 216.774, + 216.146, + 214.754, + 162.381, + 161.347, 151.387, 60.908, 33.107, @@ -41652,20 +41652,20 @@ 31.876, 31.876, 28.45, - 48.469, - 59.756, - 95.17, - 148.528, - 196.923, - 197.066, - 197.181, - 208.989, - 218.832, - 220.572, - 220.332, - 219.565, - 144.983, - 103.854, + 48.501, + 59.957, + 95.74, + 149.424, + 198.051, + 198.37, + 198.558, + 210.345, + 220.083, + 221.632, + 221.123, + 219.99, + 145.07, + 103.859, 115.584, 79.921, 31.876, @@ -41676,20 +41676,20 @@ 31.876, 31.876, 28.45, - 11.342, - 11.458, - 59.907, - 60.011, - 113.326, - 113.448, - 148.951, - 148.97, - 149.004, - 149.136, - 148.998, - 113.314, - 77.404, - 18.199, + 11.373, + 11.668, + 60.528, + 60.975, + 114.524, + 114.788, + 150.352, + 150.341, + 150.259, + 150.208, + 149.802, + 113.748, + 77.498, + 18.205, 31.876, 31.876, 31.876, @@ -41700,20 +41700,20 @@ 33.107, 33.107, 29.681, - 49.82, - 77.537, - 130.633, - 196.766, - 196.942, - 197.071, - 197.153, - 198.782, - 202.768, - 203.174, - 203.272, - 203.2, - 155.259, - 155.579, + 49.857, + 77.746, + 131.223, + 197.686, + 198.094, + 198.377, + 198.528, + 200.139, + 204.02, + 204.241, + 204.069, + 203.631, + 155.359, + 155.587, 150.775, 60.908, 33.107, @@ -41724,20 +41724,20 @@ 33.107, 33.107, 29.681, - 49.727, - 77.492, - 130.614, - 196.768, - 196.953, - 197.088, - 197.171, - 197.295, - 198.716, - 200.512, - 200.432, - 198.595, - 148.63, - 154.811, + 49.772, + 77.707, + 131.194, + 197.682, + 198.114, + 198.41, + 198.562, + 198.503, + 198.973, + 201.307, + 201.225, + 199.022, + 148.735, + 154.819, 150.775, 60.908, 33.107, @@ -41748,20 +41748,20 @@ 33.107, 33.107, 29.681, - 49.617, - 77.329, - 130.594, - 196.752, - 196.924, - 197.055, - 197.138, - 197.307, - 199.164, - 199.912, - 199.501, - 198.218, - 148.524, - 154.811, + 49.66, + 77.536, + 131.158, + 197.64, + 198.048, + 198.329, + 198.486, + 198.639, + 200.403, + 200.962, + 200.139, + 198.593, + 148.63, + 154.821, 150.775, 60.908, 33.107, @@ -41772,20 +41772,20 @@ 33.107, 33.107, 29.681, - 49.692, - 77.45, - 130.602, - 196.76, - 196.946, - 197.086, - 197.173, - 197.206, - 197.175, - 198.671, - 199.066, - 198.777, - 148.295, - 154.819, + 49.732, + 77.654, + 131.164, + 197.658, + 198.094, + 198.402, + 198.564, + 198.585, + 198.441, + 199.751, + 199.872, + 199.211, + 148.389, + 154.828, 150.775, 60.908, 33.107, @@ -41796,20 +41796,20 @@ 33.107, 33.107, 29.681, - 49.837, - 77.54, - 130.659, - 196.762, - 196.923, - 197.028, - 197.088, - 197.104, - 197.088, - 197.026, - 196.917, - 196.723, - 148.262, - 154.826, + 49.87, + 77.737, + 131.234, + 197.659, + 198.037, + 198.267, + 198.375, + 198.367, + 198.266, + 198.031, + 197.675, + 197.137, + 148.347, + 154.835, 150.775, 60.908, 33.107, @@ -41820,20 +41820,20 @@ 31.876, 31.876, 28.45, - 48.924, - 60.052, - 95.471, - 148.56, - 197.056, - 197.091, - 197.111, - 197.12, - 197.08, - 196.988, - 196.872, - 196.712, - 130.548, - 101.684, + 48.957, + 60.248, + 96.048, + 149.458, + 198.178, + 198.352, + 198.421, + 198.397, + 198.247, + 197.967, + 197.614, + 197.123, + 130.635, + 101.693, 115.355, 80.138, 31.876, @@ -41844,20 +41844,20 @@ 31.876, 31.876, 28.45, - 11.343, - 11.459, - 60.534, - 60.238, - 113.277, - 113.373, - 148.853, - 148.851, - 148.805, - 148.756, - 148.662, - 113.063, - 77.396, - 18.21, + 11.376, + 11.65, + 61.091, + 61.106, + 114.366, + 114.591, + 150.112, + 150.066, + 149.908, + 149.716, + 149.401, + 113.466, + 77.486, + 18.219, 31.876, 31.876, 31.876, @@ -41868,20 +41868,20 @@ 33.107, 33.107, 29.681, - 50.482, - 77.87, - 130.804, - 196.72, - 196.887, - 197.015, - 197.098, - 197.132, - 197.113, - 197.038, - 196.908, - 196.722, - 148.26, - 154.828, + 50.514, + 78.057, + 131.34, + 197.549, + 197.942, + 198.225, + 198.382, + 198.408, + 198.297, + 198.045, + 197.662, + 197.13, + 148.345, + 154.837, 150.775, 60.908, 33.107, @@ -41892,20 +41892,20 @@ 33.107, 33.107, 29.681, - 50.277, - 77.725, - 130.718, - 196.73, - 196.883, - 197.079, - 199.953, - 205.479, - 208.497, - 208.884, - 208.753, - 208.228, - 158.942, - 157.032, + 50.307, + 77.912, + 131.266, + 197.572, + 197.932, + 198.262, + 201.186, + 206.695, + 209.62, + 209.848, + 209.486, + 208.626, + 159.033, + 157.041, 150.811, 60.908, 33.107, @@ -41916,20 +41916,20 @@ 33.107, 33.107, 29.681, - 49.729, - 77.413, - 130.579, - 196.718, - 196.881, - 198.544, - 206.787, - 210.909, - 211.026, - 211.071, - 210.842, - 210.407, - 159.872, - 156.527, + 49.764, + 77.597, + 131.106, + 197.542, + 197.922, + 199.742, + 208.054, + 212.171, + 212.198, + 212.071, + 211.594, + 210.818, + 159.957, + 156.537, 150.932, 60.908, 33.107, @@ -41940,20 +41940,20 @@ 33.107, 33.107, 29.681, - 49.728, - 77.433, - 130.543, - 196.754, - 196.928, - 196.881, - 197.137, - 197.16, - 197.136, - 199.991, - 202.808, - 202.479, - 151.364, - 154.994, + 49.759, + 77.62, + 130.964, + 197.622, + 198.031, + 197.871, + 198.463, + 198.465, + 198.343, + 201.022, + 203.578, + 202.897, + 151.453, + 155.007, 150.775, 60.908, 33.107, @@ -41964,20 +41964,20 @@ 33.107, 33.107, 29.681, - 49.78, - 77.462, - 130.617, - 196.771, - 196.95, - 197.081, - 197.163, - 197.192, - 197.171, - 197.092, - 196.954, - 196.765, - 148.297, - 154.848, + 49.82, + 77.658, + 131.185, + 197.665, + 198.079, + 198.368, + 198.518, + 198.531, + 198.414, + 198.149, + 197.747, + 197.196, + 148.386, + 154.861, 150.775, 60.908, 33.107, @@ -41988,20 +41988,20 @@ 31.876, 31.876, 28.45, - 48.867, - 59.992, - 95.403, - 148.555, - 196.948, - 197.087, - 197.165, - 197.193, - 197.167, - 197.085, - 196.95, - 196.756, - 130.569, - 98.273, + 48.914, + 60.199, + 95.968, + 149.445, + 198.079, + 198.379, + 198.522, + 198.533, + 198.402, + 198.134, + 197.738, + 197.183, + 130.668, + 98.288, 115.348, 79.921, 31.876, @@ -42012,20 +42012,20 @@ 31.876, 31.876, 28.45, - 11.355, - 11.479, - 60.191, - 60.04, - 113.26, - 113.384, - 149.333, - 166.661, - 164.624, - 156.515, - 156.261, - 114.442, - 77.496, - 14.808, + 11.4, + 11.68, + 60.738, + 60.892, + 114.327, + 114.602, + 150.608, + 167.915, + 165.794, + 157.515, + 157.019, + 114.859, + 77.588, + 14.824, 31.876, 31.876, 31.876, @@ -42036,20 +42036,20 @@ 31.876, 31.876, 25.024, - 11.347, - 11.471, - 59.746, - 60.061, - 130.995, - 134.205, - 165.657, - 167.177, - 169.255, - 169.474, - 169.005, - 130.137, - 87.249, - 14.802, + 11.386, + 11.661, + 60.285, + 60.902, + 132.048, + 135.402, + 166.907, + 168.401, + 170.389, + 170.444, + 169.738, + 130.538, + 87.346, + 14.817, 31.876, 31.876, 31.876, @@ -42060,20 +42060,20 @@ 33.107, 33.107, 26.254, - 49.396, - 77.232, - 130.59, - 197.373, - 210.661, - 233.861, - 251.64, - 260.201, - 260.661, - 253.985, - 246.234, - 240.239, - 183.585, - 178.866, + 49.437, + 77.423, + 131.116, + 198.195, + 211.705, + 235.053, + 252.899, + 261.447, + 261.569, + 254.971, + 246.972, + 240.612, + 183.692, + 178.883, 168.732, 60.908, 33.107, @@ -42084,20 +42084,20 @@ 33.107, 33.107, 26.254, - 49.316, - 77.227, - 131.149, - 225.771, - 234.665, - 240.781, - 243.679, - 245.459, - 246.126, - 245.029, - 242.942, - 238.213, - 182.175, - 176.922, + 49.364, + 77.406, + 131.681, + 226.602, + 235.713, + 241.975, + 244.944, + 246.708, + 247.286, + 246.021, + 243.686, + 238.624, + 182.275, + 176.94, 166.821, 60.908, 33.107, @@ -42108,20 +42108,20 @@ 33.107, 33.107, 26.254, - 49.316, - 77.227, - 130.529, - 196.499, - 199.682, - 209.527, - 216.844, - 223.269, - 224.402, - 225.059, - 224.12, - 222.573, - 168.367, - 160.813, + 49.363, + 77.402, + 130.926, + 196.931, + 200.588, + 210.577, + 217.727, + 223.872, + 224.602, + 225.747, + 224.432, + 222.984, + 168.471, + 160.833, 151.862, 60.908, 33.107, @@ -42132,20 +42132,20 @@ 33.107, 33.107, 26.254, - 49.565, - 77.277, - 130.584, - 196.736, - 196.888, - 197.006, - 197.093, - 197.043, - 196.842, - 196.918, - 196.849, - 196.593, - 148.164, - 151.397, + 49.608, + 77.459, + 131.094, + 197.567, + 197.926, + 198.178, + 198.35, + 198.185, + 197.673, + 197.768, + 197.527, + 196.937, + 148.277, + 151.418, 150.775, 60.908, 33.107, @@ -42156,20 +42156,20 @@ 31.876, 31.876, 25.024, - 48.933, - 59.947, - 95.161, - 148.232, - 196.752, - 196.866, - 196.976, - 196.989, - 196.966, - 196.575, - 196.542, - 196.456, - 130.359, - 98.27, + 48.973, + 60.116, + 95.573, + 148.602, + 197.56, + 197.818, + 198.064, + 198.053, + 197.952, + 197.057, + 196.958, + 196.732, + 130.458, + 98.291, 115.348, 79.921, 31.876, @@ -42180,20 +42180,20 @@ 31.876, 31.876, 25.024, - 11.352, - 11.476, - 59.98, - 59.946, - 113.237, - 113.349, - 148.821, - 148.814, - 148.784, - 148.732, - 148.632, - 113.037, - 77.405, - 14.819, + 11.394, + 11.661, + 60.49, + 60.752, + 114.264, + 114.507, + 150.011, + 149.958, + 149.835, + 149.642, + 149.327, + 113.419, + 77.504, + 14.841, 31.876, 31.876, 31.876, @@ -42204,20 +42204,20 @@ 33.107, 33.107, 26.254, - 49.763, - 77.491, - 130.624, - 196.719, - 196.88, - 197.004, - 197.084, - 197.119, - 197.102, - 197.031, - 196.906, - 196.736, - 148.287, - 151.447, + 49.802, + 77.668, + 131.134, + 197.523, + 197.899, + 198.17, + 198.322, + 198.353, + 198.252, + 198.013, + 197.644, + 197.147, + 148.386, + 151.469, 150.775, 60.908, 33.107, @@ -42228,20 +42228,20 @@ 33.107, 33.107, 26.254, - 49.802, - 77.468, - 130.528, - 196.34, - 196.382, - 196.888, - 196.804, - 197.132, - 197.128, - 196.863, - 196.927, - 196.729, - 148.266, - 151.412, + 49.836, + 77.578, + 130.822, + 196.563, + 196.656, + 197.866, + 197.647, + 198.386, + 198.305, + 197.66, + 197.687, + 197.152, + 148.388, + 151.436, 150.775, 60.908, 33.107, @@ -42252,20 +42252,20 @@ 33.107, 33.107, 26.254, - 50.029, - 77.623, - 130.713, - 196.76, - 196.938, - 197.068, - 197.153, - 197.221, - 197.405, - 197.991, - 197.85, - 197.634, - 148.443, - 151.451, + 50.074, + 77.807, + 131.248, + 197.618, + 198.031, + 198.319, + 198.479, + 198.536, + 198.625, + 199.03, + 198.631, + 198.065, + 148.549, + 151.477, 150.775, 60.908, 33.107, @@ -42276,20 +42276,20 @@ 33.107, 33.107, 26.254, - 49.737, - 77.485, - 130.657, - 196.801, - 196.987, - 197.122, - 198.082, - 202.108, - 205.131, - 206.522, - 206.304, - 205.864, - 156.719, - 152.544, + 49.777, + 77.676, + 131.231, + 197.711, + 198.148, + 198.445, + 199.479, + 203.489, + 206.401, + 207.604, + 207.12, + 206.32, + 156.823, + 152.569, 150.818, 60.908, 33.107, @@ -42300,20 +42300,20 @@ 33.107, 33.107, 26.254, - 49.82, - 77.552, - 130.828, - 196.831, - 196.995, - 197.126, - 197.194, - 197.164, - 197.188, - 197.106, - 196.972, - 196.791, - 148.334, - 151.476, + 49.857, + 77.743, + 131.41, + 197.758, + 198.167, + 198.453, + 198.57, + 198.456, + 198.436, + 198.169, + 197.774, + 197.235, + 148.435, + 151.5, 150.775, 60.908, 33.107, @@ -42324,20 +42324,20 @@ 31.876, 31.876, 25.024, - 48.506, - 59.742, - 95.216, - 148.557, - 196.934, - 197.045, - 197.11, - 197.12, - 198.731, - 199.737, - 199.592, - 199.383, - 130.592, - 98.323, + 48.542, + 59.924, + 95.765, + 149.428, + 198.022, + 198.266, + 198.385, + 198.366, + 199.875, + 200.703, + 200.328, + 199.805, + 130.691, + 98.349, 115.348, 79.921, 31.876, @@ -42348,20 +42348,20 @@ 31.876, 31.876, 25.024, - 11.347, - 11.477, - 60.032, - 60.007, - 113.268, - 113.375, - 148.86, - 148.875, - 148.858, - 148.802, - 148.692, - 113.103, - 77.452, - 14.851, + 11.386, + 11.654, + 60.564, + 60.85, + 114.329, + 114.567, + 150.1, + 150.09, + 149.989, + 149.78, + 149.439, + 113.526, + 77.555, + 14.876, 31.876, 31.876, 31.876, @@ -42372,20 +42372,20 @@ 33.107, 33.107, 26.254, - 49.669, - 77.413, - 130.601, - 196.741, - 196.909, - 197.038, - 197.129, - 197.198, - 198.662, - 199.978, - 199.781, - 199.518, - 148.599, - 151.474, + 49.706, + 77.584, + 131.117, + 197.564, + 197.96, + 198.248, + 198.414, + 198.479, + 199.859, + 201.002, + 200.556, + 199.954, + 148.702, + 151.5, 150.775, 60.908, 33.107, @@ -42396,20 +42396,20 @@ 33.107, 33.107, 26.254, - 49.613, - 77.371, - 130.61, - 196.776, - 196.921, - 197.048, - 197.164, - 197.196, - 198.683, - 201.791, - 202.305, - 201.974, - 150.575, - 151.538, + 49.65, + 77.555, + 131.142, + 197.646, + 197.99, + 198.271, + 198.5, + 198.52, + 199.908, + 202.839, + 203.095, + 202.418, + 150.68, + 151.566, 150.775, 60.908, 33.107, @@ -42420,20 +42420,20 @@ 33.107, 33.107, 26.254, - 49.529, - 77.277, - 130.618, - 196.77, - 196.941, - 197.07, - 197.271, - 200.321, - 201.805, - 203.875, - 205.862, - 205.272, - 153.532, - 148.681, + 49.573, + 77.457, + 131.159, + 197.631, + 198.033, + 198.318, + 198.591, + 201.629, + 203.016, + 204.906, + 206.64, + 205.71, + 153.635, + 148.709, 150.853, 60.908, 33.107, @@ -42444,20 +42444,20 @@ 33.107, 33.107, 26.254, - 49.591, - 77.373, - 130.611, - 196.755, - 196.903, - 197.001, - 197.043, - 197.06, - 197.077, - 197.043, - 196.939, - 196.76, - 148.302, - 148.034, + 49.631, + 77.549, + 131.143, + 197.595, + 197.949, + 198.167, + 198.241, + 198.236, + 198.192, + 198.02, + 197.686, + 197.185, + 148.411, + 148.063, 150.775, 60.908, 33.107, @@ -42468,20 +42468,20 @@ 33.107, 33.107, 26.254, - 49.572, - 77.307, - 130.596, - 196.726, - 196.891, - 197.016, - 197.75, - 201.173, - 203.864, - 206.339, - 206.556, - 206.214, - 157.324, - 153.418, + 49.614, + 77.479, + 131.108, + 197.53, + 197.917, + 198.194, + 198.998, + 202.415, + 205.02, + 207.329, + 207.295, + 206.634, + 157.437, + 153.445, 151.035, 60.908, 33.107, @@ -42492,20 +42492,20 @@ 31.876, 31.876, 25.024, - 48.15, - 59.518, - 95.174, - 148.533, - 196.987, - 203.07, - 211.845, - 219.775, - 221.401, - 221.135, - 220.883, - 219.685, - 145.64, - 98.009, + 48.19, + 59.686, + 95.691, + 149.367, + 198.052, + 204.29, + 213.137, + 221.06, + 222.596, + 222.156, + 221.656, + 220.124, + 145.747, + 98.037, 115.632, 79.921, 31.876, @@ -42516,20 +42516,20 @@ 31.876, 31.876, 25.024, - 11.352, - 11.477, - 59.749, - 59.962, - 113.262, - 113.37, - 150.634, - 154.239, - 157.62, - 160.731, - 160.37, - 115.041, - 77.528, - 11.424, + 11.395, + 11.65, + 60.269, + 60.792, + 114.31, + 114.55, + 151.861, + 155.448, + 158.752, + 161.712, + 161.12, + 115.472, + 77.64, + 11.454, 31.876, 31.876, 31.876, @@ -42540,20 +42540,20 @@ 33.107, 33.107, 26.254, - 49.55, - 77.286, - 130.603, - 196.748, - 196.901, - 197.001, - 199.017, - 201.108, - 201.121, - 201.036, - 200.768, - 200.413, - 148.89, - 148.424, + 49.592, + 77.457, + 131.122, + 197.577, + 197.94, + 198.159, + 200.225, + 202.302, + 202.243, + 202.012, + 201.515, + 200.84, + 149.004, + 148.454, 150.775, 60.908, 33.107, @@ -42564,20 +42564,20 @@ 33.107, 33.107, 26.254, - 49.67, - 77.339, - 130.593, - 196.726, - 197.554, - 201.403, - 202.577, - 210.149, - 213.533, - 213.558, - 212.98, - 212.206, - 162.564, - 153.555, + 49.72, + 77.518, + 131.099, + 197.529, + 198.568, + 202.561, + 203.808, + 211.375, + 214.676, + 214.528, + 213.722, + 212.629, + 162.676, + 153.584, 151.363, 60.908, 33.107, @@ -42588,20 +42588,20 @@ 33.107, 33.107, 26.254, - 49.583, - 77.324, - 130.591, - 196.729, - 196.885, - 197.509, - 203.743, - 209.041, - 210.697, - 210.479, - 209.867, - 209.221, - 160.192, - 151.818, + 49.625, + 77.494, + 131.093, + 197.533, + 197.9, + 198.661, + 204.952, + 210.247, + 211.829, + 211.452, + 210.608, + 209.644, + 160.303, + 151.846, 151.081, 60.908, 33.107, @@ -42612,20 +42612,20 @@ 33.107, 33.107, 26.254, - 49.584, - 77.304, - 130.596, - 196.736, - 196.901, - 200.4, - 209.336, - 210.226, - 213.038, - 214.706, - 214.098, - 212.977, - 161.22, - 150.691, + 49.625, + 77.47, + 131.105, + 197.553, + 197.938, + 201.587, + 210.595, + 211.477, + 214.201, + 215.703, + 214.857, + 213.411, + 161.33, + 150.72, 151.184, 60.908, 33.107, @@ -42636,20 +42636,20 @@ 33.107, 33.107, 26.254, - 49.302, - 77.223, - 130.59, - 196.729, - 196.903, - 200.825, - 210.159, - 218.126, - 222.303, - 224.118, - 222.782, - 221.595, - 168.584, - 158.47, + 49.339, + 77.381, + 131.092, + 197.533, + 197.923, + 201.993, + 211.4, + 219.362, + 223.458, + 225.11, + 223.537, + 222.029, + 168.694, + 158.499, 151.966, 60.908, 33.107, @@ -42660,20 +42660,20 @@ 31.876, 31.876, 25.024, - 48.07, - 59.509, - 95.159, - 148.506, - 197.807, - 220.944, - 228.918, - 226.852, - 228.169, - 229.989, - 231.142, - 229.499, - 149.297, - 98.436, + 48.106, + 59.665, + 95.656, + 149.302, + 198.816, + 222.072, + 230.131, + 228.075, + 229.314, + 230.975, + 231.874, + 229.917, + 149.408, + 98.463, 115.77, 79.921, 31.876, @@ -42684,20 +42684,20 @@ 31.876, 31.876, 25.024, - 11.349, - 11.459, - 59.694, - 59.884, - 113.231, - 113.35, - 148.841, - 149.388, - 152.356, - 154.299, - 154.933, - 116.57, - 77.765, - 11.419, + 11.387, + 11.615, + 60.131, + 60.603, + 114.236, + 114.5, + 150.048, + 150.589, + 153.351, + 155.183, + 155.592, + 116.929, + 77.883, + 11.447, 31.876, 31.876, 31.876, @@ -42708,20 +42708,20 @@ 33.107, 33.107, 26.254, - 49.421, - 77.229, - 130.557, - 196.684, - 196.842, - 197.275, - 204.51, - 211.581, - 218.114, - 221.367, - 220.567, - 218.838, - 162.535, - 151.038, + 49.46, + 77.391, + 131.01, + 197.422, + 197.798, + 198.454, + 205.724, + 212.76, + 219.263, + 222.379, + 221.338, + 219.283, + 162.647, + 151.066, 151.328, 60.908, 33.107, @@ -42732,20 +42732,20 @@ 33.107, 33.107, 26.254, - 49.457, - 77.238, - 130.567, - 196.687, - 196.842, - 197.334, - 207.762, - 214.309, - 214.306, - 213.741, - 213.223, - 212.929, - 160.411, - 149.254, + 49.494, + 77.392, + 131.04, + 197.438, + 197.804, + 198.44, + 208.941, + 215.481, + 215.395, + 214.34, + 213.577, + 213.338, + 160.529, + 149.284, 151.007, 60.908, 33.107, @@ -42756,20 +42756,20 @@ 33.107, 33.107, 26.254, - 49.475, - 77.238, - 130.571, - 196.707, - 196.865, - 198.28, - 204.171, - 210.993, - 214.46, - 214.377, - 213.767, - 212.599, - 159.74, - 149.898, + 49.511, + 77.394, + 131.047, + 197.483, + 197.854, + 199.418, + 205.382, + 212.203, + 215.591, + 215.35, + 214.507, + 213.027, + 159.858, + 149.928, 151.256, 60.908, 33.107, @@ -42780,20 +42780,20 @@ 33.107, 33.107, 26.254, - 49.605, - 77.264, - 130.595, - 208.027, - 224.138, - 233.81, - 240.539, - 247.214, - 248.91, - 246.894, - 242.937, - 238.577, - 181.952, - 173.723, + 49.644, + 77.426, + 131.102, + 208.855, + 225.202, + 235.04, + 241.845, + 248.509, + 250.113, + 247.926, + 243.72, + 239.029, + 182.067, + 173.751, 168.609, 60.908, 33.107, @@ -42804,20 +42804,20 @@ 33.107, 33.107, 26.254, - 49.308, - 77.228, - 130.637, - 208.454, - 218.019, - 224.422, - 230.02, - 236.0, - 243.01, - 247.076, - 244.972, - 239.151, - 183.19, - 171.489, + 49.349, + 77.393, + 131.159, + 209.292, + 219.07, + 225.6, + 231.261, + 237.241, + 244.178, + 248.092, + 245.753, + 239.604, + 183.305, + 171.517, 165.669, 60.908, 33.107, @@ -42828,20 +42828,20 @@ 31.876, 31.876, 25.024, - 48.146, - 59.504, - 95.18, - 159.587, - 223.697, - 235.855, - 242.187, - 246.88, - 248.427, - 249.667, - 248.945, - 243.438, - 161.864, - 112.486, + 48.18, + 59.655, + 95.679, + 160.389, + 224.706, + 237.013, + 243.426, + 248.123, + 249.595, + 250.676, + 249.718, + 243.889, + 161.974, + 112.507, 120.306, 80.07, 31.876, @@ -42852,20 +42852,20 @@ 31.876, 31.876, 28.45, - 11.338, - 11.457, - 59.743, - 59.96, - 113.259, - 113.365, - 148.869, - 148.903, - 148.892, - 148.834, - 148.721, - 113.132, - 77.488, - 11.455, + 11.365, + 11.604, + 60.257, + 60.793, + 114.309, + 114.543, + 150.117, + 150.149, + 150.057, + 149.845, + 149.498, + 113.584, + 77.601, + 11.477, 31.876, 31.876, 31.876, @@ -42876,20 +42876,20 @@ 33.107, 33.107, 29.681, - 49.483, - 77.254, - 130.599, - 196.752, - 196.917, - 197.038, - 197.119, - 198.909, - 201.361, - 206.389, - 208.64, - 208.143, - 159.211, - 158.233, + 49.51, + 77.402, + 131.115, + 197.594, + 197.985, + 198.252, + 198.407, + 200.191, + 202.558, + 207.423, + 209.434, + 208.604, + 159.324, + 158.255, 154.363, 60.908, 33.107, @@ -42900,20 +42900,20 @@ 33.107, 33.107, 29.681, - 49.421, - 77.227, - 130.596, - 196.74, - 203.395, - 216.122, - 220.018, - 224.644, - 228.29, - 231.856, - 231.443, - 229.436, - 175.243, - 165.795, + 49.448, + 77.376, + 131.109, + 197.567, + 204.422, + 217.272, + 221.23, + 225.853, + 229.423, + 232.84, + 232.204, + 229.879, + 175.352, + 165.814, 160.19, 60.908, 33.107, @@ -42924,20 +42924,20 @@ 31.876, 31.876, 28.45, - 11.337, - 11.454, - 59.725, - 59.924, - 113.195, - 113.308, - 148.659, - 148.85, - 148.806, - 148.748, - 148.638, - 113.073, - 77.429, - 11.417, + 11.363, + 11.601, + 60.22, + 60.71, + 114.163, + 114.413, + 149.618, + 150.03, + 149.875, + 149.671, + 149.341, + 113.496, + 77.554, + 11.446, 31.876, 31.876, 31.876, @@ -42948,20 +42948,20 @@ 33.107, 33.107, 29.681, - 49.303, - 77.21, - 130.554, - 196.683, - 196.834, - 196.951, - 199.386, - 205.278, - 208.417, - 211.211, - 211.001, - 210.326, - 161.088, - 156.605, + 49.338, + 77.361, + 131.012, + 197.431, + 197.792, + 198.05, + 200.553, + 206.438, + 209.385, + 212.161, + 211.728, + 210.746, + 161.21, + 156.634, 151.861, 60.908, 33.107, @@ -42972,20 +42972,20 @@ 33.107, 33.107, 29.681, - 49.313, - 77.227, - 130.548, - 196.677, - 196.831, - 196.95, - 197.032, - 197.841, - 201.926, - 204.599, - 204.932, - 204.618, - 155.81, - 155.118, + 49.358, + 77.398, + 131.0, + 197.419, + 197.784, + 198.051, + 198.21, + 198.859, + 202.889, + 205.547, + 205.656, + 205.042, + 155.94, + 155.151, 152.202, 60.908, 33.107, @@ -42996,20 +42996,20 @@ 31.876, 31.876, 28.45, - 48.071, - 59.494, - 95.136, - 148.492, - 196.875, - 197.004, - 204.173, - 222.414, - 234.585, - 236.326, - 235.094, - 233.129, - 153.391, - 104.852, + 48.105, + 59.643, + 95.611, + 149.278, + 197.887, + 198.173, + 205.417, + 223.655, + 235.753, + 237.333, + 235.864, + 233.576, + 153.504, + 104.874, 116.392, 79.977, 31.876, @@ -43020,20 +43020,20 @@ 31.876, 31.876, 28.45, - 11.339, - 11.445, - 59.715, - 59.938, - 113.249, - 113.379, - 151.968, - 156.173, - 166.394, - 176.693, - 178.07, - 140.162, - 93.095, - 11.447, + 11.366, + 11.585, + 60.203, + 60.748, + 114.292, + 114.577, + 153.245, + 157.446, + 167.583, + 177.716, + 178.856, + 140.623, + 93.214, + 11.469, 31.876, 31.876, 31.876, @@ -43044,20 +43044,20 @@ 33.107, 33.107, 29.681, - 49.299, - 77.205, - 132.863, - 228.489, - 233.919, - 239.281, - 245.472, - 250.922, - 255.156, - 257.307, - 253.412, - 247.302, - 188.731, - 177.048, + 49.331, + 77.351, + 133.342, + 229.275, + 234.922, + 240.434, + 246.703, + 252.15, + 256.308, + 258.3, + 254.161, + 247.744, + 188.869, + 177.08, 171.21, 60.908, 33.107, @@ -43068,20 +43068,20 @@ 33.107, 33.107, 29.681, - 49.305, - 77.183, - 135.443, - 226.037, - 240.099, - 251.006, - 254.411, - 257.637, - 260.194, - 265.476, - 266.146, - 260.872, - 202.312, - 189.1, + 49.337, + 77.304, + 135.833, + 226.347, + 240.963, + 251.914, + 255.224, + 258.52, + 261.024, + 265.931, + 266.733, + 261.251, + 202.442, + 189.129, 179.807, 60.908, 33.107, @@ -43092,20 +43092,20 @@ 33.107, 33.107, 29.681, - 49.306, - 77.214, - 134.633, - 232.267, - 243.944, - 252.993, - 255.364, - 256.968, - 257.62, - 257.193, - 252.598, - 245.905, - 189.162, - 178.483, + 49.344, + 77.374, + 135.118, + 233.077, + 244.994, + 254.22, + 256.669, + 258.264, + 258.834, + 258.244, + 253.404, + 246.375, + 189.283, + 178.504, 171.283, 60.908, 33.107, @@ -43116,20 +43116,20 @@ 33.107, 33.107, 29.681, - 49.294, - 77.199, - 130.571, - 211.814, - 233.21, - 247.129, - 253.123, - 257.059, - 259.191, - 256.509, - 251.048, - 243.656, - 186.604, - 174.948, + 49.32, + 77.342, + 131.066, + 212.631, + 234.252, + 248.323, + 254.392, + 258.325, + 260.379, + 257.538, + 251.838, + 244.116, + 186.721, + 174.967, 167.839, 60.908, 33.107, @@ -43140,20 +43140,20 @@ 33.107, 33.107, 29.681, - 49.292, - 77.194, - 130.566, - 196.97, - 202.465, - 216.93, - 227.929, - 231.209, - 233.13, - 233.814, - 232.548, - 230.206, - 175.833, - 166.158, + 49.316, + 77.33, + 131.057, + 197.778, + 203.491, + 218.098, + 229.175, + 232.449, + 234.291, + 234.818, + 233.318, + 230.655, + 175.949, + 166.179, 157.499, 60.908, 33.107, @@ -43164,20 +43164,20 @@ 31.876, 31.876, 28.45, - 48.053, - 59.459, - 95.079, - 148.368, - 197.569, - 208.795, - 222.54, - 229.537, - 230.774, - 231.695, - 231.256, - 230.218, - 154.893, - 108.265, + 48.061, + 59.568, + 95.461, + 148.955, + 198.319, + 209.308, + 223.211, + 230.211, + 231.552, + 232.613, + 231.967, + 230.65, + 155.016, + 108.288, 117.925, 79.99, 31.876, @@ -43188,20 +43188,20 @@ 31.876, 31.876, 28.45, - 11.33, - 11.432, - 59.681, - 59.886, - 113.184, - 113.313, - 153.99, - 167.671, - 173.097, - 176.113, - 176.436, - 132.305, - 85.373, - 11.408, + 11.341, + 11.562, + 60.133, + 60.637, + 114.152, + 114.434, + 155.186, + 168.866, + 174.21, + 177.08, + 177.174, + 132.734, + 85.498, + 11.431, 31.876, 31.876, 31.876, @@ -43212,20 +43212,20 @@ 33.107, 33.107, 29.681, - 49.294, - 77.186, - 130.541, - 196.689, - 196.854, - 203.777, - 214.898, - 223.316, - 228.14, - 231.797, - 230.081, - 227.916, - 174.641, - 166.063, + 49.32, + 77.319, + 131.006, + 197.463, + 197.854, + 204.933, + 216.132, + 224.547, + 229.295, + 232.796, + 230.848, + 228.366, + 174.759, + 166.084, 159.964, 60.908, 33.107, @@ -43236,20 +43236,20 @@ 33.107, 33.107, 29.681, - 49.292, - 77.187, - 130.555, - 196.708, - 204.607, - 217.02, - 222.966, - 227.813, - 231.518, - 234.627, - 235.503, - 234.257, - 178.849, - 169.635, + 49.314, + 77.322, + 131.04, + 197.512, + 205.636, + 218.2, + 224.222, + 229.066, + 232.689, + 235.638, + 236.28, + 234.712, + 178.969, + 169.655, 165.776, 60.908, 33.107, @@ -43260,20 +43260,20 @@ 33.107, 33.107, 29.681, - 49.291, - 77.186, - 130.556, - 196.712, - 196.882, - 197.011, - 202.769, - 210.136, - 211.594, - 212.638, - 213.866, - 213.473, - 164.754, - 165.382, + 49.312, + 77.321, + 131.047, + 197.526, + 197.929, + 198.213, + 204.052, + 211.414, + 212.788, + 213.665, + 214.652, + 213.933, + 164.869, + 165.399, 156.431, 60.908, 33.107, @@ -43284,20 +43284,20 @@ 33.107, 33.107, 29.681, - 49.29, - 77.183, - 130.55, - 196.704, - 196.874, - 201.101, - 211.151, - 221.931, - 230.203, - 233.56, - 233.32, - 231.802, - 179.912, - 175.493, + 49.31, + 77.316, + 131.035, + 197.51, + 197.912, + 202.304, + 212.438, + 223.216, + 231.407, + 234.601, + 234.122, + 232.274, + 180.029, + 175.51, 167.43, 60.908, 33.107, @@ -43308,20 +43308,20 @@ 33.107, 33.107, 33.107, - 49.29, - 77.18, - 130.551, - 199.579, - 225.992, - 244.317, - 250.804, - 254.972, - 256.812, - 258.548, - 253.662, - 247.334, - 188.387, - 179.338, + 49.31, + 77.312, + 131.041, + 200.388, + 227.034, + 245.521, + 252.088, + 256.252, + 258.014, + 259.582, + 254.455, + 247.8, + 188.506, + 179.355, 170.69, 60.908, 33.107, @@ -43332,20 +43332,20 @@ 31.876, 31.876, 31.876, - 48.06, - 59.468, - 95.114, - 148.479, - 207.351, - 228.693, - 238.922, - 240.92, - 239.72, - 242.81, - 243.116, - 238.397, - 158.404, - 115.619, + 48.081, + 59.603, + 95.594, + 149.277, + 208.379, + 229.878, + 240.184, + 242.173, + 240.897, + 243.822, + 243.89, + 238.849, + 158.523, + 115.638, 122.218, 80.188, 31.876, @@ -43356,20 +43356,20 @@ 31.876, 31.876, 31.876, - 11.336, - 11.42, - 59.673, - 59.882, - 113.575, - 118.751, - 168.612, - 173.742, - 174.169, - 175.433, - 176.225, - 136.665, - 89.979, - 14.756, + 11.359, + 11.553, + 60.132, + 60.644, + 114.556, + 119.885, + 169.824, + 174.947, + 175.295, + 176.404, + 176.961, + 137.095, + 90.097, + 14.768, 31.876, 31.876, 31.876, @@ -43381,19 +43381,19 @@ 33.107, 33.107, 49.275, - 77.079, - 130.297, - 198.136, - 214.573, - 233.906, - 243.357, - 254.026, - 256.183, - 262.153, - 255.152, - 245.755, - 186.98, - 180.465, + 77.082, + 130.387, + 198.237, + 214.666, + 234.875, + 244.331, + 255.175, + 256.27, + 262.43, + 255.386, + 245.785, + 187.105, + 180.486, 171.613, 60.908, 33.107, @@ -43404,20 +43404,20 @@ 33.107, 33.107, 33.107, - 49.292, - 77.176, - 130.518, - 216.298, - 237.67, - 249.705, - 253.812, - 256.087, - 258.304, - 264.623, - 256.366, - 244.966, - 184.711, - 179.297, + 49.314, + 77.309, + 130.97, + 217.049, + 238.644, + 250.839, + 255.026, + 257.302, + 259.442, + 265.608, + 257.123, + 245.41, + 184.83, + 179.315, 171.492, 60.908, 33.107, @@ -43428,20 +43428,20 @@ 33.107, 33.107, 33.107, - 49.289, - 77.169, - 130.526, - 196.679, - 202.003, - 216.593, - 225.27, - 232.936, - 238.149, - 239.593, - 239.734, - 239.19, - 185.889, - 179.426, + 49.308, + 77.296, + 130.995, + 197.462, + 203.014, + 217.763, + 226.52, + 234.183, + 239.323, + 240.605, + 240.509, + 239.639, + 186.009, + 179.443, 172.16, 60.908, 33.107, @@ -43452,20 +43452,20 @@ 33.107, 33.107, 33.107, - 49.289, - 77.168, - 130.525, - 198.503, - 215.762, - 235.761, - 241.598, - 246.55, - 248.791, - 247.675, - 247.228, - 243.28, - 185.663, - 179.748, + 49.307, + 77.296, + 130.995, + 199.288, + 216.773, + 236.923, + 242.839, + 247.794, + 249.957, + 248.685, + 248.005, + 243.733, + 185.783, + 179.764, 171.138, 60.908, 33.107, @@ -43476,20 +43476,20 @@ 33.107, 33.107, 33.107, - 49.29, - 77.168, - 130.518, - 196.664, - 200.757, - 219.684, - 230.794, - 235.273, - 237.08, - 237.545, - 236.734, - 234.464, - 178.371, - 172.802, + 49.309, + 77.297, + 130.979, + 197.434, + 201.751, + 220.837, + 232.025, + 236.5, + 238.235, + 238.541, + 237.495, + 234.908, + 178.49, + 172.816, 166.763, 60.908, 33.107, @@ -43500,20 +43500,20 @@ 31.876, 31.876, 31.876, - 48.059, - 59.456, - 95.093, - 148.45, - 200.342, - 207.665, - 211.993, - 216.418, - 220.14, - 222.976, - 224.592, - 224.367, - 153.366, - 115.693, + 48.079, + 59.588, + 95.559, + 149.228, + 201.346, + 208.822, + 213.227, + 217.649, + 221.298, + 223.976, + 225.358, + 224.812, + 153.484, + 115.708, 130.113, 85.304, 31.876, @@ -43524,20 +43524,20 @@ 31.876, 31.876, 31.876, - 11.331, - 11.408, - 59.663, - 62.914, - 141.131, - 153.099, - 192.197, - 192.884, - 193.867, - 194.381, - 195.215, - 151.231, - 102.725, - 14.809, + 11.348, + 11.539, + 60.132, + 63.697, + 142.138, + 154.255, + 193.43, + 194.114, + 195.01, + 195.37, + 195.976, + 151.677, + 102.841, + 14.822, 31.876, 31.876, 31.876, @@ -43548,20 +43548,20 @@ 33.107, 33.107, 33.107, - 49.288, - 77.165, - 130.516, - 197.122, - 213.96, - 232.909, - 243.031, - 249.113, - 251.304, - 253.501, - 250.253, - 243.907, - 185.097, - 178.805, + 49.305, + 77.298, + 130.985, + 197.902, + 214.961, + 234.064, + 244.264, + 250.344, + 252.465, + 254.501, + 251.019, + 244.354, + 185.215, + 178.817, 170.841, 60.908, 33.107, @@ -43572,20 +43572,20 @@ 33.107, 33.107, 33.107, - 49.287, - 77.165, - 130.51, - 198.612, - 208.345, - 224.019, - 235.761, - 243.807, - 249.135, - 251.895, - 250.083, - 245.052, - 186.67, - 178.626, + 49.303, + 77.298, + 130.972, + 199.383, + 209.334, + 225.161, + 236.979, + 245.021, + 250.269, + 252.866, + 250.82, + 245.486, + 186.793, + 178.637, 169.942, 60.908, 33.107, @@ -43597,19 +43597,19 @@ 33.107, 33.107, 49.275, - 77.143, - 130.247, - 219.31, - 233.173, - 243.306, - 245.628, - 246.305, - 248.911, - 249.348, - 246.424, - 239.469, - 180.595, - 175.334, + 77.219, + 130.258, + 219.943, + 234.175, + 244.326, + 246.702, + 247.393, + 250.057, + 250.342, + 247.18, + 239.91, + 180.714, + 175.344, 166.738, 60.908, 33.107, @@ -43620,20 +43620,20 @@ 33.107, 33.107, 33.107, - 49.287, - 77.165, - 130.506, - 206.967, - 230.439, - 240.664, - 244.031, - 248.283, - 247.335, - 244.535, - 241.686, - 238.301, - 182.305, - 175.981, + 49.302, + 77.3, + 130.969, + 207.739, + 231.432, + 241.814, + 245.269, + 249.522, + 248.494, + 245.543, + 242.456, + 238.754, + 182.421, + 175.99, 167.161, 60.908, 33.107, @@ -43644,20 +43644,20 @@ 33.107, 33.107, 33.107, - 52.711, - 77.156, - 130.51, - 200.952, - 214.857, - 225.073, - 231.817, - 237.132, - 240.919, - 242.683, - 238.951, - 230.73, - 171.526, - 168.243, + 52.723, + 77.287, + 130.987, + 201.74, + 215.865, + 226.234, + 233.049, + 238.364, + 242.077, + 243.684, + 239.716, + 231.176, + 171.64, + 168.251, 153.667, 60.908, 33.107, @@ -43668,20 +43668,20 @@ 31.876, 31.876, 31.876, - 51.48, - 59.449, - 95.077, - 148.484, - 206.14, - 219.293, - 228.108, - 233.157, - 234.622, - 234.697, - 234.665, - 232.309, - 152.428, - 110.191, + 51.493, + 59.586, + 95.547, + 149.266, + 207.149, + 220.453, + 229.347, + 234.389, + 235.513, + 235.686, + 235.415, + 232.748, + 152.553, + 110.199, 116.308, 79.921, 31.876, @@ -43692,20 +43692,20 @@ 31.876, 31.876, 31.876, - 14.755, - 11.42, - 59.654, - 59.871, - 113.185, - 113.322, - 148.839, - 148.88, - 148.865, - 148.81, - 148.683, - 113.072, - 77.402, - 18.212, + 14.766, + 11.569, + 60.125, + 60.657, + 114.21, + 114.511, + 150.115, + 150.16, + 150.058, + 149.843, + 149.469, + 113.536, + 77.521, + 18.22, 31.876, 31.876, 31.876, @@ -43716,20 +43716,20 @@ 33.107, 33.107, 33.107, - 52.949, - 77.24, - 130.522, - 196.698, - 196.88, - 197.023, - 198.407, - 206.05, - 208.264, - 208.749, - 208.674, - 207.931, - 158.19, - 156.332, + 52.961, + 77.382, + 131.033, + 197.552, + 197.984, + 198.301, + 199.766, + 207.4, + 209.526, + 209.833, + 209.498, + 208.408, + 158.306, + 156.337, 150.988, 60.908, 33.107, @@ -43740,20 +43740,20 @@ 33.107, 33.107, 33.107, - 52.708, - 77.149, - 130.514, - 213.681, - 231.2, - 243.563, - 252.669, - 263.43, - 267.455, - 262.049, - 256.706, - 252.023, - 194.936, - 192.172, + 52.716, + 77.285, + 131.022, + 214.523, + 232.283, + 244.806, + 253.997, + 264.754, + 268.69, + 263.111, + 257.516, + 252.494, + 195.05, + 192.178, 181.044, 60.908, 33.107, @@ -43764,20 +43764,20 @@ 33.107, 33.107, 33.107, - 52.708, - 77.149, - 143.073, - 244.71, - 264.848, - 274.687, - 279.743, - 286.209, - 285.058, - 285.54, - 282.129, - 276.924, - 207.449, - 193.567, + 52.716, + 77.286, + 143.585, + 245.552, + 265.924, + 275.913, + 281.055, + 287.524, + 286.29, + 286.604, + 282.944, + 277.399, + 207.562, + 193.572, 178.575, 60.908, 33.107, @@ -43788,20 +43788,20 @@ 33.107, 33.107, 33.107, - 52.707, - 77.146, - 148.787, - 248.167, - 254.847, - 263.137, - 272.501, - 277.48, - 275.794, - 273.17, - 267.501, - 257.518, - 193.264, - 184.754, + 52.715, + 77.282, + 149.295, + 249.005, + 255.924, + 264.376, + 273.826, + 278.807, + 277.033, + 274.24, + 268.317, + 257.994, + 193.38, + 184.759, 169.919, 60.908, 33.107, @@ -43812,20 +43812,20 @@ 33.107, 33.107, 33.107, - 52.706, - 77.143, - 130.505, - 196.669, - 201.251, - 213.216, - 219.396, - 223.953, - 226.894, - 229.379, - 227.881, - 225.486, - 169.036, - 165.727, + 52.713, + 77.279, + 131.011, + 197.5, + 202.32, + 214.447, + 220.713, + 225.272, + 228.127, + 230.443, + 228.694, + 225.957, + 169.147, + 165.733, 153.521, 60.908, 33.107, @@ -43836,20 +43836,20 @@ 31.876, 31.876, 31.876, - 51.476, - 59.429, - 95.073, - 152.862, - 228.345, - 244.803, - 253.219, - 254.56, - 255.945, - 257.977, - 258.333, - 250.713, - 165.964, - 124.484, + 51.484, + 59.566, + 95.576, + 153.699, + 229.432, + 246.055, + 254.553, + 255.886, + 257.187, + 259.043, + 259.144, + 251.182, + 166.073, + 124.489, 130.631, 83.16, 31.876, @@ -43860,20 +43860,20 @@ 31.876, 31.876, 31.876, - 14.75, - 11.383, - 60.999, - 77.628, - 148.613, - 154.225, - 195.377, - 201.131, - 203.361, - 204.196, - 205.011, - 155.662, - 104.757, - 18.193, + 14.757, + 11.516, + 61.486, + 78.433, + 149.651, + 155.419, + 196.645, + 202.392, + 204.54, + 205.204, + 205.776, + 156.105, + 104.859, + 18.196, 31.876, 31.876, 31.876, @@ -43884,20 +43884,20 @@ 33.107, 33.107, 33.107, - 52.706, - 77.139, - 135.346, - 231.291, - 245.561, - 254.923, - 261.569, - 267.243, - 268.311, - 267.913, - 267.349, - 259.468, - 196.456, - 192.582, + 52.713, + 77.271, + 135.828, + 232.09, + 246.585, + 256.102, + 262.828, + 268.499, + 269.489, + 268.927, + 268.12, + 259.909, + 196.557, + 192.584, 176.892, 60.908, 33.107, @@ -43908,20 +43908,20 @@ 33.107, 33.107, 33.107, - 52.706, - 77.137, - 132.905, - 229.975, - 243.246, - 256.148, - 264.86, - 269.061, - 271.694, - 268.026, - 258.347, - 247.379, - 182.721, - 180.369, + 52.712, + 77.268, + 133.382, + 230.762, + 244.222, + 257.087, + 266.113, + 270.308, + 272.671, + 268.765, + 259.014, + 247.782, + 182.821, + 180.37, 165.451, 60.908, 33.107, @@ -43932,19 +43932,19 @@ 33.107, 33.107, 33.107, - 52.705, - 77.148, - 131.933, - 227.347, - 239.92, - 249.171, - 259.559, - 265.747, - 264.436, - 265.087, - 264.893, - 258.715, - 198.385, + 52.71, + 77.284, + 132.409, + 228.136, + 240.934, + 250.334, + 260.798, + 266.984, + 265.591, + 266.083, + 265.641, + 259.132, + 198.495, 196.651, 180.49, 60.908, @@ -43956,19 +43956,19 @@ 33.107, 33.107, 33.107, - 52.705, - 77.144, - 134.228, - 228.117, - 247.384, - 261.295, - 267.811, - 270.47, - 269.826, - 269.209, - 267.623, - 261.212, - 203.283, + 52.709, + 77.281, + 134.702, + 228.899, + 248.385, + 262.438, + 269.03, + 271.686, + 270.958, + 270.18, + 268.348, + 261.618, + 203.389, 202.534, 185.334, 60.908, @@ -43980,19 +43980,19 @@ 33.107, 33.107, 33.107, - 56.133, - 77.141, - 133.641, - 228.445, - 243.955, - 256.106, - 261.775, - 264.987, - 266.203, - 269.222, - 262.021, - 255.686, - 195.869, + 56.138, + 77.276, + 134.113, + 229.228, + 244.962, + 257.275, + 263.022, + 266.233, + 267.37, + 270.227, + 262.776, + 256.111, + 195.972, 192.713, 176.597, 60.908, @@ -44004,19 +44004,19 @@ 31.876, 31.876, 31.876, - 54.902, - 59.419, - 95.045, - 148.413, - 197.419, - 205.429, - 214.295, - 219.783, - 222.059, - 224.481, - 224.788, - 222.387, - 145.347, + 54.907, + 59.553, + 95.532, + 149.221, + 198.461, + 206.635, + 215.582, + 221.069, + 223.257, + 225.508, + 225.569, + 222.83, + 145.443, 108.082, 116.021, 79.921, @@ -44028,19 +44028,19 @@ 31.876, 31.876, 31.876, - 18.177, - 11.389, - 59.623, - 59.862, - 113.126, - 113.319, - 152.363, - 164.567, - 171.81, - 173.316, - 172.534, - 126.562, - 78.517, + 18.183, + 11.519, + 60.13, + 60.699, + 114.094, + 114.563, + 153.565, + 165.884, + 173.038, + 174.365, + 173.327, + 127.011, + 78.612, 21.597, 31.876, 31.876, @@ -44052,19 +44052,19 @@ 33.107, 33.107, 33.107, - 56.132, - 77.127, - 130.481, - 196.649, - 196.826, - 199.962, - 217.665, - 229.273, - 230.691, - 229.945, - 228.88, - 224.211, - 164.118, + 56.136, + 77.269, + 131.001, + 197.498, + 197.907, + 201.197, + 218.98, + 230.587, + 231.911, + 230.99, + 229.668, + 224.654, + 164.211, 164.213, 152.035, 60.908, @@ -44076,19 +44076,19 @@ 33.107, 33.107, 33.107, - 56.131, - 77.125, - 130.472, - 196.639, - 199.115, - 207.215, - 212.94, - 221.261, - 231.554, - 238.864, - 236.637, - 231.628, - 172.996, + 56.134, + 77.265, + 130.979, + 197.471, + 200.18, + 208.431, + 214.227, + 222.54, + 232.746, + 239.881, + 237.406, + 232.055, + 173.09, 174.004, 158.175, 60.908, @@ -44100,19 +44100,19 @@ 33.107, 33.107, 33.107, - 56.131, - 77.123, - 130.468, - 196.636, - 198.477, - 210.263, - 220.797, - 228.853, - 235.995, - 242.481, - 240.184, - 235.412, - 178.48, + 56.133, + 77.261, + 130.974, + 197.47, + 199.547, + 211.49, + 222.097, + 230.138, + 237.196, + 243.504, + 240.95, + 235.841, + 178.571, 184.129, 165.084, 60.908, @@ -44124,19 +44124,19 @@ 33.107, 33.107, 33.107, - 56.131, - 77.127, - 130.474, - 198.214, - 212.497, - 225.992, - 237.809, - 246.171, - 245.544, - 244.173, - 242.03, - 238.045, - 180.132, + 56.133, + 77.271, + 130.998, + 199.076, + 213.606, + 227.262, + 239.159, + 247.51, + 246.787, + 245.234, + 242.83, + 238.494, + 180.223, 184.525, 168.283, 60.908, @@ -44148,19 +44148,19 @@ 33.107, 33.107, 33.107, - 56.13, - 77.122, - 130.481, - 217.216, - 231.686, - 246.011, - 254.006, - 259.501, - 263.74, - 260.341, - 250.718, - 241.633, - 184.137, + 56.131, + 77.265, + 130.996, + 218.05, + 232.757, + 247.24, + 255.313, + 260.798, + 264.952, + 261.375, + 251.496, + 242.066, + 184.224, 188.559, 171.178, 60.908, @@ -44172,19 +44172,19 @@ 31.876, 31.876, 31.876, - 54.898, - 59.411, - 95.023, - 157.33, - 230.858, - 247.822, - 252.756, - 255.346, - 254.929, - 253.934, - 253.288, - 245.542, - 162.098, + 54.899, + 59.547, + 95.503, + 158.131, + 231.897, + 249.023, + 254.035, + 256.622, + 255.942, + 254.796, + 253.924, + 245.943, + 162.185, 127.835, 128.395, 82.915, @@ -44197,18 +44197,18 @@ 31.876, 31.876, 18.171, - 11.378, - 59.597, - 59.791, - 124.744, - 135.774, - 177.475, - 180.363, - 181.133, - 180.206, - 179.653, - 137.767, - 93.361, + 11.515, + 60.065, + 60.512, + 125.654, + 136.951, + 178.549, + 181.362, + 182.124, + 180.457, + 179.805, + 138.121, + 93.448, 25.024, 31.876, 31.876, @@ -44221,18 +44221,18 @@ 33.107, 33.107, 56.128, - 77.123, - 130.487, - 220.172, - 237.069, - 248.011, - 255.06, - 261.027, - 259.511, - 257.532, - 252.136, - 244.981, - 186.116, + 77.258, + 130.968, + 220.966, + 238.093, + 249.2, + 256.329, + 262.289, + 260.687, + 258.54, + 252.884, + 245.391, + 186.195, 188.321, 169.413, 60.908, @@ -44245,18 +44245,18 @@ 33.107, 33.107, 56.128, - 77.114, - 130.443, - 199.721, - 215.283, - 228.575, - 235.381, - 240.178, - 241.212, - 240.68, - 238.485, - 235.845, - 180.683, + 77.25, + 130.939, + 200.518, + 216.297, + 229.745, + 236.632, + 241.426, + 242.376, + 241.672, + 239.229, + 236.251, + 180.758, 184.477, 165.494, 60.908, @@ -44269,18 +44269,18 @@ 33.107, 33.107, 56.128, - 77.113, - 130.439, - 196.587, - 201.811, - 214.496, - 220.905, - 225.418, - 231.546, - 236.325, - 235.996, - 234.193, - 178.372, + 77.25, + 130.932, + 197.368, + 202.803, + 215.629, + 222.1, + 226.606, + 232.659, + 236.983, + 236.407, + 234.548, + 178.449, 181.391, 163.898, 60.908, @@ -44293,17 +44293,17 @@ 33.107, 33.107, 56.128, - 77.13, - 130.436, - 196.819, - 206.641, - 227.053, - 240.806, - 246.582, - 246.726, - 245.371, - 243.777, - 238.668, + 77.191, + 130.921, + 197.613, + 207.661, + 228.24, + 242.072, + 247.84, + 247.253, + 245.421, + 244.505, + 238.76, 183.273, 190.751, 169.256, @@ -44317,18 +44317,18 @@ 33.107, 33.107, 56.128, - 77.123, - 130.432, - 204.356, - 220.565, - 231.886, - 238.261, - 243.297, - 244.29, - 243.013, - 240.747, - 237.649, - 180.246, + 77.258, + 130.897, + 205.114, + 221.54, + 233.027, + 239.47, + 244.499, + 245.412, + 243.846, + 241.358, + 238.057, + 180.32, 182.821, 156.014, 60.908, @@ -44341,18 +44341,18 @@ 31.876, 31.876, 58.323, - 59.398, - 95.015, - 148.384, - 196.78, - 206.109, - 221.79, - 232.107, - 242.939, - 245.887, - 244.083, - 238.566, - 153.113, + 59.545, + 95.535, + 149.211, + 197.84, + 207.325, + 223.086, + 233.399, + 244.14, + 246.909, + 244.843, + 238.973, + 153.185, 120.233, 117.733, 80.535, @@ -44365,18 +44365,18 @@ 31.876, 31.876, 21.597, - 11.353, - 59.586, - 59.81, - 113.113, - 114.517, - 169.306, - 181.08, - 183.212, - 182.978, - 182.682, - 138.904, - 91.014, + 11.5, + 60.112, + 60.633, + 114.136, + 115.699, + 170.564, + 181.378, + 183.243, + 183.002, + 183.427, + 139.301, + 91.083, 28.45, 31.876, 31.876, @@ -44389,18 +44389,18 @@ 31.876, 31.876, 21.597, - 11.353, - 59.578, - 59.804, - 113.128, - 113.257, - 153.525, - 159.654, - 161.225, - 161.237, - 161.357, - 124.069, - 78.796, + 11.496, + 60.089, + 60.629, + 114.185, + 114.467, + 154.806, + 160.92, + 161.624, + 161.557, + 161.431, + 124.339, + 78.866, 28.45, 31.876, 31.876, @@ -44413,18 +44413,18 @@ 33.107, 33.107, 59.554, - 77.118, - 130.429, - 196.587, - 196.765, - 198.372, - 206.591, - 220.576, - 226.999, - 226.239, - 225.082, - 223.553, - 169.91, + 77.262, + 130.944, + 197.407, + 197.816, + 199.573, + 207.856, + 221.824, + 228.15, + 227.212, + 225.798, + 223.927, + 169.977, 177.752, 153.747, 60.908, @@ -44437,18 +44437,18 @@ 33.107, 33.107, 59.554, - 77.112, - 130.425, - 196.578, - 200.677, - 217.526, - 225.365, - 234.337, - 240.158, - 242.238, - 240.804, - 237.753, - 179.776, + 77.254, + 130.926, + 197.391, + 201.709, + 218.706, + 226.606, + 235.56, + 241.286, + 243.194, + 241.061, + 238.121, + 179.805, 188.146, 167.827, 60.908, @@ -44461,18 +44461,18 @@ 33.107, 33.107, 59.554, - 77.111, - 130.422, - 200.786, - 216.919, - 237.358, - 246.802, - 250.554, - 256.308, - 254.765, - 250.359, - 244.797, - 188.068, + 77.254, + 130.923, + 201.605, + 217.962, + 238.561, + 248.078, + 251.822, + 257.483, + 255.759, + 251.085, + 245.174, + 188.127, 197.271, 177.629, 60.908, @@ -44485,18 +44485,18 @@ 33.107, 33.107, 59.554, - 77.113, - 131.555, - 224.407, - 241.771, - 251.269, - 255.676, - 261.447, - 265.034, - 264.39, - 258.802, - 253.356, - 196.937, + 77.258, + 132.063, + 225.23, + 242.825, + 252.484, + 256.965, + 262.727, + 266.225, + 265.385, + 259.518, + 253.725, + 196.994, 206.927, 182.184, 60.908, @@ -44509,18 +44509,18 @@ 31.876, 31.876, 58.323, - 59.396, - 95.072, - 171.863, - 245.6, - 257.851, - 263.316, - 266.845, - 267.112, - 263.628, - 258.801, - 253.286, - 171.145, + 59.551, + 95.623, + 172.759, + 246.739, + 259.151, + 264.686, + 268.197, + 268.369, + 264.689, + 259.582, + 253.684, + 171.204, 144.942, 140.346, 98.048, @@ -44533,18 +44533,18 @@ 31.876, 31.876, 21.597, - 11.354, - 59.821, - 70.253, - 145.887, - 162.105, - 207.468, - 210.318, - 212.87, - 210.065, - 202.498, - 154.711, - 102.663, + 11.513, + 60.381, + 71.164, + 147.046, + 163.426, + 208.863, + 211.688, + 214.132, + 211.13, + 203.28, + 155.112, + 102.718, 31.876, 31.876, 31.876, @@ -44557,18 +44557,18 @@ 33.107, 33.107, 59.554, - 77.111, - 130.47, - 207.648, - 234.588, - 251.119, - 253.616, - 254.072, - 254.533, - 254.771, - 252.507, - 245.246, - 183.543, + 77.266, + 131.011, + 208.514, + 235.69, + 252.392, + 254.968, + 255.411, + 255.769, + 255.818, + 253.281, + 245.641, + 183.595, 195.399, 173.321, 60.908, @@ -44581,18 +44581,18 @@ 33.107, 33.107, 59.554, - 77.104, - 130.42, - 197.111, - 209.221, - 225.684, - 238.324, - 245.582, - 246.277, - 245.738, - 244.694, - 240.905, - 183.053, + 77.257, + 130.966, + 197.978, + 210.32, + 226.933, + 239.627, + 246.849, + 247.426, + 246.7, + 245.408, + 241.274, + 183.1, 194.855, 170.567, 60.908, @@ -44605,18 +44605,18 @@ 33.107, 33.107, 59.554, - 77.107, - 130.415, - 196.905, - 208.126, - 221.323, - 228.124, - 236.536, - 242.193, - 243.924, - 240.612, - 235.601, - 178.93, + 77.256, + 130.947, + 197.754, + 209.194, + 222.537, + 229.391, + 237.771, + 243.308, + 244.867, + 241.307, + 235.956, + 178.976, 190.137, 165.915, 60.908, @@ -44629,18 +44629,18 @@ 33.107, 33.107, 59.554, - 77.115, - 130.41, - 196.569, - 196.771, - 214.882, - 237.404, - 243.028, - 242.535, - 241.373, - 238.047, - 231.372, - 172.121, + 77.258, + 130.93, + 197.407, + 197.839, + 216.099, + 238.694, + 244.314, + 243.713, + 242.351, + 238.744, + 231.692, + 172.157, 184.899, 163.563, 60.908, @@ -44653,18 +44653,18 @@ 33.107, 33.107, 59.554, - 77.131, - 130.43, - 196.574, - 201.22, - 210.844, - 212.836, - 213.379, - 217.751, - 223.068, - 223.455, - 222.344, - 174.756, + 77.266, + 130.905, + 197.37, + 202.269, + 212.093, + 214.152, + 214.678, + 218.948, + 224.05, + 224.132, + 222.694, + 174.798, 185.488, 163.359, 60.908, @@ -44677,18 +44677,18 @@ 31.876, 31.876, 61.75, - 59.4, - 95.0, - 148.396, - 196.825, - 201.808, - 205.697, - 208.705, - 210.942, - 212.226, - 212.63, - 211.85, - 147.515, + 59.562, + 95.578, + 149.342, + 198.039, + 203.209, + 207.169, + 210.153, + 212.271, + 213.334, + 213.433, + 212.25, + 147.556, 121.546, 116.464, 80.045, @@ -44701,18 +44701,18 @@ 31.876, 31.876, 25.024, - 11.344, - 59.57, - 59.835, - 113.368, - 120.602, - 172.424, - 182.447, - 185.806, - 184.968, - 183.345, - 134.61, - 88.084, + 11.517, + 60.18, + 60.81, + 114.614, + 122.017, + 173.897, + 183.904, + 187.133, + 186.078, + 184.157, + 135.012, + 88.123, 31.876, 31.876, 31.876, @@ -44725,18 +44725,18 @@ 33.107, 33.107, 62.98, - 77.102, - 130.419, - 196.611, - 197.55, - 203.676, - 207.478, - 209.591, - 210.771, - 211.131, - 210.707, - 209.803, - 163.802, + 77.274, + 131.02, + 197.57, + 198.764, + 205.055, + 208.922, + 210.997, + 212.054, + 212.204, + 211.488, + 210.193, + 163.835, 176.411, 152.162, 60.908, @@ -44749,18 +44749,18 @@ 33.107, 33.107, 62.98, - 77.101, - 130.41, - 196.588, - 196.779, - 196.907, - 199.154, - 209.58, - 213.971, - 214.498, - 214.413, - 213.25, - 166.913, + 77.268, + 130.991, + 197.502, + 197.927, + 198.199, + 200.501, + 210.895, + 215.167, + 215.509, + 215.156, + 213.617, + 166.941, 180.033, 153.998, 60.908, @@ -44773,18 +44773,18 @@ 33.107, 33.107, 62.98, - 77.11, - 130.407, - 196.577, - 196.776, - 196.923, - 197.009, - 197.04, - 197.008, - 198.075, - 201.913, - 203.702, - 158.088, + 77.264, + 130.949, + 197.467, + 197.927, + 198.247, + 198.407, + 198.42, + 198.273, + 199.139, + 202.674, + 204.068, + 158.111, 169.819, 151.179, 60.908, @@ -44797,18 +44797,18 @@ 33.107, 33.107, 63.026, - 77.102, - 130.406, - 196.592, - 196.79, - 198.71, - 206.642, - 214.46, - 217.73, - 217.494, - 216.906, - 215.997, - 167.228, + 77.269, + 130.998, + 197.533, + 197.972, + 200.039, + 208.024, + 215.802, + 218.948, + 218.512, + 217.644, + 216.359, + 167.249, 176.769, 152.636, 60.908, @@ -44821,18 +44821,18 @@ 33.107, 33.107, 63.025, - 77.101, - 130.397, - 196.571, - 196.768, - 204.254, - 218.135, - 223.292, - 225.078, - 226.164, - 225.921, - 224.086, - 177.069, + 77.265, + 130.966, + 197.471, + 197.916, + 205.56, + 219.511, + 224.643, + 226.306, + 227.186, + 226.646, + 224.426, + 177.087, 184.169, 160.818, 60.908, @@ -44845,18 +44845,18 @@ 31.876, 31.876, 61.75, - 59.408, - 94.981, - 150.939, - 215.389, - 228.355, - 240.384, - 249.033, - 252.516, - 253.184, - 253.203, - 249.482, - 171.821, + 59.549, + 95.49, + 151.786, + 216.507, + 229.683, + 241.795, + 250.425, + 253.789, + 254.249, + 253.972, + 249.847, + 171.84, 138.143, 133.964, 88.935, @@ -44869,18 +44869,18 @@ 31.876, 31.876, 25.024, - 11.341, - 59.544, - 67.021, - 143.645, - 162.408, - 208.513, - 211.633, - 219.652, - 219.726, - 214.568, - 174.958, - 121.352, + 11.512, + 60.152, + 67.992, + 144.878, + 163.804, + 209.975, + 213.058, + 220.949, + 220.802, + 215.338, + 175.318, + 121.368, 31.876, 31.876, 31.876, @@ -44893,18 +44893,18 @@ 33.107, 33.107, 62.98, - 77.099, - 144.043, - 242.05, - 266.569, - 293.178, - 296.285, - 292.059, - 289.674, - 286.624, - 277.767, - 264.51, - 205.641, + 77.269, + 144.642, + 243.003, + 267.773, + 294.534, + 297.698, + 293.43, + 290.917, + 287.653, + 278.505, + 264.855, + 205.654, 208.069, 185.641, 60.908, @@ -44917,18 +44917,18 @@ 33.107, 33.107, 62.98, - 77.099, - 140.057, - 237.064, - 249.984, - 261.871, - 276.517, - 284.12, - 281.135, - 282.241, - 277.499, - 264.47, - 205.977, + 77.266, + 140.653, + 238.004, + 251.169, + 263.21, + 277.911, + 285.471, + 282.358, + 283.258, + 278.228, + 264.81, + 205.987, 209.182, 186.043, 60.908, @@ -44941,18 +44941,18 @@ 33.107, 33.107, 62.98, - 77.101, - 130.381, - 196.545, - 198.756, - 215.249, - 221.582, - 227.663, - 231.054, - 230.628, - 230.232, - 226.497, - 175.797, + 77.256, + 130.937, + 197.428, + 199.875, + 216.534, + 222.937, + 228.996, + 232.282, + 231.653, + 230.965, + 226.831, + 175.805, 181.45, 155.446, 60.908, @@ -44965,18 +44965,18 @@ 33.107, 33.107, 62.98, - 77.098, - 130.38, - 196.555, - 199.556, - 216.533, - 222.828, - 225.391, - 226.333, - 225.781, - 223.913, - 220.944, - 173.231, + 77.265, + 130.965, + 197.468, + 200.706, + 217.831, + 224.184, + 226.714, + 227.543, + 226.791, + 224.636, + 221.274, + 173.238, 178.093, 154.003, 60.908, @@ -44989,18 +44989,18 @@ 33.107, 33.107, 62.98, - 77.105, - 130.371, - 196.498, - 196.752, - 203.823, - 218.522, - 224.1, - 223.808, - 222.589, - 221.613, - 218.955, - 174.32, + 77.227, + 130.874, + 197.223, + 197.903, + 204.956, + 219.578, + 225.196, + 224.557, + 222.925, + 222.342, + 219.284, + 174.325, 179.378, 154.294, 60.908, @@ -45013,17 +45013,17 @@ 31.876, 31.876, 61.75, - 59.39, - 94.949, - 148.316, - 196.72, - 196.804, - 197.759, - 207.067, - 213.627, - 214.632, - 214.514, - 213.564, + 59.538, + 95.494, + 149.183, + 197.815, + 197.947, + 198.956, + 208.215, + 214.611, + 215.345, + 214.986, + 213.707, 150.55, 116.098, 115.358, @@ -45037,17 +45037,17 @@ 31.876, 31.876, 28.45, - 11.344, - 59.518, - 59.749, - 113.031, - 113.165, - 148.598, - 148.387, - 148.488, - 148.279, - 148.298, - 112.568, + 11.494, + 60.071, + 60.637, + 114.024, + 114.325, + 149.681, + 149.009, + 149.284, + 148.725, + 148.77, + 112.64, 87.355, 31.876, 31.876, @@ -45061,17 +45061,17 @@ 33.107, 33.107, 66.636, - 77.238, - 130.361, - 196.52, - 197.115, - 211.992, - 227.586, - 238.742, - 241.782, - 238.47, - 232.273, - 224.124, + 77.393, + 130.914, + 197.381, + 198.217, + 213.25, + 228.913, + 240.052, + 242.976, + 239.456, + 232.966, + 224.425, 175.316, 176.551, 154.233, @@ -45085,17 +45085,17 @@ 33.107, 33.107, 66.407, - 77.112, - 130.362, - 196.518, - 196.713, - 196.844, - 197.952, - 200.326, - 200.255, - 200.127, - 199.898, - 199.512, + 77.181, + 130.847, + 197.392, + 197.821, + 198.108, + 199.283, + 201.637, + 201.45, + 201.113, + 200.591, + 199.811, 159.809, 169.604, 151.465, @@ -45109,17 +45109,17 @@ 33.107, 33.107, 66.577, - 77.149, - 130.36, - 196.525, + 77.298, + 130.917, 197.424, - 204.405, - 211.263, - 213.988, - 213.866, - 213.411, - 212.674, - 211.559, + 198.565, + 205.713, + 212.636, + 215.34, + 215.09, + 214.418, + 213.368, + 211.852, 171.202, 173.369, 153.622, @@ -45133,17 +45133,17 @@ 33.107, 33.107, 66.452, - 77.105, - 130.369, - 196.672, - 200.724, - 208.112, - 217.618, - 226.992, - 229.172, - 229.536, - 228.948, - 226.633, + 77.245, + 130.933, + 197.603, + 201.922, + 209.47, + 219.041, + 228.384, + 230.437, + 230.279, + 229.424, + 226.65, 180.121, 185.293, 162.607, @@ -45157,17 +45157,17 @@ 33.107, 33.107, 66.407, - 77.105, - 130.289, - 196.494, - 209.995, - 237.108, - 249.87, - 256.245, - 257.365, - 257.696, - 250.472, - 240.723, + 77.228, + 130.371, + 196.868, + 211.213, + 237.714, + 251.316, + 257.656, + 257.594, + 258.046, + 251.211, + 240.727, 192.361, 192.849, 166.779, @@ -45181,17 +45181,17 @@ 31.876, 31.876, 65.176, - 59.385, - 94.937, - 148.335, - 196.914, - 206.711, - 220.134, - 223.985, - 225.673, - 225.831, - 224.892, - 222.654, + 59.548, + 95.562, + 149.329, + 198.168, + 208.12, + 221.606, + 224.14, + 226.055, + 225.85, + 224.922, + 222.812, 157.365, 118.957, 117.713, @@ -45205,17 +45205,17 @@ 31.876, 31.876, 28.45, - 11.338, - 59.507, - 59.755, - 113.316, - 116.332, - 159.926, - 169.162, - 172.769, - 172.408, - 170.443, - 118.174, + 11.502, + 60.122, + 60.741, + 114.55, + 117.715, + 161.361, + 170.55, + 174.017, + 173.439, + 171.15, + 118.461, 92.591, 31.876, 31.876, @@ -45229,17 +45229,17 @@ 31.876, 31.876, 28.45, - 11.338, - 59.5, - 59.741, - 113.752, - 129.041, - 175.134, - 172.368, - 171.542, - 168.379, - 163.149, - 114.705, + 11.495, + 60.097, + 60.699, + 114.95, + 130.391, + 176.531, + 173.724, + 172.769, + 169.392, + 163.858, + 114.992, 90.858, 31.876, 31.876, @@ -45253,17 +45253,17 @@ 33.107, 33.107, 66.407, - 77.094, - 130.35, - 196.522, - 200.625, - 211.67, - 212.127, - 212.881, - 213.456, - 213.47, - 212.746, - 211.357, + 77.251, + 130.949, + 197.467, + 201.804, + 212.97, + 213.457, + 214.171, + 214.628, + 214.443, + 213.432, + 211.637, 172.194, 172.33, 153.998, @@ -45277,17 +45277,17 @@ 33.107, 33.107, 66.407, - 77.095, - 130.346, - 196.509, - 196.717, - 205.826, - 221.148, - 221.802, - 221.367, - 220.319, - 219.349, - 215.962, + 77.243, + 130.926, + 197.429, + 197.878, + 206.914, + 222.268, + 223.129, + 222.561, + 221.286, + 220.003, + 216.218, 173.245, 171.656, 152.64, @@ -45301,17 +45301,17 @@ 33.107, 33.107, 66.407, - 77.094, - 130.341, - 196.506, - 196.943, - 201.593, - 209.485, - 214.005, - 215.548, - 215.54, - 214.522, - 212.864, + 77.239, + 130.92, + 197.442, + 198.12, + 202.908, + 210.846, + 215.324, + 216.736, + 216.514, + 215.192, + 213.121, 175.4, 173.341, 154.116, @@ -45325,17 +45325,17 @@ 33.107, 33.107, 66.407, - 77.093, - 130.335, - 196.504, - 196.75, - 197.502, - 198.921, - 200.201, - 201.465, - 201.837, - 201.433, - 201.04, + 77.242, + 130.926, + 197.443, + 197.935, + 198.831, + 200.302, + 201.543, + 202.674, + 202.823, + 202.11, + 201.304, 164.875, 171.12, 152.377, @@ -45349,17 +45349,17 @@ 31.876, 31.876, 68.602, - 59.38, - 94.907, - 148.283, - 196.703, - 196.826, - 196.889, - 199.535, - 208.001, - 208.794, - 208.157, - 207.154, + 59.527, + 95.496, + 149.213, + 197.863, + 198.114, + 198.206, + 200.793, + 209.132, + 209.736, + 208.814, + 207.41, 148.697, 115.496, 115.348, @@ -45373,17 +45373,17 @@ 31.876, 31.876, 31.876, - 11.333, - 59.476, - 59.699, - 112.97, - 113.098, - 148.653, - 148.592, - 148.508, - 148.545, - 148.32, - 112.692, + 11.477, + 60.045, + 60.592, + 113.909, + 114.208, + 149.94, + 149.692, + 149.414, + 149.498, + 148.879, + 112.921, 94.208, 31.876, 31.876, @@ -45397,17 +45397,17 @@ 33.107, 33.107, 69.951, - 77.156, - 130.341, - 196.48, - 196.673, - 196.801, - 198.114, - 200.03, - 203.024, - 204.31, - 203.917, - 203.279, + 77.279, + 130.84, + 197.328, + 197.773, + 198.044, + 199.414, + 201.297, + 204.194, + 205.265, + 204.556, + 203.493, 168.085, 170.085, 151.897, @@ -45421,17 +45421,17 @@ 33.107, 33.107, 70.124, - 77.141, - 130.327, - 196.48, - 196.908, - 200.789, - 207.249, - 211.859, - 214.869, - 216.023, - 215.291, - 213.545, + 77.272, + 130.885, + 197.381, + 198.048, + 202.087, + 208.612, + 213.188, + 216.071, + 217.008, + 215.954, + 213.778, 175.664, 172.564, 154.01, @@ -45445,17 +45445,17 @@ 33.107, 33.107, 69.833, - 77.091, - 130.323, - 196.486, - 198.763, - 201.96, - 202.145, - 211.37, - 221.34, - 221.073, - 217.847, - 212.346, + 77.224, + 130.906, + 197.421, + 199.947, + 203.293, + 203.524, + 212.696, + 222.524, + 222.039, + 218.496, + 212.574, 170.933, 171.946, 153.328, @@ -45469,17 +45469,17 @@ 33.107, 33.107, 69.833, - 77.09, - 130.322, - 201.025, - 216.767, - 216.442, - 216.963, - 217.09, - 217.361, - 217.331, - 216.065, - 215.315, + 77.224, + 130.914, + 201.98, + 217.966, + 217.785, + 218.349, + 218.421, + 218.545, + 218.3, + 216.721, + 215.543, 178.777, 173.309, 154.675, @@ -45493,17 +45493,17 @@ 33.107, 33.107, 69.833, - 77.091, - 130.622, - 212.301, - 230.217, - 253.038, - 253.374, - 250.494, - 250.026, - 250.704, - 239.824, - 223.445, + 77.211, + 131.202, + 213.225, + 231.365, + 254.341, + 254.743, + 251.835, + 251.233, + 251.691, + 240.483, + 223.651, 180.041, 173.903, 155.364, @@ -45517,17 +45517,17 @@ 31.876, 31.876, 68.602, - 59.378, - 94.895, - 148.261, - 196.683, - 196.816, - 196.887, - 196.94, - 209.289, - 217.084, - 215.669, - 212.705, + 59.485, + 95.464, + 149.185, + 197.851, + 198.122, + 198.237, + 198.24, + 210.463, + 218.048, + 216.316, + 212.897, 149.481, 115.382, 115.348, @@ -45541,17 +45541,17 @@ 31.876, 31.876, 31.876, - 11.333, - 59.496, - 59.686, - 113.029, - 113.158, - 148.65, - 148.657, - 148.612, - 148.514, - 148.34, - 112.649, + 11.43, + 60.059, + 60.606, + 114.187, + 114.44, + 149.967, + 149.922, + 149.755, + 149.447, + 148.965, + 112.84, 97.634, 31.876, 31.876, @@ -45565,17 +45565,17 @@ 33.107, 33.107, 69.963, - 77.258, - 130.353, - 196.467, - 196.677, - 196.814, - 196.89, - 197.936, - 212.241, - 217.542, - 216.294, - 212.716, + 77.349, + 130.924, + 197.401, + 197.854, + 198.142, + 198.27, + 199.271, + 213.44, + 218.518, + 216.94, + 212.928, 172.891, 168.588, 150.775, @@ -45589,17 +45589,17 @@ 33.107, 33.107, 70.01, - 77.18, - 130.308, - 196.462, - 196.67, - 196.805, - 197.866, - 200.898, - 207.069, - 209.934, - 209.148, - 208.066, + 77.269, + 130.879, + 197.398, + 197.841, + 198.117, + 199.224, + 202.204, + 208.241, + 210.887, + 209.78, + 208.262, 172.22, 170.275, 152.008, @@ -45613,17 +45613,17 @@ 33.107, 33.107, 70.007, - 77.165, - 130.313, - 196.451, - 196.649, - 198.114, - 203.983, - 208.954, - 208.426, - 207.835, - 207.536, - 206.592, + 77.231, + 130.825, + 197.321, + 197.769, + 199.393, + 205.312, + 210.237, + 209.451, + 208.319, + 207.884, + 206.682, 171.518, 169.838, 151.854, @@ -45637,17 +45637,17 @@ 33.107, 33.107, 69.971, - 80.564, - 130.316, - 196.452, - 196.652, - 196.793, - 196.91, - 197.806, - 198.435, - 198.287, - 198.048, - 197.752, + 80.624, + 130.822, + 197.321, + 197.789, + 198.084, + 198.259, + 199.103, + 199.589, + 199.18, + 198.595, + 197.891, 169.914, 169.806, 151.616, @@ -45661,17 +45661,17 @@ 33.107, 33.107, 70.385, - 80.833, - 130.313, - 196.455, - 196.67, - 199.141, - 203.741, - 204.468, - 204.344, - 204.228, - 203.818, - 202.753, + 80.892, + 130.836, + 197.374, + 197.868, + 200.506, + 205.182, + 205.881, + 205.62, + 205.271, + 204.501, + 202.959, 171.497, 170.531, 151.882, @@ -45685,17 +45685,17 @@ 31.876, 31.876, 69.127, - 63.21, - 94.889, - 148.246, - 196.687, - 196.833, - 198.06, - 199.937, - 200.515, - 200.283, - 199.921, - 199.427, + 63.281, + 95.491, + 149.242, + 197.937, + 198.234, + 199.502, + 201.323, + 201.764, + 201.297, + 200.599, + 199.634, 152.707, 115.704, 115.348, @@ -45709,17 +45709,17 @@ 31.876, 31.876, 31.876, - 14.753, - 59.515, - 59.674, - 113.036, - 113.901, - 156.506, - 162.201, - 162.64, - 158.399, - 154.489, - 114.81, + 14.819, + 60.113, + 60.659, + 114.276, + 115.288, + 157.933, + 163.571, + 163.857, + 159.382, + 155.135, + 115.0, 97.638, 31.876, 31.876, @@ -45733,17 +45733,17 @@ 33.107, 33.107, 70.311, - 80.814, - 130.296, - 196.447, - 197.883, - 212.4, - 229.522, - 238.618, - 244.49, - 248.366, - 240.598, - 228.644, + 80.872, + 130.876, + 197.405, + 199.083, + 213.75, + 230.915, + 239.962, + 245.691, + 249.337, + 241.23, + 228.821, 187.854, 181.884, 158.514, @@ -45757,17 +45757,17 @@ 33.107, 33.107, 69.889, - 80.523, - 130.291, - 196.523, - 203.145, - 221.934, - 235.311, - 245.077, - 243.358, - 234.891, - 224.456, - 216.099, + 80.576, + 130.865, + 197.473, + 204.332, + 223.253, + 236.665, + 246.378, + 244.135, + 235.745, + 224.943, + 216.265, 181.486, 173.903, 153.024, @@ -45781,17 +45781,17 @@ 33.107, 33.107, 69.899, - 80.532, - 130.287, - 196.683, - 209.585, - 221.596, - 221.216, - 220.913, - 220.986, - 220.783, - 220.341, - 219.557, + 80.582, + 130.851, + 197.616, + 210.429, + 222.862, + 222.538, + 222.203, + 222.154, + 221.738, + 220.961, + 219.61, 176.705, 171.378, 152.881, @@ -45805,17 +45805,17 @@ 33.107, 33.107, 69.929, - 80.556, - 130.286, - 196.431, - 196.648, - 196.765, - 198.573, - 200.229, - 200.398, - 200.08, - 199.831, - 202.717, + 80.598, + 130.837, + 197.364, + 197.86, + 197.945, + 199.367, + 200.791, + 201.61, + 200.769, + 200.397, + 202.835, 170.482, 169.389, 150.876, @@ -45829,17 +45829,17 @@ 33.107, 33.107, 70.588, - 81.01, - 130.317, - 196.427, - 196.636, - 196.905, - 198.471, - 200.101, - 200.522, - 200.387, - 200.02, - 203.009, + 81.034, + 130.845, + 197.344, + 197.819, + 198.24, + 199.848, + 201.431, + 201.729, + 201.365, + 200.659, + 203.167, 171.222, 169.922, 151.357, @@ -45853,17 +45853,17 @@ 31.876, 31.876, 69.102, - 63.189, - 94.885, - 148.216, - 196.658, - 196.815, - 196.896, - 196.908, - 196.857, - 196.736, - 196.533, - 199.67, + 63.221, + 95.48, + 149.204, + 197.917, + 198.234, + 198.366, + 198.322, + 198.12, + 197.745, + 197.188, + 199.821, 150.775, 115.348, 115.348, @@ -45877,17 +45877,17 @@ 31.876, 31.876, 31.876, - 14.751, - 59.944, - 59.73, - 112.994, - 113.145, - 148.65, - 148.663, - 148.613, - 148.498, - 148.293, - 116.011, + 14.778, + 60.517, + 60.686, + 114.214, + 114.52, + 150.074, + 150.035, + 149.837, + 149.482, + 148.915, + 116.143, 97.634, 31.876, 31.876, @@ -45901,17 +45901,17 @@ 33.107, 33.107, 33.107, - 57.104, - 77.252, - 130.474, - 196.619, - 196.768, - 196.91, - 198.432, - 199.819, - 199.838, - 199.541, - 202.457, + 57.123, + 77.793, + 131.398, + 197.8, + 198.104, + 198.3, + 199.77, + 201.016, + 200.791, + 200.154, + 202.582, 219.223, 169.857, 169.179, @@ -45925,17 +45925,17 @@ 33.107, 33.107, 33.107, - 56.872, - 77.369, - 130.47, - 196.611, - 196.754, - 202.703, - 212.556, - 213.297, - 212.938, - 211.327, - 205.515, + 56.887, + 77.898, + 131.381, + 197.769, + 198.055, + 204.042, + 213.843, + 214.449, + 213.868, + 211.936, + 205.636, 219.514, 169.83, 169.361, @@ -45949,17 +45949,17 @@ 33.107, 33.107, 33.107, - 56.531, - 77.197, - 130.463, - 196.6, - 197.479, - 205.011, - 211.12, - 211.285, - 210.757, - 209.882, - 210.936, + 56.545, + 77.727, + 131.363, + 197.734, + 198.746, + 206.332, + 212.402, + 212.439, + 211.684, + 210.481, + 211.053, 220.906, 170.663, 169.767, @@ -45973,17 +45973,17 @@ 33.107, 33.107, 33.107, - 56.675, - 77.153, - 130.492, - 202.979, - 218.94, - 228.524, - 235.974, - 234.515, - 228.563, - 221.915, - 220.889, + 56.68, + 77.672, + 131.388, + 204.12, + 220.224, + 229.849, + 237.244, + 235.648, + 229.469, + 222.486, + 220.988, 232.774, 174.978, 171.446, @@ -45997,17 +45997,17 @@ 33.107, 33.107, 33.107, - 56.256, - 77.125, - 130.454, - 197.895, - 211.961, - 226.058, + 56.263, + 77.631, + 131.332, + 198.982, + 213.181, + 227.352, + 232.354, + 233.889, 231.418, - 232.742, - 230.496, - 227.265, - 223.246, + 227.846, + 223.348, 230.926, 173.203, 172.218, @@ -46022,16 +46022,16 @@ 31.876, 31.876, 54.955, - 59.409, - 95.028, - 149.41, - 214.04, - 223.906, - 224.72, - 225.996, - 230.291, - 229.981, - 223.754, + 59.928, + 95.937, + 150.573, + 215.369, + 225.289, + 226.06, + 227.189, + 231.245, + 230.575, + 223.85, 232.247, 154.424, 118.032, @@ -46046,16 +46046,16 @@ 31.876, 31.876, 18.171, - 11.384, - 59.6, - 59.795, - 113.091, - 113.167, - 148.609, - 148.402, - 148.918, - 148.801, - 155.33, + 11.79, + 60.403, + 60.894, + 114.377, + 114.51, + 149.908, + 149.185, + 149.796, + 149.32, + 155.334, 133.062, 97.634, 31.876, @@ -46070,16 +46070,16 @@ 33.107, 33.107, 56.589, - 77.245, - 130.414, - 196.577, - 196.732, - 196.81, - 196.826, - 196.782, - 196.67, - 196.471, - 203.055, + 77.655, + 130.911, + 197.68, + 198.012, + 198.153, + 198.132, + 197.956, + 197.612, + 197.063, + 203.153, 216.707, 168.489, 168.489, @@ -46094,16 +46094,16 @@ 33.107, 33.107, 56.765, - 77.194, - 130.413, - 196.57, - 196.765, - 199.347, - 206.882, - 211.159, - 210.706, - 210.082, - 208.932, + 77.372, + 130.922, + 197.688, + 198.04, + 200.43, + 207.798, + 211.896, + 211.359, + 210.445, + 208.936, 219.624, 170.533, 169.439, @@ -46118,16 +46118,16 @@ 33.107, 33.107, 56.956, - 77.264, - 130.438, - 196.476, - 196.731, - 196.813, - 196.833, - 196.954, - 196.967, - 196.751, - 203.285, + 77.3, + 131.288, + 197.162, + 198.03, + 198.18, + 198.166, + 198.152, + 197.926, + 197.344, + 203.309, 216.952, 168.553, 168.489, @@ -46142,16 +46142,16 @@ 33.107, 33.107, 58.108, - 78.727, - 131.831, - 197.427, - 197.1, - 197.26, - 197.091, - 196.775, - 196.851, - 196.613, - 203.297, + 79.175, + 132.69, + 198.564, + 198.401, + 198.625, + 198.414, + 197.956, + 197.787, + 197.19, + 203.376, 217.18, 168.997, 168.978, @@ -46166,16 +46166,16 @@ 33.107, 33.107, 61.214, - 77.857, - 130.459, - 196.603, - 196.769, - 196.852, - 196.867, - 196.818, - 196.698, - 196.484, - 203.05, + 78.387, + 131.423, + 197.856, + 198.186, + 198.321, + 198.279, + 198.084, + 197.715, + 197.118, + 203.145, 216.707, 168.489, 168.489, @@ -46190,16 +46190,16 @@ 31.876, 31.876, 59.146, - 59.59, - 95.003, - 148.361, - 196.739, - 196.846, - 197.447, - 197.657, - 197.522, - 197.234, - 203.784, + 60.089, + 95.92, + 149.549, + 198.093, + 198.253, + 198.805, + 198.863, + 198.489, + 197.726, + 203.797, 217.405, 151.021, 115.348, @@ -46214,16 +46214,16 @@ 31.876, 31.876, 21.597, - 11.376, - 59.661, - 59.785, - 112.976, - 113.063, - 148.322, - 148.234, - 148.075, - 148.188, - 154.794, + 11.551, + 60.224, + 60.959, + 113.983, + 114.199, + 148.955, + 148.681, + 148.252, + 148.671, + 154.805, 133.062, 97.634, 31.876, @@ -46238,16 +46238,16 @@ 33.107, 33.107, 60.25, - 77.613, - 130.589, - 196.547, - 196.585, - 196.638, - 196.38, - 197.075, - 197.316, - 197.072, - 203.611, + 78.048, + 130.992, + 197.657, + 197.457, + 197.552, + 196.676, + 198.252, + 198.253, + 197.644, + 203.669, 217.258, 168.778, 168.489, @@ -46262,16 +46262,16 @@ 33.107, 33.107, 60.08, - 77.136, - 130.414, - 199.183, - 217.769, - 231.912, - 240.733, - 243.285, - 238.591, - 231.532, - 227.369, + 77.593, + 131.277, + 200.309, + 219.064, + 233.036, + 241.627, + 244.074, + 238.942, + 231.655, + 227.37, 233.055, 175.466, 172.643, @@ -46286,16 +46286,16 @@ 33.107, 33.107, 59.575, - 77.106, - 130.411, - 198.561, - 202.392, - 211.45, - 216.161, - 217.723, - 217.929, - 217.526, - 221.094, + 77.545, + 131.278, + 199.714, + 203.693, + 212.801, + 217.463, + 218.882, + 218.853, + 218.094, + 221.156, 223.676, 172.458, 171.222, @@ -46310,16 +46310,16 @@ 31.876, 31.876, 21.597, - 11.369, - 59.533, - 59.681, - 113.043, - 113.13, - 148.576, - 148.533, - 148.417, - 148.134, - 154.794, + 11.513, + 60.079, + 60.415, + 114.311, + 114.468, + 149.875, + 149.698, + 149.344, + 148.506, + 154.805, 133.062, 97.634, 31.876, @@ -46334,16 +46334,16 @@ 33.107, 33.107, 60.472, - 77.745, - 130.667, - 196.557, - 196.724, - 196.827, - 197.483, - 198.072, - 197.873, - 197.492, - 203.846, + 78.194, + 131.578, + 197.749, + 198.093, + 198.26, + 198.868, + 199.308, + 198.855, + 198.105, + 203.858, 216.75, 168.489, 168.489, @@ -46358,16 +46358,16 @@ 31.876, 31.876, 58.961, - 59.822, - 95.23, - 148.337, - 196.707, - 196.796, - 196.817, - 196.774, - 196.658, - 196.455, - 203.034, + 59.967, + 96.117, + 149.501, + 198.03, + 198.186, + 198.17, + 197.993, + 197.639, + 197.069, + 203.107, 216.707, 150.775, 115.348, @@ -46382,16 +46382,16 @@ 31.876, 31.876, 21.597, - 11.365, - 59.544, - 59.751, - 113.044, - 113.133, - 148.581, - 148.536, - 148.418, - 148.223, - 154.814, + 11.51, + 60.429, + 60.888, + 114.32, + 114.48, + 149.896, + 149.717, + 149.355, + 148.813, + 154.883, 133.062, 97.634, 31.876, @@ -46406,16 +46406,16 @@ 33.107, 33.107, 60.177, - 77.18, - 130.39, - 196.586, - 199.024, - 207.171, - 217.268, - 221.34, - 222.663, - 221.72, - 222.835, + 77.339, + 131.261, + 197.711, + 200.295, + 208.475, + 218.525, + 222.481, + 223.58, + 222.308, + 222.91, 229.509, 173.341, 171.073, @@ -46430,16 +46430,16 @@ 33.107, 33.107, 63.859, - 77.491, - 130.371, - 196.448, - 196.597, - 197.182, - 198.04, - 198.171, - 197.987, - 197.832, - 204.299, + 77.608, + 130.845, + 197.197, + 197.634, + 198.168, + 198.957, + 199.249, + 198.872, + 198.388, + 204.354, 217.569, 168.598, 168.489, @@ -46454,16 +46454,16 @@ 33.107, 33.107, 64.403, - 77.528, - 130.367, - 196.517, - 196.677, - 198.106, - 201.033, - 201.722, - 201.439, - 201.022, - 206.949, + 77.647, + 130.87, + 197.602, + 197.946, + 199.456, + 202.352, + 202.917, + 202.394, + 201.629, + 207.024, 219.182, 169.432, 168.57, @@ -46478,16 +46478,16 @@ 33.107, 33.107, 64.31, - 77.633, - 130.382, - 196.516, - 196.817, - 199.246, - 200.144, - 200.007, - 199.822, - 199.446, - 205.813, + 77.996, + 131.214, + 197.629, + 198.097, + 200.602, + 201.463, + 201.195, + 200.765, + 199.667, + 205.814, 217.926, 168.863, 168.489, @@ -46502,16 +46502,16 @@ 33.107, 33.107, 64.044, - 77.544, - 130.352, - 196.373, - 196.165, + 77.566, + 130.611, + 196.76, + 196.183, + 196.346, + 196.222, 196.241, - 196.184, - 196.193, - 196.268, - 196.225, - 203.027, + 196.41, + 196.319, + 203.086, 216.707, 168.489, 168.489, @@ -46526,15 +46526,15 @@ 31.876, 31.876, 63.269, - 60.482, - 95.715, - 148.502, - 196.59, - 196.623, - 196.664, - 196.54, - 196.326, - 196.176, + 60.801, + 96.51, + 149.351, + 197.587, + 197.542, + 197.661, + 197.218, + 196.573, + 196.207, 203.002, 216.707, 150.787, @@ -46550,16 +46550,16 @@ 31.876, 31.876, 25.024, - 11.358, - 61.317, - 60.904, - 113.905, - 114.093, - 149.416, - 149.453, - 149.335, - 149.262, - 155.898, + 11.425, + 61.463, + 61.032, + 114.113, + 114.809, + 150.102, + 150.316, + 149.996, + 149.806, + 155.921, 133.933, 98.635, 31.876, @@ -46574,16 +46574,16 @@ 33.107, 33.107, 65.086, - 78.493, - 131.074, - 196.596, - 196.488, - 196.571, - 196.62, - 196.404, - 196.157, - 196.431, - 203.008, + 78.799, + 131.08, + 197.712, + 197.114, + 197.357, + 197.491, + 196.775, + 196.164, + 197.023, + 203.015, 216.707, 168.489, 168.489, @@ -46598,16 +46598,16 @@ 33.107, 33.107, 64.307, - 77.665, - 130.379, - 196.516, - 197.224, - 203.579, - 207.725, - 202.496, - 201.235, - 199.848, - 207.968, + 77.984, + 131.235, + 197.686, + 198.572, + 205.002, + 209.113, + 203.747, + 202.237, + 200.461, + 207.976, 217.122, 168.489, 168.489, @@ -46622,16 +46622,16 @@ 33.107, 33.107, 63.609, - 77.195, - 130.364, - 196.499, - 196.664, - 197.037, - 197.348, - 197.402, - 197.137, - 196.971, - 207.0, + 77.512, + 131.19, + 197.609, + 197.941, + 198.392, + 198.393, + 198.604, + 197.773, + 197.397, + 207.05, 217.225, 168.988, 168.64, @@ -46646,16 +46646,16 @@ 33.107, 33.107, 63.636, - 77.338, - 130.36, - 196.501, - 196.665, - 196.764, - 196.786, - 196.582, - 196.624, - 196.428, - 206.45, + 77.637, + 131.191, + 197.629, + 197.967, + 198.138, + 198.123, + 197.388, + 197.581, + 197.022, + 206.507, 216.707, 168.489, 168.489, @@ -46670,16 +46670,16 @@ 33.107, 33.107, 64.106, - 77.587, - 130.371, - 196.502, - 196.696, - 197.692, - 198.33, - 198.277, - 198.14, - 197.956, - 207.918, + 77.888, + 131.223, + 197.654, + 198.036, + 199.106, + 199.704, + 199.513, + 199.127, + 198.563, + 207.975, 217.903, 169.328, 168.531, @@ -46694,16 +46694,16 @@ 31.876, 31.876, 66.204, - 60.063, - 95.039, - 148.288, - 196.63, - 196.7, - 196.796, - 196.646, - 196.633, - 196.439, - 206.454, + 60.355, + 95.898, + 149.449, + 197.865, + 197.925, + 198.153, + 197.631, + 197.612, + 197.06, + 206.518, 216.707, 150.775, 115.348, @@ -46718,16 +46718,16 @@ 31.876, 31.876, 28.45, - 11.34, - 59.692, - 59.706, - 113.018, - 113.123, - 148.583, - 148.199, - 148.116, - 148.213, - 158.232, + 11.615, + 60.507, + 60.82, + 114.317, + 114.511, + 149.957, + 148.597, + 148.382, + 148.819, + 158.288, 133.062, 97.634, 31.876, @@ -46742,16 +46742,16 @@ 33.392, 33.37, 68.291, - 78.395, - 130.868, - 196.455, - 196.498, - 196.76, - 196.186, - 196.393, - 196.25, - 196.3, - 203.018, + 78.65, + 131.679, + 197.302, + 197.172, + 198.13, + 196.227, + 196.746, + 196.368, + 196.572, + 203.057, 216.707, 168.501, 168.921, @@ -46766,16 +46766,16 @@ 34.096, 34.422, 68.957, - 78.67, - 130.783, - 196.496, - 196.669, - 196.778, - 196.805, - 196.762, - 196.641, - 196.441, - 203.028, + 78.938, + 131.615, + 197.645, + 198.011, + 198.204, + 198.198, + 198.01, + 197.639, + 197.074, + 203.096, 216.707, 168.489, 168.489, @@ -46790,16 +46790,16 @@ 34.072, 34.376, 68.876, - 78.35, - 130.49, - 196.492, - 196.668, - 196.774, - 196.799, - 196.759, - 196.639, - 196.44, - 203.03, + 78.617, + 131.335, + 197.643, + 198.01, + 198.189, + 198.177, + 198.001, + 197.634, + 197.072, + 203.104, 216.707, 168.489, 168.489, @@ -46814,16 +46814,16 @@ 33.8, 34.142, 68.678, - 77.992, - 130.357, - 196.479, - 196.644, - 196.738, - 196.766, - 196.731, - 196.62, - 196.43, - 203.028, + 78.238, + 130.73, + 197.58, + 197.91, + 198.052, + 198.063, + 197.912, + 197.577, + 197.037, + 203.095, 216.707, 168.489, 168.489, @@ -46838,16 +46838,16 @@ 33.216, 33.336, 68.178, - 77.773, - 130.341, - 196.477, - 196.551, - 196.642, - 196.811, - 196.45, - 196.706, - 196.627, - 203.162, + 77.987, + 130.753, + 197.589, + 197.462, + 197.54, + 197.647, + 196.568, + 197.399, + 197.244, + 203.172, 216.707, 168.489, 168.489, @@ -46862,16 +46862,16 @@ 31.876, 31.876, 66.533, - 60.085, - 94.939, - 148.268, - 196.667, - 197.278, - 198.416, - 198.302, - 198.11, - 197.898, - 204.418, + 60.323, + 95.77, + 149.418, + 198.019, + 198.72, + 199.832, + 199.585, + 199.146, + 198.565, + 204.514, 217.299, 150.775, 115.348, @@ -46886,16 +46886,16 @@ 31.876, 31.876, 28.45, - 11.335, - 59.482, - 59.693, - 114.304, - 118.249, - 160.097, - 157.176, - 157.934, - 160.262, - 160.091, + 11.58, + 60.314, + 60.825, + 115.615, + 119.63, + 161.444, + 158.399, + 158.925, + 160.905, + 160.103, 134.408, 98.117, 31.876, @@ -46910,16 +46910,16 @@ 33.107, 33.107, 67.493, - 77.392, - 130.308, - 196.474, - 202.19, - 220.803, - 231.41, - 233.966, - 223.925, - 216.847, - 216.295, + 77.562, + 130.423, + 197.557, + 203.204, + 221.818, + 232.741, + 235.071, + 224.913, + 217.481, + 216.388, 220.746, 171.488, 170.531, @@ -46934,16 +46934,16 @@ 33.107, 33.107, 67.138, - 77.173, - 130.336, - 197.523, - 210.884, - 230.187, - 233.628, - 230.971, - 225.788, - 222.033, - 222.538, + 77.398, + 131.158, + 198.648, + 212.192, + 231.565, + 234.973, + 232.187, + 226.78, + 222.678, + 222.627, 229.639, 175.028, 173.267, @@ -46958,16 +46958,16 @@ 33.107, 33.107, 66.557, - 77.094, - 130.332, - 197.814, - 211.771, - 228.989, - 241.008, - 240.94, - 233.165, - 227.603, - 220.477, + 77.307, + 131.128, + 198.91, + 213.007, + 230.283, + 242.293, + 242.117, + 234.115, + 228.21, + 220.548, 221.588, 171.722, 170.467, @@ -46982,16 +46982,16 @@ 33.107, 33.107, 66.762, - 77.108, - 130.331, - 198.028, - 210.371, - 227.495, - 226.127, - 222.071, - 221.445, - 217.787, - 214.156, + 77.176, + 130.686, + 198.575, + 211.442, + 228.851, + 227.142, + 223.328, + 222.471, + 218.449, + 214.226, 220.959, 171.645, 170.803, @@ -47006,16 +47006,16 @@ 33.107, 33.107, 66.962, - 77.185, - 130.329, - 196.962, - 201.954, - 207.152, - 207.048, - 206.989, - 206.849, - 206.901, - 209.865, + 77.375, + 131.077, + 198.039, + 203.216, + 208.137, + 208.382, + 208.203, + 207.835, + 207.531, + 209.955, 219.978, 170.186, 169.241, @@ -47030,16 +47030,16 @@ 31.876, 31.876, 66.192, - 59.903, - 94.924, - 148.245, - 196.97, - 198.047, - 198.248, - 198.571, - 198.635, - 198.225, - 204.635, + 60.096, + 95.695, + 149.324, + 198.238, + 199.4, + 199.575, + 199.224, + 199.436, + 198.422, + 204.64, 217.67, 150.775, 115.348, @@ -47054,16 +47054,16 @@ 31.876, 31.876, 31.876, - 11.333, - 59.888, - 59.67, - 112.989, - 114.627, - 151.099, - 149.442, - 148.526, - 148.223, - 154.8, + 11.519, + 60.64, + 60.753, + 114.256, + 115.979, + 152.429, + 150.657, + 149.401, + 148.853, + 154.822, 133.062, 97.634, 31.876, @@ -47078,16 +47078,16 @@ 33.107, 33.107, 71.776, - 78.238, - 130.563, - 196.473, - 197.322, - 210.446, - 226.77, - 218.25, - 209.532, - 205.011, - 205.36, + 78.444, + 131.391, + 197.623, + 198.671, + 211.872, + 227.876, + 219.066, + 210.202, + 205.282, + 205.37, 217.83, 169.216, 168.544, @@ -47102,16 +47102,16 @@ 31.876, 31.876, 31.876, - 11.333, - 59.801, - 59.683, - 114.228, - 118.638, - 167.125, - 173.223, - 169.538, - 161.366, - 158.615, + 11.534, + 60.62, + 60.819, + 115.553, + 119.794, + 168.346, + 174.477, + 170.564, + 162.056, + 158.753, 133.08, 97.634, 31.876, @@ -47126,16 +47126,16 @@ 33.107, 33.107, 70.91, - 77.856, - 130.648, - 196.455, - 196.548, - 196.628, - 196.625, - 196.567, - 196.469, - 196.304, - 203.011, + 78.039, + 131.42, + 197.534, + 197.506, + 197.648, + 197.559, + 197.333, + 197.048, + 196.578, + 203.021, 216.707, 168.489, 168.489, @@ -47150,16 +47150,16 @@ 33.107, 33.107, 71.064, - 77.947, - 130.406, - 196.318, - 196.454, - 196.594, - 196.666, - 196.543, - 196.38, - 196.449, - 203.024, + 77.977, + 130.603, + 196.588, + 197.026, + 197.505, + 197.731, + 197.253, + 196.75, + 197.09, + 203.054, 216.707, 168.489, 168.489, @@ -47174,16 +47174,16 @@ 33.107, 33.107, 71.135, - 77.816, - 130.398, - 196.406, - 196.454, - 196.342, - 196.331, - 196.205, - 196.276, - 196.252, - 203.007, + 77.828, + 130.871, + 197.166, + 197.033, + 196.589, + 196.558, + 196.268, + 196.429, + 196.397, + 203.012, 216.707, 168.489, 168.489, @@ -47198,16 +47198,16 @@ 31.876, 31.876, 69.848, - 60.155, - 95.101, - 148.103, - 196.256, - 196.306, - 196.213, - 196.79, - 198.787, - 196.783, - 203.047, + 60.18, + 95.111, + 148.371, + 196.38, + 196.494, + 196.284, + 196.956, + 199.485, + 196.874, + 203.157, 216.707, 150.775, 115.348, @@ -47222,16 +47222,16 @@ 31.876, 31.876, 31.876, - 11.334, - 60.331, - 59.818, - 112.572, - 112.691, - 148.122, - 148.096, - 148.05, - 148.034, - 154.791, + 11.478, + 60.392, + 60.204, + 112.649, + 112.928, + 148.363, + 148.299, + 148.192, + 148.179, + 154.798, 133.062, 97.634, 31.876, @@ -47246,16 +47246,16 @@ 33.107, 33.107, 70.664, - 77.597, - 130.566, - 196.45, - 196.628, - 196.741, - 196.644, - 196.596, - 196.651, - 196.383, - 203.075, + 77.744, + 131.267, + 197.486, + 197.891, + 198.097, + 197.622, + 197.438, + 197.666, + 196.851, + 203.256, 216.707, 168.489, 168.489, @@ -47267,12 +47267,12 @@ "lifecycle_emissions_tonnes_SO2_bau": 0.69, "distance_to_emissions_region_meters": 0.0, "annual_emissions_tonnes_NOx_bau": 0.14, - "annual_emissions_tonnes_CO2": 450.18, - "lifecycle_emissions_tonnes_CO2": 9687.77 + "annual_emissions_tonnes_CO2": 452.67, + "lifecycle_emissions_tonnes_CO2": 9741.48 }, "ElectricTariff": { "lifecycle_demand_cost_after_tax_bau": 0.0, - "year_one_energy_cost_before_tax": 236160.25, + "year_one_energy_cost_before_tax": 232771.01, "lifecycle_fixed_cost_after_tax_bau": 0.0, "year_one_min_charge_adder_before_tax": 0.0, "lifecycle_export_benefit_after_tax_bau": -0.0, @@ -47280,12 +47280,12 @@ "lifecycle_demand_cost_after_tax": 0.0, "lifecycle_export_benefit_after_tax": -0.0, "year_one_demand_cost_before_tax_bau": 0.0, - "year_one_bill_before_tax_bau": 262460.32, - "lifecycle_energy_cost_after_tax_bau": 2.51493778e6, + "year_one_bill_before_tax_bau": 263196.09, + "lifecycle_energy_cost_after_tax_bau": 2.521988e6, "lifecycle_min_charge_adder_after_tax_bau": 0.0, "year_one_export_benefit_before_tax": -0.0, - "year_one_bill_before_tax": 236160.25, - "year_one_energy_cost_before_tax_bau": 262460.32, + "year_one_bill_before_tax": 232771.01, + "year_one_energy_cost_before_tax_bau": 263196.09, "lifecycle_min_charge_adder_after_tax": 0.0, "year_one_fixed_cost_before_tax": 0.0, "lifecycle_coincident_peak_cost_after_tax": 0.0, @@ -47294,7 +47294,7 @@ "year_one_min_charge_adder_before_tax_bau": 0.0, "year_one_coincident_peak_cost_before_tax_bau": 0.0, "lifecycle_coincident_peak_cost_after_tax_bau": 0.0, - "lifecycle_energy_cost_after_tax": 2.26292624e6, + "lifecycle_energy_cost_after_tax": 2.23044995e6, "year_one_coincident_peak_cost_before_tax": 0.0, "year_one_fixed_cost_before_tax_bau": 0.0 }, @@ -47307,16 +47307,16 @@ 32.3881481528, 32.7585418392, 32.7247305327, - 12.043118239999998, - 63.128918507, - 66.917735282, - 123.645849561, - 126.225699561, - 162.515268716, - 161.883738716, - 159.550788716, - 155.475678716, - 152.98926656499998, + 13.187118239999998, + 81.151758507, + 92.248455282, + 153.443729561, + 157.963779561, + 193.83406871600002, + 190.506058716, + 183.106588716, + 171.551398716, + 157.05634656499998, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -47331,16 +47331,16 @@ 33.107087900699995, 33.107087900699995, 71.8692608705, - 78.69639324699999, - 132.737605081, - 203.24598942799997, - 207.41361942799998, - 210.04656942799997, - 210.93687942799997, - 210.22005942799998, - 207.92139942799997, - 203.84598942799997, - 199.834977277, + 79.82287324699999, + 151.039085081, + 228.93602942799998, + 237.60373942799998, + 242.19172942799997, + 242.68439942799998, + 239.100019428, + 231.74531942799996, + 220.18502942799998, + 200.12341727700002, 216.706946524, 168.489065812, 168.491911227, @@ -47355,16 +47355,16 @@ 33.107087900699995, 33.107087900699995, 71.5474906692, - 78.67285025209999, - 133.41042718500003, - 203.668824114, - 207.68614277999998, - 210.46098942799998, - 211.39677942799997, - 210.79533942799998, - 208.425129428, - 204.24456942799998, - 201.39032727699998, + 79.79461025209999, + 141.36722718500002, + 229.54102411399998, + 238.40158277999998, + 243.459429428, + 244.03129942799998, + 240.75477942799998, + 233.17080942799998, + 221.338889428, + 205.78216727699999, 216.706946524, 168.517535318, 168.721294419, @@ -47379,16 +47379,16 @@ 33.107087900699995, 33.107087900699995, 71.6578533614, - 78.5983277224, - 133.180211161, - 203.421601979, - 207.65796942799997, - 210.28935942799998, - 211.16373942799999, - 210.52758942799997, - 208.20192942799997, - 204.11991942799997, - 201.373377277, + 82.6777677224, + 151.60253116099997, + 229.264201979, + 238.112529428, + 242.646679428, + 243.10337942799998, + 239.78250942799997, + 232.35680942799996, + 220.85979942799997, + 205.688857277, 216.706946524, 168.489065812, 168.489065812, @@ -47403,16 +47403,16 @@ 33.107087900699995, 33.107087900699995, 71.4065050174, - 78.6682119707, - 133.71550154800002, - 204.324342643, - 208.33599311700002, - 210.80161833699998, - 211.652837423, - 208.62553430900002, - 205.35356268400002, - 204.60025858699998, - 201.020500453, + 79.7758119707, + 151.40434154800002, + 229.270262643, + 237.79167311700002, + 242.19677833699998, + 242.63919742299998, + 231.63693430900003, + 220.750282684, + 220.89401858699998, + 203.088540453, 217.360114968, 169.264710745, 169.393233922, @@ -47427,16 +47427,16 @@ 32.8406835913, 33.0638860086, 71.1972270942, - 61.9824873172, - 98.23759452760001, - 155.064373475, - 204.69744942799997, - 205.76373942799998, - 207.74661942799997, - 210.02625942799997, - 207.87468942799998, - 203.99877942799998, - 201.477507277, + 63.3542473172, + 115.80719452760002, + 179.372813475, + 224.45584942799996, + 224.581299428, + 231.36673942799996, + 238.07133942799996, + 231.18284942799997, + 220.26121942799998, + 205.939507277, 216.706946524, 150.775396235, 115.34805707999999, @@ -47451,16 +47451,16 @@ 32.0314953702, 32.061228484, 32.1144179076, - 11.658283582000001, - 62.2660973219, - 66.2364108282, - 123.426639561, - 126.013749561, - 162.347898716, - 161.837418716, - 159.645288716, - 155.716908716, - 153.328836565, + 15.426403582, + 79.2113773219, + 90.07297082819998, + 151.815039561, + 156.560749561, + 192.771618716, + 189.934658716, + 182.898048716, + 171.780908716, + 157.86883656499998, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -47475,16 +47475,16 @@ 33.107087900699995, 33.107087900699995, 71.586747502, - 78.5651047341, - 133.17320329700001, - 203.37790036799998, - 207.76455942799998, - 210.60558942799997, - 211.55538942799998, - 210.97407942799998, - 208.752759428, - 204.585219428, - 201.870147277, + 82.5594247341, + 151.247963297, + 229.15358036799998, + 238.489599428, + 243.68198942799998, + 244.33314942799998, + 241.04647942799997, + 233.835759428, + 222.03845942799998, + 207.128467277, 216.706946524, 168.489065812, 168.489065812, @@ -47499,16 +47499,16 @@ 33.107087900699995, 33.107087900699995, 71.6172383343, - 78.4405193924, - 132.726317661, - 203.25852942799997, - 207.43674942799998, - 210.13848942799999, - 211.04676942799998, - 210.51669942799998, - 208.356099428, - 204.42687942799998, - 201.978387277, + 79.4995193924, + 140.94779766099998, + 228.51640942799997, + 237.183269428, + 241.96628942799998, + 242.573489428, + 239.56897942799998, + 232.539419428, + 221.43295942799998, + 207.462187277, 216.706946524, 168.489065812, 168.489065812, @@ -47523,16 +47523,16 @@ 33.107087900699995, 33.107087900699995, 71.2988329368, - 78.25927197070001, - 132.49198307, - 203.20119942799997, - 205.929316099, - 207.62732796799997, - 210.21765268500002, - 207.33327629000001, - 206.62120499899999, - 202.76853816599998, - 201.374652955, + 79.86647197070002, + 150.05594307, + 227.92643942799995, + 230.785116099, + 229.992247968, + 236.747132685, + 225.34751629000002, + 223.952084999, + 212.87249816599999, + 203.04225295499998, 216.75762088200003, 168.489065812, 168.489065812, @@ -47547,16 +47547,16 @@ 33.107087900699995, 33.107087900699995, 71.1700965213, - 78.1784659306, - 131.59077588399998, - 200.197239428, - 206.867019428, - 209.55465942799998, - 207.91548942799997, - 207.398529428, - 208.04199942799997, - 203.48334942799997, - 202.028007277, + 78.33514593059999, + 132.625735884, + 206.947999428, + 233.958299428, + 239.38561942799998, + 231.21488942799996, + 228.838809428, + 231.29383942799998, + 218.24718942799996, + 207.449887277, 216.706946524, 168.489065812, 168.489065812, @@ -47571,16 +47571,16 @@ 33.107087900699995, 33.107087900699995, 71.1449318269, - 78.10226280149999, - 132.54160020499998, - 203.26500942799998, - 207.43779942799998, - 210.122199428, - 211.029729428, - 210.42930942799998, - 208.321629428, - 204.46977942799998, - 202.252497277, + 81.71146280149999, + 149.41344020499997, + 227.56080942799997, + 236.51507942799998, + 241.46187942799997, + 242.14780942799996, + 238.959949428, + 232.08402942799995, + 221.236379428, + 208.140777277, 216.706946524, 168.489065812, 168.489065812, @@ -47595,16 +47595,16 @@ 31.876305895599998, 31.876305895599998, 69.8722327627, - 60.3230699322, - 97.1164075778, - 154.999128716, - 207.27324942799999, - 210.725033234, - 214.497261312, - 217.94282293799998, - 218.394883021, - 210.728579228, - 202.28078809500002, + 64.0991499322, + 114.12216757780001, + 179.12612871599998, + 235.71580942799997, + 241.344593234, + 245.077261312, + 246.300942938, + 242.186443021, + 227.497139228, + 208.05982809500003, 217.960109224, 150.775396235, 115.34805707999999, @@ -47619,16 +47619,16 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.6064287988, - 61.657570828199994, - 66.6127308282, - 124.13276426899999, - 128.237839957, - 164.36067664700002, - 163.359517012, - 163.14935991099998, - 159.109921767, - 153.00786352, + 15.7231487988, + 79.39233082819999, + 91.7047708282, + 153.814204269, + 154.642399957, + 186.62131664700001, + 183.470797012, + 183.57551991099996, + 172.534841767, + 159.52798352, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -47643,16 +47643,16 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.7314987988, - 62.4629496061, - 66.2127893051, - 121.454649561, - 123.906009561, - 156.317178716, - 161.912268716, - 153.76465871599999, - 148.845528716, - 148.531968716, + 13.5048587988, + 78.8007896061, + 89.47430930510001, + 141.658129561, + 147.864089561, + 170.10885871600001, + 189.769588716, + 162.73169871599998, + 149.86232871599998, + 149.232128716, 133.061726657, 97.6558853336, 31.876305895599998, @@ -47667,16 +47667,16 @@ 33.107087900699995, 33.107087900699995, 72.0552251792, - 78.71725082, - 132.877930501, - 203.17863942799997, - 207.408909428, - 210.11931942799998, - 211.12209942799998, - 210.68628942799998, - 208.642539428, - 204.75486942799998, - 199.17339942799998, + 82.37925082000001, + 148.878730501, + 226.84919942799996, + 236.016029428, + 241.20935942799997, + 242.20373942799998, + 239.473929428, + 232.780339428, + 221.66914942799997, + 205.54711942799997, 216.706946524, 168.489065812, 168.489065812, @@ -47691,16 +47691,16 @@ 33.107087900699995, 33.107087900699995, 72.1128977055, - 78.98245310530001, - 133.741648795, - 204.08795923, - 208.121691478, - 210.30169146, - 208.65129975300002, - 210.849944239, - 209.049448727, - 205.274578506, - 199.975675065, + 82.84117310530002, + 149.898008795, + 227.26379923, + 235.86537147800001, + 240.45149146, + 232.084659753, + 238.904744239, + 232.657448727, + 221.97313850600003, + 206.47035506499998, 217.647917183, 169.580816349, 169.609419563, @@ -47715,16 +47715,16 @@ 33.1579791685, 33.2161229216, 72.404215929, - 78.970709041, - 132.942838032, - 201.76263942799997, - 205.76856942799998, - 207.86886942799998, - 208.315089428, - 205.25862942799998, - 204.44718942799997, - 200.26338942799998, - 196.78314942799997, + 81.89106904100001, + 144.968198032, + 214.93911942799997, + 227.99220942799997, + 232.14282942799997, + 231.76812942799998, + 220.294669428, + 218.53370942799998, + 206.66354942799998, + 197.51118942799997, 216.706946524, 168.489065812, 168.489065812, @@ -47739,16 +47739,16 @@ 33.107087900699995, 33.107087900699995, 71.3500988695, - 78.2360603793, - 131.627613619, - 200.53671942799997, - 203.103669428, - 203.338179428, - 211.01202942799998, - 210.62196942799997, - 204.20490942799998, - 202.36089942799998, - 196.77993942799998, + 81.4242603793, + 133.21505361899997, + 207.84839942799996, + 215.425669428, + 214.406059428, + 241.425229428, + 238.94396942799997, + 217.65826942799998, + 213.458539428, + 197.499259428, 216.706946524, 168.489065812, 168.489065812, @@ -47763,16 +47763,16 @@ 32.2652049286, 32.304003877599996, 70.6306158834, - 60.9544461275, - 97.651664353, - 155.236488716, - 207.70470942799997, - 210.44577942799998, - 203.95596942799997, - 198.04230942799998, - 198.82227942799997, - 196.43100942799998, - 196.55508942799997, + 64.87676612749999, + 114.03062435300001, + 179.501768716, + 236.64990942799997, + 241.90437942799997, + 215.79464942799999, + 200.180069428, + 201.95299942799997, + 196.726449428, + 196.99228942799996, 216.706946524, 150.775396235, 115.34805707999999, @@ -47787,16 +47787,16 @@ 32.411915279999995, 32.5718722321, 32.830846147500004, - 12.373587628, - 62.985475904199994, - 65.8281906699, - 122.458929561, - 124.261119561, - 160.623738716, - 158.502948716, - 156.301368716, - 155.427738716, - 151.611978716, + 13.754587628, + 69.7588359042, + 83.6192306699, + 145.124929561, + 147.864319561, + 184.970898716, + 176.772428716, + 170.21452871600002, + 169.223618716, + 158.922938716, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -47811,16 +47811,16 @@ 33.244252711899996, 33.107087900699995, 71.7314978994, - 78.6039202537, - 132.9837394, - 203.61741942799998, - 207.75189942799997, - 210.46734942799998, - 211.51302942799998, - 211.04649942799998, - 209.12952942799998, - 205.43841942799997, - 199.86705942799998, + 83.1691202537, + 150.1085794, + 227.62277942799997, + 236.28825942799998, + 241.57398942799998, + 242.735829428, + 239.95657942799997, + 233.50968942799997, + 223.06277942799997, + 207.18229942799996, 216.706946524, 168.489065812, 168.489065812, @@ -47835,16 +47835,16 @@ 33.2520486233, 33.273657609000004, 71.6231581158, - 78.4506733037, - 132.946533491, - 203.47746942799998, - 205.30644942799998, - 208.05243097299999, - 208.023635361, - 207.521107514, - 206.637991627, - 202.98026933, - 197.797698226, + 82.7872733037, + 149.248053491, + 227.05994942799998, + 224.30588942799997, + 231.995510973, + 228.831475361, + 226.802187514, + 224.59631162699998, + 214.36362933, + 199.82497822599998, 216.721073515, 168.489065812, 168.489065812, @@ -47859,16 +47859,16 @@ 33.107087900699995, 33.107087900699995, 71.5362609355, - 78.246362855, - 132.86030913800002, - 200.47332942799997, - 204.74591182600003, - 207.95402344399997, - 208.120108615, - 216.379447516, - 220.04939023, - 215.848082111, - 205.441113761, + 78.915522855, + 139.14246913800002, + 207.34600942799997, + 215.213991826, + 218.39926344399998, + 219.18910861499998, + 225.540647516, + 223.11099023, + 217.433802111, + 206.050193761, 216.413796675, 170.606738842, 170.494808514, @@ -47884,15 +47884,15 @@ 33.107087900699995, 67.0071306369, 77.276646023, - 131.91764913800003, - 200.19309942799998, - 201.25621146699999, - 217.145548794, - 224.42684541900002, - 246.791889931, - 249.316242999, - 246.390883137, - 233.241663793, + 133.93780913800003, + 206.24377942799998, + 205.03769146699997, + 223.703108794, + 224.59824541900002, + 276.871649931, + 274.607642999, + 264.336763137, + 240.779303793, 235.345027798, 180.246863585, 171.697026845, @@ -47907,16 +47907,16 @@ 33.107087900699995, 33.107087900699995, 66.5248898027, - 77.65877561639999, - 133.107869138, - 203.05212578799998, - 204.77547353300002, - 230.50734435600003, - 243.985661622, - 251.796298975, - 240.77802524, - 237.368344196, - 216.19314595999998, + 81.6845756164, + 142.593269138, + 220.89192578799998, + 205.68775353300003, + 253.08898435600003, + 266.204581622, + 269.723578975, + 241.22410524, + 254.099784196, + 222.27934595999997, 224.624227846, 179.8832421, 173.852535803, @@ -47931,16 +47931,16 @@ 31.876305895599998, 31.876305895599998, 65.3926614137, - 59.9494644643, - 97.96663998310001, - 156.429048716, - 209.27832942799998, - 221.873920615, - 241.48266691199998, - 242.894176228, - 235.80819506999998, - 223.221630689, - 206.581639118, + 64.9881444643, + 116.0537999831, + 183.077928716, + 241.44372942799998, + 255.20724061500002, + 274.81598691199997, + 274.975416228, + 263.23591507, + 242.967350689, + 215.448399118, 215.368693224, 151.00139183000002, 115.34805707999999, @@ -47955,16 +47955,16 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.6829287988, - 62.5132041079, - 67.78816082819999, - 125.50095949800001, - 130.799971661, - 168.31114886299997, - 167.83929642599998, - 165.780044078, - 161.01689928899998, - 153.934561205, + 17.673008798799998, + 81.18176410790001, + 94.16852082819999, + 156.805279498, + 164.133291661, + 201.64446886299996, + 199.02981642599997, + 192.153644078, + 180.21125928899997, + 162.765761205, 129.635408808, 97.63438750239999, 31.876305895599998, @@ -47979,16 +47979,16 @@ 33.107087900699995, 33.107087900699995, 67.5450257743, - 78.1010137283, - 133.27195573699998, - 204.473019428, - 208.78479942799999, - 211.33842942799998, - 212.282769428, - 208.63479942799998, - 208.02354942799997, - 202.54167942799998, - 198.054519428, + 84.07233372830001, + 151.603715737, + 229.98281942799997, + 238.70235942799997, + 243.247109428, + 243.96460942799996, + 231.10899942799998, + 229.383629428, + 212.96359942799998, + 200.892399428, 213.280628675, 168.489065812, 168.489065812, @@ -48003,16 +48003,16 @@ 33.107087900699995, 33.107087900699995, 68.0150536493, - 78.7426298935, - 133.74225383799998, - 204.30672942799998, - 206.824209428, - 208.91103942799998, - 209.588709428, - 208.78791942799998, - 207.196539428, - 204.062559428, - 198.74793942799997, + 80.53778989349999, + 150.96233383799998, + 228.96000942799998, + 230.760729428, + 234.667959428, + 234.876149428, + 231.311319428, + 226.234219428, + 217.501159428, + 202.94353942799998, 213.280628675, 168.489065812, 168.489065812, @@ -48028,15 +48028,15 @@ 33.107087900699995, 68.1338724794, 78.1798964587, - 131.64354153300002, - 201.74705378800002, - 205.16532942799998, - 211.92657942799997, - 213.13023942799998, - 212.747469428, - 210.75969942799998, - 206.95491942799998, - 200.43495942799998, + 132.53842153300002, + 212.16973378800003, + 222.33268942799998, + 245.23601942799996, + 246.463559428, + 243.96038942799998, + 237.194099428, + 226.241759428, + 207.82571942799999, 213.280628675, 168.489065812, 168.489065812, @@ -48051,16 +48051,16 @@ 33.107087900699995, 33.107087900699995, 67.5896753091, - 78.6507000934, - 134.165401386, - 204.468101735, - 208.477239428, - 210.981189428, - 212.125419428, - 211.86282942799997, - 210.16278942799997, - 206.57325942799997, - 200.79363942799998, + 83.0463000934, + 149.68708138600002, + 227.847821735, + 236.52967942799998, + 241.405269428, + 243.00549942799998, + 240.95606942799998, + 235.22054942799997, + 224.86821942799997, + 208.82103942799998, 213.280628675, 168.489065812, 168.489065812, @@ -48075,16 +48075,16 @@ 33.107087900699995, 33.107087900699995, 67.7296707432, - 78.5089891304, - 134.19340998500002, - 205.266521442, - 207.529519125, - 209.47452942799998, - 209.64465942799998, - 212.621679428, - 210.64104942799997, - 207.084519428, - 201.59394942799997, + 84.83498913039999, + 152.64156998500002, + 231.286721442, + 233.080839125, + 236.17564942799999, + 234.604379428, + 243.07203942799998, + 236.44632942799996, + 226.253879428, + 211.12674942799998, 213.280628675, 168.603925621, 168.804078193, @@ -48099,16 +48099,16 @@ 31.876305895599998, 32.006453887300005, 67.6467927111, - 61.2533395417, - 98.5815633386, - 156.718758716, - 209.31294942799997, - 211.91457942799997, - 212.93778942799997, - 212.47827942799998, - 210.63978942799997, - 207.129549428, - 201.708159428, + 68.1944595417, + 117.1023633386, + 182.52555871599998, + 239.68242942799998, + 244.549899428, + 245.44226942799997, + 242.63131942799998, + 236.40314942799998, + 226.281789428, + 211.346439428, 209.854310826, 150.775396235, 115.34805707999999, @@ -48123,16 +48123,16 @@ 31.876305895599998, 31.949074679299997, 28.6677997673, - 12.000872911599998, - 63.503586771900004, - 67.9947563918, - 125.449389561, - 128.009349561, - 164.490078716, - 164.03677871600001, - 162.199848716, - 158.731848716, - 153.360408716, + 18.6003929116, + 81.2893867719, + 93.0342763918, + 155.299429561, + 160.137389561, + 196.58083871600002, + 193.77073871599998, + 187.51920871599998, + 177.482368716, + 162.685608716, 126.20909095800002, 97.63438750239999, 31.876305895599998, @@ -48147,16 +48147,16 @@ 33.107087900699995, 33.107087900699995, 68.12779095740001, - 78.8172192761, - 133.708558537, - 202.805409428, - 206.91525942799998, - 208.95237942799997, - 208.88700942799997, - 207.53727942799998, - 207.09423942799998, - 203.12091942799998, - 198.545829428, + 80.2620992761, + 142.42567853699998, + 217.372769428, + 229.90069942799997, + 233.89217942799996, + 231.617369428, + 226.43803942799997, + 225.46987942799998, + 214.123639428, + 202.017309428, 209.854310826, 168.489065812, 168.489065812, @@ -48171,16 +48171,16 @@ 33.107087900699995, 33.107087900699995, 67.7074061905, - 78.5020870473, - 134.21854025300001, - 204.74592942799998, - 208.97880942799998, - 211.56903942799997, - 212.73822942799998, - 210.05013942799997, - 208.10508942799999, - 205.20507942799998, - 199.947969428, + 85.2441270473, + 151.448460253, + 228.643529428, + 237.69240942799996, + 242.87271942799995, + 244.368709428, + 234.92801942799997, + 228.62384942799997, + 220.361359428, + 205.992329428, 209.854310826, 168.489065812, 168.489065812, @@ -48195,16 +48195,16 @@ 33.107087900699995, 33.107087900699995, 67.92357773559999, - 78.8622813288, - 133.944734491, - 203.562219428, - 206.937039428, - 209.85297942799997, - 208.38234942799997, - 207.92337942799998, - 205.71078942799997, - 204.62925942799998, - 199.66512942799997, + 82.4167213288, + 146.308654491, + 221.363259428, + 228.521559428, + 236.25549942799998, + 229.02654942799998, + 227.27037942799998, + 220.75058942799998, + 218.38013942799998, + 204.98196942799999, 209.854310826, 168.489065812, 168.489065812, @@ -48219,16 +48219,16 @@ 33.107087900699995, 33.107087900699995, 64.0195564568, - 78.6875435364, - 134.088141432, - 203.196504597, - 204.68709942799998, - 204.098829428, - 208.40700942799998, - 209.16030942799998, - 204.707259428, - 203.42310942799998, - 198.515559428, + 81.7867835364, + 141.438701432, + 217.760704597, + 219.434899428, + 215.88586942799998, + 229.248449428, + 231.44786942799996, + 217.578059428, + 214.65946942799997, + 201.787599428, 209.854310826, 168.489065812, 168.489065812, @@ -48243,15 +48243,15 @@ 33.107087900699995, 33.107087900699995, 64.81245927900001, - 79.0108255134, - 134.12410677499997, - 203.59635942799997, - 205.881879428, - 208.653729428, - 200.98599942799999, - 202.36781623400003, - 203.02885418, - 203.276294654, + 85.18322551339999, + 145.76062677499996, + 221.008839428, + 224.135639428, + 231.971729428, + 206.930759428, + 209.04693623400004, + 206.72525418, + 206.355254654, 199.78652478299998, 211.430508402, 168.631881565, @@ -48267,16 +48267,16 @@ 31.876305895599998, 31.876305895599998, 62.81905509520001, - 60.4462477597, - 98.15176998310001, - 150.670357728, - 210.011702163, - 227.028049284, - 226.19156819699998, - 227.167044648, - 225.44330553999998, - 222.850851562, - 213.90653935299997, + 61.2624877597, + 105.23604998310002, + 153.788437728, + 217.200462163, + 247.528529284, + 245.00976819699997, + 248.05588464800002, + 242.97130553999997, + 236.803931562, + 215.81005935299996, 218.694119197, 153.011108362, 116.124006159, @@ -48292,15 +48292,15 @@ 31.876305895599998, 25.0236701967, 11.3183987988, - 63.2983449997, - 68.5828908282, - 126.43544653, - 130.048136257, - 168.125755343, - 169.794442002, - 170.535429814, - 168.04540932499998, - 160.39093177499998, + 80.36962499970001, + 93.37841082819999, + 156.14596652999998, + 162.56821625700002, + 200.95179534300001, + 200.35616200200002, + 196.826629814, + 187.25696932499997, + 169.847331775, 128.387966216, 97.68391383459999, 31.876305895599998, @@ -48315,16 +48315,16 @@ 33.107087900699995, 33.107087900699995, 63.4402921551, - 78.0201233563, - 134.45576913800002, - 210.01390589300001, - 230.945055856, - 245.34205415600002, - 256.741815975, - 264.66274649800005, - 256.96470840300003, - 247.329970333, - 226.210270159, + 84.4116833563, + 151.01584913800002, + 225.353145893, + 260.224575856, + 277.410574156, + 288.867655975, + 295.160866498, + 282.912908403, + 266.265610333, + 226.729710159, 224.907089411, 172.00815785700001, 170.841763735, @@ -48339,16 +48339,16 @@ 33.107087900699995, 33.107087900699995, 63.3886767617, - 77.7565977293, - 134.47940913800002, - 206.55848081199997, - 217.556082727, - 244.352091445, - 243.176914656, - 238.81712576, - 236.857056227, - 229.776745759, - 222.76784593600001, + 85.0703577293, + 152.25808913800003, + 232.06728081199998, + 229.857522727, + 277.21953144500003, + 276.286114656, + 269.88296576, + 263.584016227, + 244.95642575899998, + 232.53468593600002, 215.65498269600002, 171.59169243, 170.476878971, @@ -48363,16 +48363,16 @@ 33.107087900699995, 33.107087900699995, 63.5366435952, - 77.86740296379999, - 134.601149138, - 206.129829428, - 210.64365942799998, - 213.336039428, - 214.95145262699998, - 215.363895694, - 213.380277368, - 209.768969403, - 204.00012340199999, + 85.73380296379999, + 153.07314913800002, + 232.12146942799995, + 241.77749942799997, + 246.669359428, + 248.284772627, + 246.97845569400002, + 240.373997368, + 229.901889403, + 214.46608340199998, 207.114032444, 168.634719254, 168.489065812, @@ -48387,16 +48387,16 @@ 33.107087900699995, 33.107087900699995, 63.5575164019, - 78.6040585894, - 134.79747538700002, - 206.070009428, - 210.26982942799998, - 212.755089428, - 213.80313942799998, - 213.332979428, - 211.45911942799998, - 208.056039428, - 202.75323942799997, + 81.1626185894, + 153.53443538700003, + 231.73240942799998, + 240.39310942799997, + 245.209889428, + 246.26693942799997, + 243.45749942799998, + 237.14703942799997, + 227.141839428, + 212.78095942799996, 206.427992976, 168.489065812, 168.489065812, @@ -48411,16 +48411,16 @@ 33.107087900699995, 33.107087900699995, 64.1606403238, - 78.3751088498, - 134.991567646, - 205.92919607200002, - 210.104559428, - 212.712937117, - 213.98034827100003, - 213.67666077799998, - 211.720480288, - 208.35285174, - 203.056775917, + 86.4908288498, + 152.967567646, + 231.05687607200002, + 239.930439428, + 244.980257117, + 246.419868271, + 243.98226077799998, + 237.582760288, + 227.56581174000002, + 212.905455917, 206.81844063999998, 168.94659268, 169.072930275, @@ -48435,16 +48435,16 @@ 31.876305895599998, 31.876305895599998, 64.0594869676, - 61.48625655079999, - 100.1231311435, - 157.840794178, - 210.35055942799997, - 212.85162942799997, - 213.87951942799998, - 213.485019428, - 211.54983942799998, - 206.22720942799998, - 197.78688942799997, + 69.3942565508, + 118.1059711435, + 183.152754178, + 240.42615942799998, + 245.295669428, + 246.26443942799997, + 243.638539428, + 237.150879428, + 221.75488942799998, + 199.67484942799996, 206.427992976, 150.775396235, 115.34805707999999, @@ -48459,16 +48459,16 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 12.5413187988, - 64.3704969492, - 66.8176328609, - 122.689209561, - 122.158209561, - 154.643118716, - 159.876198716, - 159.877338716, - 157.273188716, - 152.593578716, + 14.6882387988, + 75.2076569492, + 80.3885928609, + 140.72768956099998, + 137.094649561, + 163.171518716, + 178.463918716, + 178.584258716, + 171.374188716, + 159.047138716, 122.78277310899999, 97.63438750239999, 31.876305895599998, @@ -48484,16 +48484,16 @@ 31.876305895599998, 21.5973523472, 11.3183987988, - 61.5882669034, - 60.828117251799995, - 113.85172791000001, - 116.27945784799999, - 162.913464398, - 160.757796645, - 163.683948716, - 160.319988716, - 154.86019871599999, - 123.09693345799998, + 62.591066903400005, + 61.620917251799995, + 114.90788791000001, + 119.98777784800001, + 186.656184398, + 180.309956645, + 189.524268716, + 179.607148716, + 164.88631871599998, + 123.36221345799999, 97.9005165071, 31.876305895599998, 31.876305895599998, @@ -48507,17 +48507,17 @@ 33.7228417669, 33.9055215817, 62.0983558869, - 79.3970298613, - 135.672997118, - 206.43213942799997, - 210.60096942799998, - 213.09120942799998, - 214.20330942799998, - 213.90573942799998, - 212.18643942799997, - 208.74384942799998, - 203.42442942799997, - 206.84580297600002, + 87.6459498613, + 153.78395711800002, + 231.52333942799996, + 240.197609428, + 245.169769428, + 246.493829428, + 244.26313942799996, + 238.49607942799997, + 228.27404942799998, + 213.88450942799997, + 207.242362976, 168.489065812, 168.489065812, 150.775396235, @@ -48531,17 +48531,17 @@ 33.4071003996, 33.4662546745, 61.6644347284, - 79.03787086979999, - 135.374616897, - 206.29479942799998, - 210.27015942799997, - 212.839359428, - 214.07568942799998, - 213.91083942799997, - 212.24823942799998, - 208.92357942799998, - 203.58708942799998, - 206.946332976, + 86.90495086979999, + 152.869496897, + 230.402639428, + 238.78407942799996, + 244.19103942799998, + 245.99332942799998, + 244.16747942799998, + 238.45839942799998, + 228.64937942799997, + 214.17428942799998, + 207.431212976, 168.489065812, 168.489065812, 150.775396235, @@ -48555,17 +48555,17 @@ 33.107087900699995, 33.107087900699995, 61.0692464553, - 79.0329329769, - 134.025838432, - 200.246769428, - 199.129359428, - 208.38549942799997, - 210.84147942799999, - 210.141279428, - 207.485109428, - 205.20429942799998, - 200.782479428, - 206.503562976, + 86.8347729769, + 139.412798432, + 205.30404942799998, + 202.58419942799998, + 227.99749942799997, + 234.859959428, + 232.059719428, + 224.30294942799998, + 218.22037942799997, + 206.966599428, + 206.571482976, 168.489065812, 168.489065812, 150.775396235, @@ -48579,17 +48579,17 @@ 33.107087900699995, 33.107087900699995, 61.0984343479, - 78.62153600900001, - 136.101353491, - 207.728229428, - 212.21070942799997, - 215.005629428, - 216.280509428, - 216.02439942799998, - 214.11222942799998, - 210.47646942799997, - 204.62025942799997, - 206.69421297600002, + 88.000816009, + 156.278473491, + 235.486549428, + 245.010189428, + 248.338949428, + 249.613829428, + 249.357719428, + 243.15498942799996, + 232.31458942799998, + 216.43569942799996, + 206.984372976, 168.489065812, 168.489065812, 150.775396235, @@ -48603,17 +48603,17 @@ 31.876305895599998, 31.876305895599998, 59.8517699823, - 60.896325302, - 100.40699838559999, - 159.262998716, - 211.648359428, - 213.90180942799998, - 214.67322942799998, - 214.04595942799997, - 212.397189428, - 209.41671942799996, - 204.246399428, - 203.279475127, + 70.327085302, + 120.12863838559998, + 186.049638716, + 242.992039428, + 246.97988942799998, + 247.208189428, + 244.030239428, + 238.46450942799999, + 229.54659942799998, + 215.455039428, + 203.58315512700003, 150.775396235, 115.34805707999999, 115.34805707999999, @@ -48627,17 +48627,17 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 12.220828798800001, - 65.275339606, - 70.5781308282, - 128.008449561, - 130.649319561, - 167.228328716, - 162.748338716, - 151.497657386, - 149.09247055600002, - 149.788182316, - 120.039525259, + 21.1638687988, + 84.09625960599999, + 96.7225708282, + 159.22080956099998, + 163.982639561, + 200.56164871599998, + 186.407898716, + 155.64161738599998, + 150.37223055600003, + 151.90098231599998, + 120.646965259, 97.63438750239999, 31.876305895599998, 31.876305895599998, @@ -48651,17 +48651,17 @@ 33.107087900699995, 33.107087900699995, 61.0298549706, - 78.8495769132, - 136.008427712, - 207.34320942799997, - 211.473399428, - 214.06434942799999, - 215.22180942799997, - 214.89201942799997, - 213.12087942799997, - 209.73042942799998, - 204.24507942799997, - 203.965035127, + 87.6052969132, + 154.690187712, + 232.975649428, + 241.990679428, + 247.204869428, + 248.555129428, + 246.16845942799998, + 240.08791942799996, + 230.06842942799997, + 215.17755942799997, + 204.824035127, 168.489065812, 168.489065812, 150.775396235, @@ -48675,17 +48675,17 @@ 33.1785797869, 33.3424234438, 58.028736127200006, - 78.129433735, - 136.344454234, - 208.07463942799998, - 209.68767942799997, - 211.16595942799998, - 216.41763942799997, - 216.09147942799999, - 214.13928942799998, - 197.611629428, - 197.90733942799997, - 203.093625127, + 78.279393735, + 156.04157423400002, + 235.41783942799998, + 235.19183942799998, + 237.24539942799998, + 249.750959428, + 249.24291942799996, + 242.58904942799998, + 199.256069428, + 199.90617942799997, + 203.17426512699998, 168.489065812, 168.489065812, 150.775396235, @@ -48699,17 +48699,17 @@ 33.107087900699995, 33.2521630321, 58.042177290299996, - 79.3054874905, - 136.83550609300002, - 208.36344942799997, - 212.673699428, - 215.39349942799998, - 216.594549428, - 216.30663942799998, - 214.409739428, - 210.831909428, - 196.394409428, - 203.652705127, + 89.2394074905, + 157.23230609300003, + 236.16980942799995, + 245.375899428, + 248.726819428, + 249.927869428, + 249.639959428, + 243.172539428, + 232.534549428, + 196.648649428, + 204.248705127, 168.489065812, 168.489065812, 150.775396235, @@ -48723,16 +48723,16 @@ 33.107087900699995, 33.107087900699995, 58.0257150158, - 78.97691823580001, - 135.68304901, - 202.44936942799998, - 204.947889428, - 208.66506942799998, - 198.55533942799997, - 209.05779942799998, - 204.78312942799997, - 198.95085942799997, - 200.11212942799997, + 80.00503823580001, + 147.16584901, + 211.579489428, + 217.73848942799998, + 228.064989428, + 201.30117942799995, + 227.902999428, + 216.22808942799998, + 202.17289942799997, + 204.97020942799998, 203.001675127, 168.489065812, 168.489065812, @@ -48747,16 +48747,16 @@ 33.107087900699995, 33.107087900699995, 56.9500601412, - 79.38898115479999, - 135.623183534, - 204.295569428, - 206.989869428, - 209.99070942799997, - 208.75905942799997, - 208.310619428, - 205.06881942799998, - 202.48809942799997, - 199.06782942799998, + 81.9974211548, + 146.446743534, + 217.925129428, + 224.370149428, + 232.56778942799997, + 227.56961942799998, + 225.911099428, + 217.218459428, + 210.58561942799997, + 202.519429428, 203.001675127, 168.489065812, 168.489065812, @@ -48770,18 +48770,18 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 56.083451909400004, - 61.7553307272, - 100.1372664567, - 157.359288716, - 209.74605942799997, - 211.597524009, - 214.582160044, - 230.97629615, - 232.06540896, - 220.225110214, - 210.72098158300003, - 206.14070045000003, + 56.1084519094, + 65.8739707272, + 111.11838645670001, + 174.902008716, + 234.88961942799997, + 237.291524009, + 239.002000044, + 258.96709615000003, + 252.74224895999998, + 232.01219021400001, + 215.43402158300003, + 206.29326045000002, 151.285513646, 115.34805707999999, 115.34805707999999, @@ -48794,18 +48794,18 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 18.355354497799997, - 12.725998798800001, - 65.9349936895, - 68.9130108282, - 126.620635399, - 136.98566789, - 186.224838476, - 182.162216513, - 180.47592522, - 181.72270064100002, - 167.94193601100002, - 121.143827278, + 18.549994497799997, + 22.0016387988, + 84.6490736895, + 86.4860908282, + 150.435675399, + 162.42258789000002, + 212.658438476, + 201.81653651300002, + 197.63704522, + 200.99674064100003, + 178.37681601100002, + 122.16730727800001, 97.63438750239999, 31.876305895599998, 31.876305895599998, @@ -48818,18 +48818,18 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.745331930300004, - 78.97564839990001, - 137.093928587, - 208.01226681900002, - 211.55345945, - 208.994799428, - 214.975179428, - 214.722399428, - 210.183369428, - 209.58264942799997, - 200.32248942799998, - 204.428997194, + 57.001491930300006, + 88.5084083999, + 155.846528587, + 232.86794681900003, + 240.72061945, + 229.485399428, + 246.695659428, + 244.559639428, + 231.083249428, + 228.73672942799996, + 205.33188942799998, + 205.461917194, 168.77940147799998, 168.94912337600002, 151.31211313999998, @@ -48842,18 +48842,18 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 57.8879911938, - 80.4267072648, - 136.464842539, - 204.69620115200001, - 211.614879428, - 214.048239428, - 211.74807942799998, - 214.97208942799998, - 213.09405942799998, - 209.634909428, - 204.540459428, - 204.45829512699999, + 57.980951193799996, + 84.8457472648, + 147.221242539, + 218.629001152, + 241.01615942799998, + 245.60335942799998, + 236.79227942799997, + 245.05292942799997, + 238.86301942799997, + 228.705949428, + 214.874979428, + 205.57117512699998, 168.489065812, 168.51333617699999, 150.902469304, @@ -48866,18 +48866,18 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 54.06014585330001, - 79.5672964732, - 137.751921088, - 208.815801108, - 210.19242942799997, - 211.94730942799998, - 211.33455942799998, - 211.49274942799997, - 211.135899428, - 207.46107942799998, - 205.21536942799997, - 203.274225127, + 54.64026585330001, + 89.5268164732, + 157.42452108799998, + 235.48992110799998, + 235.47182942799998, + 238.61090942799999, + 234.976159428, + 235.00010942799997, + 233.496579428, + 223.07695942799998, + 216.28564942799997, + 203.558505127, 168.489065812, 168.489065812, 150.775396235, @@ -48890,18 +48890,18 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.8248251167, - 79.219169359, - 137.67980913800002, - 209.31915942799998, - 213.201999428, - 215.536689428, - 216.41487942799998, - 215.93583942799998, - 214.08606942799997, - 210.650049428, - 203.404359428, - 200.765757277, + 54.6522651167, + 89.996609359, + 158.19072913800002, + 236.91099942799997, + 245.270239428, + 248.870009428, + 249.748199428, + 247.31971942799998, + 241.05410942799998, + 230.970649428, + 212.193919428, + 201.718477277, 168.489065812, 168.489065812, 150.775396235, @@ -48914,18 +48914,18 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.4253248226, - 79.4200256858, - 137.53531927999998, - 208.89210942799997, - 212.56593942799998, - 214.653279428, - 215.12634942799997, - 214.27257942799997, - 212.76687942799998, - 206.895759428, - 203.00754942799998, - 201.359067277, + 53.7969248226, + 87.1419456858, + 157.15159927999997, + 235.14390942799997, + 243.11769942799998, + 246.88391942799998, + 246.48458942799996, + 242.88057942799998, + 237.73339942799998, + 221.574679428, + 211.211469428, + 202.653707277, 168.489065812, 168.489065812, 150.775396235, @@ -48938,18 +48938,18 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 52.6148018321, - 61.8260622177, - 101.49302359960001, - 160.716004791, - 212.661339428, - 214.99581942799998, - 215.89551942799997, - 215.540469428, - 213.607539428, - 210.239049428, - 205.13145942799997, - 201.586137277, + 53.5120818321, + 72.1357822177, + 116.13906359960001, + 186.830724791, + 243.27457942799998, + 247.760899428, + 248.50555942799997, + 246.061589428, + 239.62857942799997, + 229.747049428, + 215.76237942799997, + 203.022937277, 150.775396235, 115.34805707999999, 115.34805707999999, @@ -48962,18 +48962,18 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.980486648300001, - 62.4684010458, - 65.9326739376, - 125.873799561, - 127.075539561, - 163.189848716, - 165.150738716, - 163.080078716, - 161.770908716, - 157.51456871599999, - 119.142729561, - 81.81307825510001, + 15.871006648300002, + 68.67744104580001, + 79.2660339376, + 153.128079561, + 152.781699561, + 188.086408716, + 192.490818716, + 185.398918716, + 181.54126871600002, + 170.108008716, + 126.941929561, + 82.8349182551, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -48986,18 +48986,18 @@ 33.107087900699995, 33.107087900699995, 70.5802090928, - 81.30378418280002, - 132.70376458500002, - 203.991997181, - 209.60040942799998, - 213.39966942799998, - 215.76816942799996, - 216.68787942799997, - 216.099189428, - 214.142709428, - 210.691959428, - 205.46691942799998, - 153.655926565, + 82.39150418280002, + 143.350764585, + 224.13923718099997, + 236.63988942799998, + 245.060589428, + 249.10148942799998, + 250.021199428, + 247.16810942799998, + 240.656269428, + 230.58179942799998, + 216.29783942799997, + 155.24320656499998, 168.489065812, 150.775396235, 60.9083742719, @@ -49010,18 +49010,18 @@ 33.107087900699995, 33.107087900699995, 71.1137200688, - 81.7057311812, - 133.104680406, - 204.175231309, - 209.444379428, - 213.237189428, - 215.60094942799998, - 216.649509428, - 216.196719428, - 214.22811942799999, - 210.83499942799997, - 205.67202942799997, - 153.943536565, + 82.8802911812, + 143.627160406, + 223.996831309, + 236.05573942799998, + 244.292709428, + 248.87162942799998, + 249.982829428, + 247.27223942799998, + 240.754279428, + 230.82607942799999, + 216.67142942799998, + 155.63881656499998, 168.489065812, 150.775396235, 60.9083742719, @@ -49034,18 +49034,18 @@ 33.107087900699995, 33.107087900699995, 71.0562858942, - 81.6806659457, - 133.044629154, - 204.278521176, - 209.528109428, - 212.887239428, - 215.067939428, - 215.96802942799997, - 215.66649942799998, - 213.97566942799997, - 210.70059942799998, - 205.66977942799997, - 154.02366656499998, + 83.0717459457, + 143.949229154, + 224.304881176, + 235.818949428, + 243.08051942799997, + 247.22165942799998, + 248.05650942799997, + 245.81473942799997, + 240.02306942799996, + 230.38495942799997, + 216.53637942799998, + 155.72582656499998, 168.489065812, 150.775396235, 60.9083742719, @@ -49058,18 +49058,18 @@ 33.107087900699995, 33.107087900699995, 71.76560936519999, - 78.8137419564, - 133.51483250299998, - 204.521032697, - 209.90118942799998, - 213.63999942799998, - 215.939619428, - 216.74949942799998, - 216.28083942799998, - 214.20648942799997, - 210.742809428, - 205.686849428, - 153.953316565, + 80.2912219564, + 144.43459250299998, + 224.84923269700002, + 236.86214942799998, + 245.18427942799997, + 249.272939428, + 249.97569942799998, + 247.24107942799998, + 240.45920942799998, + 230.39088942799998, + 216.47952942799998, + 155.63011656499998, 168.489065812, 150.775396235, 60.9083742719, @@ -49082,18 +49082,18 @@ 33.107087900699995, 33.107087900699995, 71.74980254120001, - 78.89294904580001, - 133.667076581, - 204.297290005, - 209.12616942799997, - 212.50761942799997, - 214.411419428, - 215.63328942799998, - 215.485119428, - 213.89367942799998, - 210.79101942799997, - 205.939449428, - 154.283346565, + 80.31586904580001, + 143.99779658100002, + 223.514970005, + 234.16304942799997, + 241.62573942799997, + 245.084499428, + 246.92168942799998, + 245.123759428, + 239.621479428, + 230.40541942799996, + 216.91004942799998, + 156.05446656499998, 168.489065812, 150.775396235, 60.9083742719, @@ -49106,18 +49106,18 @@ 31.876305895599998, 31.876305895599998, 69.9624117576, - 60.7667128384, - 97.9777873523, - 156.633738716, - 210.296979428, - 214.058889428, - 216.49212942799997, - 217.480539428, - 217.02072942799998, - 215.162049428, - 210.02238942799997, - 203.30742942799998, - 135.715246988, + 62.5211928384, + 109.4309073523, + 177.422058716, + 237.790659428, + 246.13676942799998, + 249.82544942799998, + 250.813859428, + 248.863369428, + 242.527369428, + 228.38130942799998, + 211.30550942799997, + 137.106406988, 115.34805707999999, 115.34805707999999, 79.9207179249, @@ -49130,18 +49130,18 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.767138798800001, - 63.089830528600004, - 68.5343255384, - 127.078779561, - 130.768359561, - 168.449658716, - 169.182798716, - 168.512688716, - 166.658478716, - 163.262718716, - 122.885199561, - 83.84212825510001, + 13.631298798800001, + 74.78951052859999, + 89.8468455384, + 155.150939561, + 163.21331956100002, + 201.782978716, + 202.516118716, + 199.77512871599998, + 193.528598716, + 183.526438716, + 134.279839561, + 85.76476825510001, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -49154,18 +49154,18 @@ 33.107087900699995, 33.107087900699995, 71.43221119629999, - 78.606702419, - 133.81087406, - 205.223959253, - 210.687939428, - 214.35369942799997, - 216.58701942799996, - 217.30053942799998, - 216.496119428, - 214.41351942799997, - 211.08846942799997, - 206.286069428, - 154.620216565, + 80.534782419, + 145.55771406, + 226.443439253, + 238.483339428, + 246.501139428, + 249.92033942799998, + 250.633859428, + 247.258959428, + 240.52271942799996, + 230.80742942799998, + 217.373389428, + 156.505336565, 168.489065812, 150.775396235, 60.9083742719, @@ -49178,18 +49178,18 @@ 33.107087900699995, 33.107087900699995, 71.7159433771, - 79.06515229329999, - 134.058004554, - 202.986472607, - 209.141379428, - 211.82562942799998, - 212.27850942799998, - 212.790099428, - 212.53710942799998, - 209.16345942799998, - 210.84093942799998, - 206.06142942799997, - 150.982938716, + 79.88475229329998, + 140.444884554, + 214.873072607, + 233.504019428, + 238.90510942799997, + 237.99142942799998, + 238.264939428, + 236.737549428, + 226.907299428, + 230.10521942799997, + 216.77062942799998, + 152.796578716, 168.489065812, 150.775396235, 60.9083742719, @@ -49202,18 +49202,18 @@ 33.107087900699995, 33.107087900699995, 71.3879845974, - 78.71168106380001, - 134.214472913, - 205.231855933, - 210.32358595800002, - 214.007269543, - 216.33408910100002, - 216.956676979, - 216.25797942799997, - 214.32927942799998, - 211.27026053499998, - 206.40426514199999, - 151.18916665299997, + 80.65360106380001, + 145.132872913, + 224.83137593299998, + 236.24298595800002, + 243.959789543, + 248.431849101, + 249.059836979, + 246.29821942799995, + 240.02015942799997, + 230.37158053499996, + 216.75462514199998, + 152.88780665299998, 169.242880395, 151.67589048099998, 60.9083742719, @@ -49226,18 +49226,18 @@ 34.1789560652, 34.3747106047, 69.00169124979999, - 80.0734116356, - 135.169719917, - 205.455351632, - 209.72997942799998, - 212.70366942799998, - 214.633659428, - 215.86890942799997, - 215.866749428, - 214.293489428, - 211.026579428, - 206.07237942799998, - 150.980868716, + 81.99469163559999, + 145.694039917, + 224.550831632, + 234.805219428, + 241.073669428, + 244.763779428, + 246.64778942799995, + 245.253429428, + 239.867489428, + 230.216499428, + 216.574739428, + 152.769188716, 168.489065812, 150.775396235, 60.9083742719, @@ -49250,18 +49250,18 @@ 33.107087900699995, 33.107087900699995, 68.21642204620001, - 79.0539899349, - 134.449221746, - 203.835806071, - 207.32817942799997, - 212.58696942799997, - 212.73597942799998, - 213.04683942799997, - 212.001429428, - 211.521819428, - 210.49518942799997, - 202.96116942799998, - 149.767578716, + 81.1389499349, + 145.410741746, + 218.353446071, + 226.37597942799997, + 240.79992942799998, + 238.98285942799998, + 238.63711942799998, + 234.91378942799997, + 232.784019428, + 228.94470942799998, + 210.25080942799997, + 151.093218716, 168.489065812, 150.808750933, 60.9083742719, @@ -49274,18 +49274,18 @@ 31.876305895599998, 31.876305895599998, 66.8440449977, - 61.3108998436, - 99.1833088657, - 155.73784333900002, - 208.72587942799998, - 213.59817942799998, - 215.623479428, - 216.21525942799997, - 215.56890942799998, - 209.14893942799998, - 208.80687942799997, - 203.33841942799998, - 132.98585913800002, + 63.3308198436, + 109.7583088657, + 169.78048333900003, + 230.785159428, + 243.409659428, + 247.166079428, + 247.43301942799997, + 244.25738942799998, + 226.53393942799997, + 224.98619942799996, + 211.00977942799997, + 134.68789913800003, 115.34805707999999, 115.34805707999999, 79.9553430496, @@ -49298,18 +49298,18 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 12.0413687988, - 64.2551356663, - 68.5706355353, - 126.383019561, - 130.175739561, - 167.927388716, - 168.899838716, - 166.124689945, - 166.595367609, - 163.306554509, - 122.453949561, - 80.1072604056, + 14.143928798800001, + 74.9441756663, + 87.6089555353, + 151.590419561, + 160.271219561, + 200.277028716, + 201.244638716, + 192.261129945, + 192.039327609, + 182.393874509, + 132.726789561, + 81.8796604056, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -49322,18 +49322,18 @@ 33.107087900699995, 33.107087900699995, 67.6264595813, - 78.5623080292, - 134.303997153, - 205.886529428, - 211.386863546, - 219.205329341, - 224.42031437, - 209.54652238, - 217.569268696, - 217.83322063399999, - 213.02533747, - 203.05706728100003, - 152.428385465, + 80.9469880292, + 145.91811715300003, + 226.544529428, + 238.676983546, + 251.08992934100002, + 257.75363437, + 216.23348238, + 235.748508696, + 236.368900634, + 224.62777747, + 207.19918728100004, + 154.28626546499999, 168.632610177, 150.775396235, 60.9083742719, @@ -49346,18 +49346,18 @@ 33.107087900699995, 33.107087900699995, 67.5429693398, - 78.6630914861, - 134.704950796, - 206.047156212, - 211.00728942799998, - 214.37322942799997, - 216.48114942799998, - 217.534089428, - 217.111989428, - 215.18853942799998, - 211.684359428, - 200.21214942799998, - 151.382568716, + 81.0489714861, + 146.364710796, + 226.59867621200002, + 237.93984942799997, + 245.151749428, + 249.03806942799997, + 250.409449428, + 247.66238942799998, + 241.35525942799998, + 231.130879428, + 204.63270942799997, + 153.281008716, 168.489065812, 150.775396235, 60.9083742719, @@ -49370,18 +49370,18 @@ 33.107087900699995, 33.107087900699995, 67.5439011054, - 78.7539028486, - 134.75991697, - 205.813749428, - 210.37671942799997, - 215.51867106000003, - 226.95656506599997, - 230.401030589, - 229.210169394, - 227.908444221, - 219.05792573, - 208.886682455, - 152.351464116, + 81.19218284860001, + 145.92811697, + 225.312829428, + 235.74499942799997, + 244.54163106, + 253.57652506599996, + 256.998030589, + 253.466569394, + 250.307804221, + 237.10312573, + 218.689842455, + 154.16842411599998, 168.583890605, 150.775396235, 60.9083742719, @@ -49394,18 +49394,18 @@ 33.107087900699995, 33.107087900699995, 67.4918707848, - 78.56868655150001, - 134.06130724099998, - 204.05490942799997, - 210.233384256, - 220.606384243, - 229.87036679800002, - 228.94828439199998, - 231.24934950600002, - 232.583666346, - 227.067010299, - 215.50238164499999, - 153.657291302, + 81.02924655150001, + 140.40666724099998, + 217.66102942799998, + 235.302024256, + 250.356664243, + 260.412406798, + 252.00652439199996, + 255.86542950600003, + 257.57594634599997, + 244.302290299, + 222.15126164499998, + 154.93885130200002, 170.01510849299999, 151.615747781, 60.9083742719, @@ -49418,18 +49418,18 @@ 33.107087900699995, 33.107087900699995, 63.477519776099996, - 78.0474261287, - 134.726181781, - 206.92926942799997, - 212.67519003799998, - 227.895335821, - 245.82750357700002, - 254.492780331, - 252.311149074, - 243.451605651, - 233.249964919, - 222.779177953, - 157.12964642600002, + 80.9145461287, + 147.555861781, + 228.82634942799996, + 241.096630038, + 260.614335821, + 279.16082357700003, + 287.826100331, + 284.00922907399996, + 270.515885651, + 253.513644919, + 233.918537953, + 159.126566426, 169.595140774, 151.139541776, 60.9083742719, @@ -49442,18 +49442,18 @@ 31.876305895599998, 31.876305895599998, 62.392231850600005, - 60.390822440099996, - 99.1755964335, - 158.24183786, - 223.009104742, - 242.656014607, - 250.905189064, - 250.82506806299997, - 252.787529067, - 254.950777045, - 248.147435876, - 221.347980838, - 136.39866186799998, + 63.182662440099996, + 111.1549164335, + 178.86599786, + 249.923024742, + 273.98893460700003, + 284.238509064, + 284.158388063, + 284.063729067, + 281.771377045, + 268.10783587599997, + 221.49038083800002, + 136.45942186799996, 116.044688571, 115.34805707999999, 79.9207179249, @@ -49466,18 +49466,18 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 12.1038887988, - 64.6990008, - 70.5823298248, - 128.874009561, - 132.549219561, - 170.336508716, - 171.122898716, - 170.537028716, - 168.381948716, - 164.819238716, - 124.140429561, - 81.46998040560001, + 15.1452087988, + 77.7086408, + 92.8090898248, + 157.60776956100003, + 165.702339561, + 203.66982871599998, + 204.456218716, + 202.799628716, + 195.738308716, + 185.319838716, + 135.305749561, + 83.51086040560001, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -49490,18 +49490,18 @@ 33.107087900699995, 33.107087900699995, 64.4407085945, - 78.819098274, - 135.57973590999998, - 207.08562859699998, - 211.947519428, - 215.319729428, - 217.29876942799999, - 217.865409428, - 213.849819428, - 215.39268942799998, - 212.056659428, - 207.29604942799998, - 152.324838716, + 81.871298274, + 148.27741590999997, + 228.457548597, + 239.580599428, + 246.861649428, + 250.43224942799998, + 250.36052942799998, + 238.577619428, + 241.18252942799998, + 231.42957942799998, + 217.99456942799998, + 154.315118716, 165.062747963, 150.775396235, 60.9083742719, @@ -49514,18 +49514,18 @@ 33.107087900699995, 33.107087900699995, 64.43753969810001, - 78.9836173375, - 135.454181857, - 205.220578791, - 208.50228942799998, - 213.40527942799997, - 215.55108942799998, - 216.70776942799998, - 216.524259428, - 214.92606942799998, - 211.65030942799999, - 206.97684942799998, - 152.002548716, + 81.9872973375, + 147.292101857, + 221.60717879100002, + 228.823609428, + 241.43119942799999, + 245.73048942799997, + 247.33904942799998, + 245.406619428, + 239.94854942799998, + 230.33758942799997, + 217.25788942799997, + 153.970188716, 165.062747963, 150.775396235, 60.9083742719, @@ -49538,18 +49538,18 @@ 33.107087900699995, 33.107087900699995, 64.3562861956, - 79.1230760203, - 135.75911131, - 204.41082942799997, - 209.44023942799998, - 214.84410942799997, - 217.114059428, - 218.10396942799997, - 217.687929428, - 215.809899428, - 212.471799428, - 207.485199428, - 152.253468716, + 82.2327160203, + 147.80691131, + 217.72270942799997, + 231.38435942799998, + 245.14066942799997, + 249.621059428, + 250.69608942799996, + 248.107169428, + 241.815459428, + 232.02507942799997, + 218.13131942799998, + 154.312508716, 165.062747963, 150.775396235, 60.9083742719, @@ -49562,18 +49562,18 @@ 33.107087900699995, 33.107087900699995, 64.3032653825, - 79.1212844458, - 136.098915157, - 207.649012344, - 212.59368942799998, - 216.13308942799998, - 218.35350942799997, - 219.27159942799997, - 218.70960942799996, - 216.633309428, - 206.24127942799998, - 207.42696942799998, - 152.177388716, + 82.3991644458, + 148.845515157, + 229.346572344, + 240.90316942799998, + 248.39872942799997, + 251.68682942799998, + 252.604919428, + 250.486009428, + 243.61318942799997, + 218.04003942799997, + 218.10284942799998, + 154.302588716, 165.062747963, 150.775396235, 60.9083742719, @@ -49586,18 +49586,18 @@ 33.107087900699995, 33.107087900699995, 60.6103889724, - 79.05808451760001, - 136.183434339, - 207.80538942799998, - 212.76981942799998, - 216.358869428, - 218.496309428, - 219.19854942799998, - 218.496309428, - 216.36564942799998, - 212.77053942799998, - 207.533379428, - 152.377068716, + 82.5015645176, + 149.078074339, + 229.60014942799998, + 241.05125942799998, + 249.081589428, + 251.829629428, + 252.531869428, + 249.74654942799998, + 242.94308942799998, + 232.50921942799997, + 218.20993942799998, + 154.512668716, 165.062747963, 150.775396235, 60.9083742719, @@ -49610,18 +49610,18 @@ 31.876305895599998, 31.876305895599998, 59.1811872471, - 61.112813984, - 100.5955377134, - 159.528768716, - 212.43813942799997, - 215.70435942799998, - 217.509489428, - 217.96521942799998, - 217.28466942799997, - 215.60243891099998, - 212.746962408, - 207.94815970599998, - 135.07712904600004, + 64.625653984, + 113.53913771340001, + 181.026528716, + 240.08097942799998, + 246.99327942799997, + 250.24188942799998, + 250.02873942799997, + 246.91414942799997, + 241.006118911, + 232.032122408, + 218.54835970599999, + 137.19492904600003, 111.993546315, 115.34805707999999, 79.9207179249, @@ -49634,18 +49634,18 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 12.6274487988, - 64.9688130821, - 70.3861008282, - 130.37977751399998, - 145.973128332, - 191.788339331, - 191.151889116, - 190.43665261799998, - 188.88027976200001, - 184.036882937, - 132.69011441100002, - 82.9717087808, + 15.227888798799999, + 77.25841308209999, + 90.6218608282, + 156.52121751399997, + 176.134968332, + 223.95833933100002, + 223.117649116, + 220.157772618, + 214.05023976200002, + 202.651482937, + 142.973074411, + 85.0009487808, 28.4499880461, 31.876305895599998, 31.876305895599998, @@ -49658,18 +49658,18 @@ 33.107087900699995, 33.107087900699995, 60.012407788800004, - 78.5977927326, - 135.81718697499997, - 207.35667942799998, - 212.887717421, - 220.30536633, - 222.399878938, - 223.254603628, - 222.852756817, - 220.683259448, - 216.954155372, - 210.846708501, - 153.97966062900002, + 82.0939927326, + 148.18850697499997, + 227.70151942799998, + 239.288077421, + 250.57088633, + 254.735318938, + 255.589043628, + 252.99883681699998, + 246.304659448, + 235.825235372, + 220.14958850099998, + 155.79986062900002, 165.73295948799998, 150.775396235, 60.9083742719, @@ -49682,18 +49682,18 @@ 33.107087900699995, 33.107087900699995, 60.308516406, - 78.59571423989999, - 136.08772448099998, - 207.75978942799998, - 212.43405942799998, - 217.280628976, - 223.90806475099998, - 222.509017224, - 221.96859673100002, - 220.030479767, - 216.407869584, - 211.297543456, - 155.045653242, + 82.19827423989999, + 148.98296448099998, + 228.92246942799997, + 239.530259428, + 248.605908976, + 257.24138475099994, + 255.778577224, + 252.73571673100002, + 246.178919767, + 235.974109584, + 221.990823456, + 157.094293242, 165.94027216900002, 150.895940876, 60.9083742719, @@ -49707,17 +49707,17 @@ 33.107087900699995, 60.1719545604, 77.49707563470001, - 136.089885398, - 204.29175942799998, - 212.73204942799998, - 200.61711942799997, - 208.60860942799997, - 221.579613457, - 239.238905634, - 243.675971182, - 255.70627213400002, - 255.39474198599999, - 195.72519733500002, + 148.821245398, + 216.15367942799998, + 240.27224942799998, + 205.89491942799998, + 224.99708942799998, + 254.91293345699998, + 270.25958563399996, + 265.781811182, + 268.69971213400004, + 257.47850198599997, + 195.78843733500003, 198.018011367, 171.932761304, 60.9083742719, @@ -49730,18 +49730,18 @@ 33.107087900699995, 33.107087900699995, 59.6326017304, - 78.66868790160001, - 136.331099138, - 207.516335715, - 231.58938731900002, - 245.78804568500001, - 255.181797788, - 257.760721877, - 258.033729171, - 244.83480485200002, - 237.529153355, - 231.16881650400003, - 169.431555353, + 82.4102079016, + 149.133899138, + 219.374135715, + 259.065627319, + 277.270925685, + 288.512637788, + 285.366961877, + 288.356529171, + 259.09280485200003, + 244.340633355, + 236.98229650400003, + 170.652035353, 174.865144519, 152.22057897000002, 60.9083742719, @@ -49755,16 +49755,16 @@ 33.107087900699995, 59.9689370248, 77.3046024499, - 136.32710913800003, - 208.52821657500002, - 215.319776104, - 226.039754213, - 239.548396752, - 239.493098757, - 236.82499317000003, - 231.04741360699998, - 229.102061124, - 219.571514256, + 148.81294913800002, + 229.72853657500002, + 221.115816104, + 226.735914213, + 241.846956752, + 240.56869875700002, + 241.07255317000002, + 235.231093607, + 237.062341124, + 222.283754256, 160.436578452, 167.277039323, 151.573968991, @@ -49778,18 +49778,18 @@ 31.876305895599998, 31.876305895599998, 55.532393595900004, - 61.569249367699996, - 101.2395641716, - 160.592568716, - 213.591309428, - 217.130660419, - 219.735903596, - 220.37333119500002, - 219.653765217, - 217.584248596, - 214.186887159, - 209.20132778400003, - 136.29584895099998, + 64.3425693677, + 114.9314041716, + 182.941008716, + 242.197029428, + 249.49334041900002, + 253.06922359600003, + 253.70665119500003, + 250.557965217, + 243.75172859600002, + 233.808807159, + 219.84868778400002, + 138.294368951, 111.972841031, 115.34805707999999, 79.9207179249, @@ -49801,19 +49801,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 18.2305844978, - 12.7869587988, - 65.9176856058, - 71.278435282, - 128.655369561, - 131.283159561, - 168.195438716, - 169.228160529, - 169.334688925, - 167.748376167, - 164.70234169, - 124.345872386, - 82.2752104056, + 18.2799044978, + 16.6157587988, + 78.7597656058, + 92.07931528200001, + 154.83496956099998, + 160.442839561, + 198.48591871600001, + 199.713520529, + 198.128968925, + 192.56541616700002, + 183.46298169, + 134.477792386, + 84.28829040560001, 28.4499880461, 31.876305895599998, 31.876305895599998, @@ -49825,19 +49825,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.8275750041, - 78.78262047170001, - 136.410067651, - 207.907929428, - 212.16561942799999, - 217.024973072, - 225.381382733, - 227.985769766, - 227.974074644, - 227.855732593, - 225.067796621, - 220.696352184, - 161.852660262, + 56.8943350041, + 82.56898047170002, + 149.07030765099998, + 228.341489428, + 238.06853942799998, + 246.394493072, + 256.08738273299997, + 257.98204976600005, + 255.98967464400002, + 251.964732593, + 243.24679662100002, + 230.640312184, + 163.840180262, 163.13113847999998, 151.564485868, 60.9083742719, @@ -49849,19 +49849,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.813539064699995, - 78.7059020215, - 136.44467712799997, - 207.81930942799997, - 211.721679428, - 214.365039428, - 216.10605942799998, - 217.202709428, - 217.136079428, - 215.50305942799997, - 212.41158942799998, - 207.916899428, - 153.399378716, + 56.895779064699994, + 82.4187820215, + 149.03207712799997, + 227.84770942799997, + 236.834959428, + 242.527479428, + 245.80689942799998, + 247.228789428, + 245.514839428, + 239.83893942799997, + 230.663309428, + 217.880259428, + 155.245378716, 161.63643011300002, 150.775396235, 60.9083742719, @@ -49873,19 +49873,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 57.026579216900004, - 79.3724256264, - 136.652710346, - 207.914289428, - 209.90871942799998, - 212.376866224, - 216.987104547, - 217.628179035, - 217.222839775, - 215.47116899099998, - 212.401440828, - 204.914612928, - 153.32124057000001, + 57.193419216900004, + 82.5468656264, + 149.150550346, + 228.12952942799998, + 231.12895942799997, + 236.672746224, + 247.738024547, + 247.97565903499998, + 245.506759775, + 239.58520899099997, + 230.460960828, + 212.763452928, + 155.18740057000002, 161.638727569, 150.775396235, 60.9083742719, @@ -49897,19 +49897,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 57.0226047047, - 78.9259238136, - 136.68944211299998, - 208.114329428, - 212.20419942799998, - 215.076616812, - 218.12494837900002, - 220.110299393, - 219.13277551200002, - 217.400332702, - 214.547804219, - 210.01736540200002, - 154.20997729, + 57.1698047047, + 82.7123238136, + 149.38544211299998, + 228.55744942799998, + 237.86875942799998, + 243.809736812, + 247.96174837900003, + 248.988059393, + 245.40021551200002, + 239.852812702, + 231.482164219, + 219.14732540200004, + 156.12937729, 162.36046872499998, 150.775396235, 60.9083742719, @@ -49921,19 +49921,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.7500137333, - 79.06930444759999, - 136.662580963, - 207.74787942799998, - 211.85301942799998, - 215.15406942799999, - 216.70737942799997, - 216.840699428, - 215.748549428, - 213.64749942799997, - 211.21293942799997, - 207.37065942799998, - 153.339678716, + 56.8746537333, + 82.84970444759999, + 148.530300963, + 227.26139942799998, + 236.89713942799997, + 244.204229428, + 246.91921942799996, + 246.047019428, + 242.168669428, + 235.76285942799998, + 228.13601942799997, + 216.74233942799998, + 155.092518716, 161.63643011300002, 150.775396235, 60.9083742719, @@ -49945,19 +49945,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 55.8776616906, - 61.4191266996, - 101.5863786309, - 159.792353662, - 211.87161942799997, - 214.53129942799998, - 215.995149428, - 216.528099428, - 216.13467942799997, - 214.64784942799997, - 211.81863942799998, - 207.708969428, - 135.77840913800003, + 56.0247416906, + 65.2334866996, + 114.0898186309, + 179.58671366200002, + 236.77317942799996, + 242.52001942799998, + 245.11258942799998, + 245.25065942799998, + 242.87391942799997, + 237.63444942799998, + 229.14403942799999, + 217.22612942799998, + 137.58108913800004, 108.495421381, 115.392130624, 80.1688104385, @@ -49969,19 +49969,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.8617466483, - 12.8711387988, - 67.0488578423, - 71.5530450543, - 128.43662106899998, - 131.89936801, - 168.99002834700002, - 169.718237123, - 169.258536357, - 167.276538716, - 164.011368716, - 124.386999561, - 82.74509657569999, + 15.0190266483, + 16.6984587988, + 79.34105784229999, + 90.9274450543, + 153.163901069, + 160.50316801, + 199.27278834700002, + 199.821917123, + 197.237936357, + 191.115098716, + 181.649808716, + 134.055519561, + 84.6451365757, 25.0236701967, 31.876305895599998, 31.876305895599998, @@ -49993,19 +49993,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 55.0212274642, - 80.4533980826, - 138.078363229, - 209.37334793899998, - 213.355203265, - 216.381269922, - 218.27356409499998, - 218.50693594199998, - 218.15079942799997, - 216.28881942799998, - 213.13074942799997, - 208.69287942799997, - 154.112731449, + 55.214467464200006, + 84.5646780826, + 150.889083229, + 229.83606793899997, + 239.168723265, + 245.849989922, + 249.47624409499997, + 249.34805594199997, + 247.17919942799998, + 240.94981942799998, + 231.61770942799998, + 218.81979942799995, + 156.077091449, 161.993373463, 151.23928744699998, 60.9083742719, @@ -50017,19 +50017,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 55.1224538979, - 80.64480010060001, - 138.056087446, - 208.452418324, - 212.64786942799998, - 213.17586942799997, - 207.28563942799997, - 209.312649428, - 210.55911942799997, - 201.55824942799998, - 201.186489428, - 199.41252942799997, - 148.763928716, + 55.3832138979, + 83.3214001006, + 150.64764744599998, + 227.951258324, + 238.51418942799998, + 238.01666942799997, + 221.54275942799995, + 226.323689428, + 228.70579942799998, + 207.781049428, + 206.853929428, + 202.97652942799996, + 149.688048716, 161.63643011300002, 150.775396235, 60.9083742719, @@ -50042,18 +50042,18 @@ 33.107087900699995, 33.107087900699995, 53.9600285541, - 80.0858046683, - 136.52799242400002, - 204.767799428, - 206.62143942799997, - 201.743349428, - 209.818569428, - 213.82551942799998, - 212.49570942799997, - 206.22003942799998, - 208.13772942799997, - 204.309789428, - 153.949908716, + 83.1683246683, + 145.688792424, + 216.81711942799998, + 220.99963942799997, + 208.411789428, + 228.020689428, + 237.49355942799997, + 233.27982942799997, + 218.02239942799997, + 221.27764942799996, + 211.620709428, + 155.79826871600002, 161.63643011300002, 150.775396235, 60.9083742719, @@ -50065,19 +50065,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.771120430299995, - 79.4807880893, - 137.660590609, - 208.924076545, - 213.22623942799999, - 216.42111942799997, - 218.442669428, - 219.198489428, - 207.67248942799998, - 211.161699428, - 202.638249428, - 199.977699428, - 148.563318716, + 54.033320430299995, + 83.5038280893, + 150.530390609, + 229.576756545, + 239.617039428, + 246.56247942799996, + 250.361629428, + 250.84612942799998, + 221.68032942799996, + 229.109339428, + 209.883809428, + 204.07293942799998, + 149.257958716, 161.63643011300002, 150.775396235, 60.9083742719, @@ -50089,19 +50089,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.863451747999996, - 79.65878535239999, - 137.884097726, - 209.179869428, - 213.37545942799997, - 216.42786942799998, - 218.16543942799998, - 218.465769428, - 217.670919428, - 215.61555942799998, - 212.58723942799998, - 208.07580942799999, - 153.778158716, + 54.193731748, + 83.92582535239998, + 151.165737726, + 230.237109428, + 239.92581942799998, + 246.58658942799997, + 249.72547942799997, + 249.181049428, + 245.873119428, + 239.39239942799998, + 230.42611942799996, + 217.648289428, + 155.79815871600002, 161.63643011300002, 150.775396235, 60.9083742719, @@ -50113,19 +50113,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 52.47913409070001, - 62.08706471680001, - 102.38990882629999, - 160.80338591199998, - 213.15699942799998, - 216.352329428, - 217.836309428, - 217.85520942799997, - 216.80445942799997, - 214.69422942799997, - 211.845339428, - 207.979960059, - 136.52239623600002, + 52.83817409070001, + 66.3773447168, + 115.24050882629999, + 181.343705912, + 239.35351942799997, + 246.31200942799998, + 248.85802942799998, + 247.72640942799995, + 243.93245942799996, + 237.46670942799997, + 229.007339428, + 217.435920059, + 138.45739623600002, 108.91066667199999, 115.77113264900001, 80.47840571260001, @@ -50137,19 +50137,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 15.074326648300001, - 13.647358798800001, - 67.960837599, - 72.6852023978, - 129.349156544, - 131.90345485400002, - 168.683058716, - 168.730818716, - 168.055878716, - 166.458228716, - 163.723158716, - 123.878919561, - 82.50366040560002, + 15.485966648300002, + 17.9675987988, + 80.693277599, + 92.8861223978, + 154.882916544, + 160.642534854, + 198.208858716, + 197.25665871599998, + 194.491158716, + 189.035668716, + 180.718798716, + 133.062679561, + 84.55450040560001, 21.5973523472, 31.876305895599998, 31.876305895599998, @@ -50161,19 +50161,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.9683912285, - 80.1939131253, - 138.101936623, - 208.641344546, - 212.309365945, - 215.47816054900002, - 217.352580785, - 218.01024942799998, - 217.56108942799997, - 215.67084942799997, - 212.416089428, - 208.61454942799998, - 154.316312767, + 54.38703122850001, + 84.4325531253, + 150.504016623, + 227.881664546, + 236.801525945, + 243.62584054900003, + 247.25970078499998, + 247.72744942799997, + 245.263329428, + 239.05568942799997, + 229.652169428, + 218.32006942799998, + 156.200712767, 158.33658941899998, 150.978757199, 60.9083742719, @@ -50185,19 +50185,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.87707262519999, - 80.0321670073, - 138.091368641, - 209.15694518, - 213.08184942799997, - 215.88960942799997, - 217.218643462, - 219.59031180099998, - 221.88092699900002, - 226.103002639, - 225.276399787, - 220.557102689, - 159.81654733, + 51.286952625199994, + 84.21860700730001, + 151.082888641, + 229.65766518, + 238.86308942799997, + 244.96928942799997, + 247.22560346199998, + 248.243791801, + 247.97800699900003, + 248.987922639, + 242.619279787, + 229.927102689, + 161.66842733, 158.601014037, 150.775396235, 60.9083742719, @@ -50209,19 +50209,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.4514580358, - 79.7976214326, - 137.75339333399998, - 208.80525942799997, - 212.617179428, - 215.28690942799997, - 216.57174942799998, - 216.574299428, - 217.91238121, - 219.65027030000002, - 216.715980385, - 212.15587589999998, - 154.392584414, + 50.9111780358, + 83.9685014326, + 150.37999333399998, + 228.73693942799997, + 237.54177942799998, + 243.36666942799997, + 245.577709428, + 244.55885942799998, + 244.07546121000001, + 242.37407030000003, + 233.819980385, + 221.3126759, + 156.328864414, 158.244194051, 150.775396235, 60.9083742719, @@ -50233,19 +50233,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.27371842749999, - 79.7030349272, - 137.58502511700001, - 208.60272942799998, - 212.40612942799999, - 215.15607942799997, - 216.53253942799998, - 216.84825942799998, - 216.00717942799997, - 214.494429428, - 211.68231942799997, - 207.581469428, - 153.715188716, + 50.70563842749999, + 83.73663492719999, + 149.895545117, + 228.12896942799998, + 236.91792942799998, + 242.94207942799997, + 245.33705942799998, + 244.97661942799996, + 241.637779428, + 236.483509428, + 228.11059942799997, + 216.454589428, + 155.676708716, 158.210112264, 150.775396235, 60.9083742719, @@ -50257,20 +50257,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.22227223070001, - 79.81816348759999, - 137.526598958, - 208.06161942799997, - 211.66011942799997, - 214.60101942799997, - 216.45498942799998, - 217.264029428, - 216.87528942799997, - 215.26395942799996, - 212.24994942799998, - 207.970179428, - 153.909918716, - 158.31751226400002, + 50.720432230700006, + 83.92756348759998, + 149.485038958, + 226.58125942799998, + 234.93327942799996, + 241.54949942799996, + 245.08574942799999, + 245.797429428, + 243.37032942799996, + 237.917199428, + 229.09534942799996, + 217.04313942799996, + 155.911958716, + 158.32811226400003, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50281,20 +50281,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 49.114679129200006, - 62.2823684835, - 102.5463880478, - 160.241538716, - 211.163679428, - 214.372929428, - 215.098839428, - 218.69040942799998, - 218.113689428, - 212.40420942799997, - 210.98211942799998, - 206.801379428, - 135.604019138, - 105.253243531, + 49.6489191292, + 66.5767684835, + 115.1725080478, + 179.26081871600002, + 233.068999428, + 240.36564942799998, + 241.079319428, + 248.914729428, + 246.03112942799999, + 231.55072942799998, + 226.60359942799997, + 215.250099428, + 137.699699138, + 105.28864353099999, 115.34805707999999, 79.9415925372, 31.876305895599998, @@ -50305,20 +50305,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.9119787988, - 14.3875787988, - 67.0268578607, - 71.6910164709, - 129.611859561, - 132.46338956099999, - 169.872108716, - 156.71719871599998, - 158.491368716, - 168.684318716, - 165.444558716, - 120.690999561, - 83.35137040560001, - 21.6798823472, + 12.6229387988, + 18.9734187988, + 77.8120178607, + 89.90397647089999, + 154.98941956099998, + 161.217229561, + 200.48966871599998, + 167.131678716, + 171.097928716, + 193.051798716, + 183.64663871599998, + 128.095159561, + 85.8296904056, + 21.7243623472, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -50329,20 +50329,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 51.139733947900005, - 81.05614448360001, - 138.817654377, - 203.97658157700002, - 213.89883942799997, - 217.09413942799998, - 219.034719428, - 217.17228942799997, - 207.212469428, - 198.62745942799998, - 210.67866942799998, - 204.705129428, - 154.995918716, - 158.521662264, + 51.9819339479, + 85.8689844836, + 151.884334377, + 213.95134157700002, + 240.32683942799997, + 247.20157942799997, + 250.88147942799998, + 245.00076942799998, + 220.47282942799998, + 201.447499428, + 225.98202942799998, + 212.163969428, + 157.008998716, + 158.60622226400002, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50353,20 +50353,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.7002622095, - 80.2956299748, - 138.64068079499998, - 209.87163942799998, - 209.44614942799998, - 216.86589942799998, - 218.46489942799997, - 218.85615942799998, - 211.807299428, - 212.34009942799997, - 212.68122942799997, - 208.137249428, - 153.969078716, - 158.292912264, + 51.3553022095, + 84.8613099748, + 152.00492079499998, + 230.823159428, + 227.86054942799998, + 246.60361942799997, + 249.44561942799996, + 249.140119428, + 231.184339428, + 231.35465942799996, + 229.86210942799997, + 217.382889428, + 156.120398716, + 158.369152264, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50377,20 +50377,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.6628606977, - 80.3724168403, - 138.03168731800002, - 208.765929428, - 212.568849428, - 215.44998942799998, - 217.39230942799998, - 218.14612649900002, - 218.385677239, - 218.49252945900002, - 215.236396673, - 210.421856315, - 156.12857535, - 158.32987226400002, + 51.3785006977, + 84.8168968403, + 150.23952731800003, + 227.915409428, + 236.88504942799997, + 243.28486942799998, + 247.00094942799998, + 247.49624649900002, + 245.59103723899997, + 241.34372945900003, + 232.147716673, + 219.528456315, + 158.54789535, + 158.38799226400002, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50401,20 +50401,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.8375614866, - 80.83517825669999, - 138.516824684, - 209.27616942799997, - 213.17277942799998, - 216.35754942799997, - 222.394415314, - 229.09857501300002, - 229.776666251, - 228.319100404, - 225.175834469, - 220.118300294, - 160.618736598, - 159.33515752699998, + 51.7383614866, + 85.58977825669999, + 150.893864684, + 228.851689428, + 238.229419428, + 245.19514942799998, + 253.014935314, + 259.425135013, + 257.623906251, + 252.017860404, + 242.706834469, + 229.506140294, + 162.784496598, + 159.45415752699998, 150.791728013, 60.9083742719, 33.107087900699995, @@ -50425,20 +50425,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 50.5249545988, - 80.455761344, - 138.340539996, - 209.319729428, - 213.25899942799998, - 218.017521042, - 230.218708079, - 235.617552306, - 235.341554652, - 235.303100605, - 231.98097854300002, - 226.74706085699998, - 169.006460476, - 161.71835682, + 51.3603945988, + 85.087841344, + 150.967459996, + 229.10864942799998, + 238.45899942799997, + 246.792641042, + 260.653868079, + 265.723752306, + 263.222474652, + 259.020540605, + 249.70897854300003, + 236.27890085699997, + 171.013820476, + 161.85811682, 151.38688413900002, 60.9083742719, 33.107087900699995, @@ -50449,20 +50449,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 49.0130698924, - 62.6579692564, - 103.1070178982, - 161.451468716, - 213.66345942799998, - 216.90177942799997, - 218.835323196, - 231.23721304100002, - 240.503941338, - 240.45036248, - 237.21531477399998, - 232.106594924, - 151.851862811, - 104.406699483, + 49.7350698924, + 67.2095292564, + 116.0059778982, + 181.728988716, + 239.207459428, + 246.42265942799997, + 249.989443196, + 261.935373041, + 268.803021338, + 264.43520248, + 255.12019477399997, + 241.721754924, + 153.82558281099998, + 104.52097948299999, 115.584317649, 79.9207179249, 31.876305895599998, @@ -50473,20 +50473,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.8457087988, - 14.4686087988, - 68.5670790773, - 74.00513168570001, - 131.108769561, - 133.88136956099999, - 171.011058716, - 171.437418716, - 170.700571639, - 169.16924128699998, - 166.10838786300002, - 126.169842394, - 84.49617040560001, - 18.793864497799998, + 12.551588798800001, + 19.2269687988, + 82.62531907729999, + 95.81293168570001, + 158.234009561, + 164.214369561, + 202.721018716, + 202.478418716, + 199.119171639, + 193.41828128699999, + 184.309467863, + 135.991802394, + 86.61701040560001, + 18.9456644978, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -50497,20 +50497,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.4693779058, - 80.63126734289999, - 138.970476286, - 210.111189428, - 214.09791942799998, - 217.02771942799998, - 218.88072942799997, - 221.167755995, - 224.59250674799998, - 223.27303661399998, - 220.324899617, - 215.910882219, - 162.140696222, - 156.107785927, + 51.3264179058, + 85.34562734289999, + 152.329076286, + 230.938309428, + 240.18135942799998, + 246.57391942799998, + 249.99392942799997, + 251.89603599499998, + 252.92846674799998, + 247.42595661399997, + 238.366259617, + 225.671842219, + 164.420576222, + 156.291785927, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50521,20 +50521,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.5495461325, - 80.8630179939, - 138.940340338, - 210.151389428, - 214.34259942799997, - 217.412679428, - 219.27390942799997, - 217.47794431900002, - 203.53922912000002, - 215.504553596, - 217.429277366, - 210.936464344, - 155.099813783, - 155.288514809, + 51.5851861325, + 85.71609799390001, + 152.059140338, + 230.849909428, + 240.61871942799996, + 247.321879428, + 250.760909428, + 244.82294431900002, + 209.35486912000002, + 233.49251359599998, + 235.377717366, + 220.613144344, + 157.466413783, + 155.476114809, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50545,20 +50545,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.3893775468, - 80.5836548883, - 138.73301913800003, - 209.79696942799998, - 213.68340942799998, - 216.65100942799998, - 218.54202942799998, - 219.36027661999998, - 220.851620062, - 219.815454967, - 212.857127975, - 208.619728135, - 153.98631254000003, - 155.06179583, + 51.3634975468, + 85.2555748883, + 151.49869913800003, + 229.89148942799997, + 239.13252942799997, + 245.50172942799998, + 249.044589428, + 249.50559661999998, + 248.900460062, + 243.584534967, + 227.282967975, + 217.106808135, + 156.38711254000003, + 155.30223583, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50569,20 +50569,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.392280714900004, - 80.6309185336, - 138.73631315900002, - 209.96892942799997, - 214.197249428, - 217.35603942799997, - 219.31572942799997, - 220.07916942799997, - 219.37485942799998, - 219.14194506200002, - 216.47854712900002, - 211.874339175, - 155.630884564, - 155.589774414, + 51.314760714900004, + 85.24631853359999, + 151.46851315900003, + 230.30860942799995, + 240.179689428, + 247.13971942799998, + 250.81204942799997, + 251.29268942799996, + 248.02825942799998, + 243.581185062, + 234.727267129, + 221.708859175, + 157.76520456400002, + 155.778694414, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50593,20 +50593,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.363386501899996, - 80.59175109559999, - 138.965378147, - 210.03012942799998, - 213.66699942799997, - 216.04602942799997, - 217.400049428, - 217.77348942799998, - 217.403289428, - 215.754559042, - 212.95545013900002, - 208.918504729, - 155.429898716, - 155.747244414, + 51.10426650189999, + 85.04575109559998, + 151.984898147, + 230.33436942799997, + 238.89147942799997, + 244.08066942799996, + 246.52412942799998, + 246.350729428, + 244.061769428, + 238.512799042, + 230.11845013900003, + 218.273864729, + 157.345298716, + 155.94016441399998, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50617,20 +50617,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 49.439932168800006, - 63.127839989399995, - 103.8437932402, - 161.876506134, - 213.95611496400002, - 216.54044120199998, - 217.91190942799997, - 218.136699428, - 217.22727942799997, - 215.13216942799997, - 212.50551942799999, - 208.89501942799998, - 137.699909138, - 102.57878568199999, + 50.168172168800005, + 67.5621999894, + 116.8967132402, + 182.197426134, + 239.34731496400002, + 245.085961202, + 247.57622942799998, + 247.03709942799998, + 243.62619942799998, + 237.28892942799996, + 229.30115942799998, + 218.19413942799997, + 139.663389138, + 102.77306568200001, 115.355332177, 80.138469693, 31.876305895599998, @@ -50641,20 +50641,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.8717187988, - 14.495608798800001, - 68.665645004, - 73.1376641966, - 129.72851058, - 132.173439561, - 168.805698716, - 168.749118716, - 167.701548716, - 166.605528716, - 164.463948716, - 125.161359561, - 84.30912040560001, - 19.041994497799998, + 12.6168387988, + 18.8145287988, + 81.26824500400001, + 92.7641441966, + 154.39419058000001, + 159.74135956100002, + 197.283218716, + 196.260518716, + 192.677228716, + 188.334968716, + 181.198508716, + 134.271479561, + 86.3370404056, + 19.2480344978, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -50665,20 +50665,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 51.002273069999994, - 80.8735503631, - 138.666920261, - 209.073579428, - 212.84214942799997, - 215.74617942799998, - 217.61943942799996, - 218.393259428, - 217.96629942799999, - 216.26709942799997, - 213.337119428, - 209.11920942799998, - 155.368398716, - 155.785854414, + 51.73659306999999, + 85.09247036309999, + 150.792560261, + 227.842739428, + 236.72138942799998, + 243.13469942799998, + 246.68063942799995, + 247.287899428, + 244.76813942799998, + 239.05865942799997, + 230.396919428, + 218.35528942799996, + 157.297798716, + 155.987094414, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50689,20 +50689,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.7532324193, - 80.76932259050001, - 138.799880935, - 209.30187942799998, - 212.75637942799997, - 215.36799666299999, - 219.579923367, - 225.57943726800002, - 228.07296944400002, - 227.109016094, - 224.56715384, - 220.22341356200002, - 165.823790737, - 157.947737689, + 51.4342724193, + 84.99568259050001, + 151.205520935, + 228.35131942799998, + 236.49957942799998, + 242.13891666299997, + 247.505963367, + 253.11963726800002, + 253.486369444, + 248.930336094, + 241.14763384, + 229.229933562, + 167.88159073699998, + 158.166777689, 150.810815219, 60.9083742719, 33.107087900699995, @@ -50713,20 +50713,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.303318497199996, - 80.4560329628, - 138.40877913800003, - 209.022999428, - 212.72487942799998, - 217.189553797, - 227.13267675799997, - 232.015446677, - 231.73629104699998, - 230.22415879700003, - 227.305174017, - 223.000893982, - 167.33043829, - 157.715443835, + 51.1063584972, + 84.6251929628, + 150.31777913800002, + 227.670599428, + 236.27315942799999, + 244.316513797, + 255.82519675799998, + 260.585966677, + 258.258651047, + 252.84911879700005, + 244.329654017, + 232.30401398200001, + 169.24599829, + 157.953283835, 150.931600333, 60.9083742719, 33.107087900699995, @@ -50737,20 +50737,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.2207644176, - 80.5555927321, - 137.36320285, - 209.842209428, - 213.78450942799998, - 212.71074942799999, - 218.50125942799997, - 219.03603942799998, - 218.496579428, - 219.776863089, - 219.63739296699998, - 215.323866274, - 158.861555438, - 156.15292753300002, + 50.9250044176, + 84.78435273209999, + 146.90896285, + 229.488169428, + 238.75706942799997, + 235.132149428, + 248.51457942799996, + 248.57191942799997, + 245.812899428, + 243.109343089, + 237.05551296699997, + 224.79582627399998, + 160.87063543800002, + 156.42800753300003, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50761,20 +50761,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.425342290900005, - 80.7830653116, - 139.16149263699998, - 210.226359428, - 214.26768942799998, - 217.253559428, - 219.09576942799998, - 219.74754942799999, - 219.28269942799997, - 217.49040942799996, - 214.37736942799998, - 210.08706942799998, - 156.202938716, - 156.234594414, + 51.322902290900004, + 85.2247853116, + 152.005012637, + 230.465839428, + 239.836689428, + 246.36419942799998, + 249.77324942799999, + 250.05750942799997, + 247.41593942799997, + 241.427449428, + 232.32396942799997, + 219.84046942799998, + 158.234618716, + 156.534154414, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50785,20 +50785,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 49.6735576258, - 63.533624497400005, - 103.9969963564, - 162.049098716, - 214.23087942799998, - 217.378029428, - 219.14883942799997, - 219.781329428, - 219.180669428, - 217.330659428, - 214.28142942799997, - 209.891649428, - 138.167309138, - 99.49902783259999, + 50.7368776258, + 68.2126644974, + 116.7913163564, + 182.195418716, + 239.82835942799997, + 246.631869428, + 249.86323942799999, + 250.11448942799998, + 247.15286942799997, + 241.081779428, + 232.11022942799997, + 219.560209428, + 140.422509138, + 99.84662783259999, 115.34805707999999, 79.9207179249, 31.876305895599998, @@ -50809,20 +50809,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 12.1358387988, - 14.9520887988, - 68.51546275140001, - 72.91571527149999, - 129.618339561, - 132.430569561, - 169.85166412799998, - 187.628259622, - 185.232517984, - 175.632571809, - 172.83539619799998, - 127.18234197299999, - 85.05771426679999, - 16.1860366483, + 13.1689587988, + 19.505928798800003, + 80.90470275140001, + 92.2083552715, + 153.766539561, + 160.001009561, + 198.71006412799997, + 216.020419622, + 211.703477984, + 198.266171809, + 189.981276198, + 136.628501973, + 87.15307426679999, + 16.5335166483, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -50833,20 +50833,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.9727887988, - 14.779198798800001, - 67.9617720129, - 72.7880317235, - 147.193759237, - 152.973750793, - 185.806681839, - 187.643761353, - 189.26410040199997, - 188.04566254600002, - 185.03200227099998, - 142.36624695799998, - 94.3874616743, - 16.040236648300002, + 12.8471887988, + 19.0737187988, + 80.1571320129, + 91.8204317235, + 171.044559237, + 180.083710793, + 214.10140183899998, + 215.337881353, + 214.93586040199997, + 210.01558254600002, + 201.633762271, + 151.45336695799998, + 96.6015416743, + 16.3873966483, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -50857,20 +50857,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.0811195472, - 80.59332040560001, - 138.644489138, - 209.868120458, - 226.672012636, - 252.62070249700002, - 272.048099723, - 281.218631334, - 276.964948286, - 272.961639114, - 262.407660381, - 251.07458756900002, - 190.176020922, - 180.12419473000003, + 50.994599547199996, + 84.92648040560002, + 150.54976913800002, + 228.484720458, + 250.315452636, + 279.612662497, + 300.540939723, + 309.416831334, + 297.520508286, + 295.291239114, + 279.128060381, + 259.521947569, + 192.584620922, + 180.52399473000003, 168.73154143, 60.9083742719, 33.107087900699995, @@ -50881,20 +50881,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.2008740344, - 80.47863040560001, - 139.356345961, - 238.446641885, - 250.74848305, - 259.570501529, - 264.20418135399996, - 266.56765470899995, - 266.814682398, - 264.196323937, - 259.317931133, - 250.760720541, - 189.494749218, - 178.345466258, + 51.284314034400005, + 84.54119040560002, + 151.392185961, + 257.26236188499996, + 274.46780305000004, + 286.58546152900004, + 292.821741354, + 294.83837470899994, + 293.057162398, + 286.65736393699996, + 276.155171133, + 260.056120541, + 191.77082921800002, + 178.75186625799998, 166.82110053099998, 60.9083742719, 33.107087900699995, @@ -50905,20 +50905,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.1903740344, - 80.4727804056, - 137.26847913800003, - 204.061689428, - 214.016346553, - 226.396612345, - 231.81207218400002, - 234.050867819, - 228.173945165, - 238.243661875, - 230.300245705, - 235.10576928599997, - 175.182639454, - 161.914825581, + 51.2603340344, + 84.44906040560001, + 146.25207913800003, + 213.855769428, + 234.533786553, + 250.167692345, + 251.789472184, + 247.689467819, + 232.704065165, + 253.81654187499998, + 237.34456570499998, + 244.40840928599997, + 177.53547945399998, + 162.369625581, 151.862205698, 60.9083742719, 33.107087900699995, @@ -50929,20 +50929,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.3329413978, - 80.5262098394, - 138.510899138, - 209.43087942799997, - 212.86626942799998, - 215.54388942799997, - 217.509489428, - 216.375159428, - 211.83078942799997, - 213.233362943, - 211.60663880200002, - 205.84271401899997, - 153.133859671, - 152.249526565, + 51.3107813978, + 84.6430098394, + 150.06357913800002, + 228.25339942799997, + 236.36730942799997, + 242.08180942799996, + 245.96464942799997, + 242.238559428, + 230.65026942799997, + 232.469402943, + 226.95711880200002, + 213.63667401899997, + 155.692779671, + 152.720966565, 150.775396235, 60.9083742719, 33.107087900699995, @@ -50953,20 +50953,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 49.605652087100005, - 63.0401695204, - 101.7921215667, - 154.738488716, - 209.78796942799997, - 212.37012942799998, - 214.87707942799997, - 215.16351942799997, - 214.632849428, - 205.78047942799998, - 205.047969428, - 203.09967942799997, - 133.41215913800002, - 99.41997783259998, + 50.505972087100005, + 66.85784952040001, + 111.1152415667, + 163.122408716, + 228.09496942799996, + 233.922249428, + 239.49399942799997, + 239.24323942799998, + 236.95336942799997, + 216.69271942799998, + 214.467649428, + 209.33763942799996, + 135.65319913800002, + 99.89477783259998, 115.34805707999999, 79.9207179249, 31.876305895599998, @@ -50977,20 +50977,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 12.0745187988, - 14.8853087988, - 68.0019089945, - 72.3362544145, - 129.101469561, - 131.631969561, - 168.080478716, - 167.917488716, - 167.227068716, - 166.059888716, - 163.793898716, - 124.579569561, - 84.51525040560001, - 16.4184166483, + 13.037758798799999, + 19.0782287988, + 79.5651489945, + 90.57901441450001, + 152.334829561, + 157.835569561, + 195.010998716, + 193.81232871600002, + 191.025708716, + 186.645488716, + 179.533698716, + 133.222129561, + 86.75341040560001, + 16.924256648300002, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51001,20 +51001,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.4294850392, - 80.7384093869, - 138.594091004, - 209.04498942799998, - 212.69868942799997, - 215.49543942799997, - 217.30716942799998, - 218.09523942799999, - 217.722849428, - 216.10692942799997, - 213.27294942799998, - 209.43114942799997, - 155.983278716, - 153.38433656499998, + 51.3268850392, + 84.7349293869, + 150.13433100400002, + 227.241109428, + 235.75164942799995, + 241.90315942799998, + 245.33372942799997, + 246.043599428, + 243.751089428, + 238.33008942799998, + 229.98526942799998, + 218.73078942799998, + 158.226718716, + 153.890896565, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51025,20 +51025,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.427940823, - 79.52403703680001, - 135.617921597, - 200.46279942799998, - 201.42483942799998, - 212.86974942799998, - 210.968199428, - 218.406249428, - 218.31237942799999, - 212.29872942799997, - 213.74976942799998, - 209.28129942799998, - 155.50498871599999, - 152.58177656499998, + 51.192820823, + 82.01971703680002, + 142.28364159699998, + 205.51043942799998, + 207.626519428, + 235.01978942799997, + 230.043319428, + 246.782849428, + 244.94341942799997, + 230.34752942799997, + 230.95344942799997, + 218.85157942799998, + 158.270068716, + 153.13109656499998, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51049,20 +51049,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.781083639600006, - 81.0532939816, - 139.150489733, - 209.986899428, - 213.99633942799997, - 216.960219428, - 218.87181942799998, - 219.626583041, - 219.370587833, - 218.24078091299998, - 215.23682580699997, - 210.968332987, - 156.48098889, - 153.463536565, + 51.7869636396, + 85.21617398160001, + 151.263929733, + 229.39921942799998, + 238.74177942799997, + 245.266579428, + 248.87673942799998, + 249.386983041, + 246.997307833, + 241.742700913, + 232.91418580699997, + 220.716252987, + 158.88878889, + 154.056536565, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51073,20 +51073,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.3892615735, - 81.11343869219999, - 139.728907983, - 210.91632942799998, - 215.10495942799997, - 218.16432942799997, - 220.950497316, - 225.633319953, - 227.993108629, - 227.651329878, - 224.48564794799998, - 220.147628757, - 165.665398145, - 155.083805133, + 51.3129415735, + 85.4275186922, + 152.731627983, + 231.50940942799997, + 241.38975942799996, + 248.11596942799997, + 252.56341731600003, + 256.886079953, + 256.73690862899997, + 252.14068987800002, + 242.95008794799998, + 230.47414875700002, + 168.031758145, + 155.658685133, 150.817551839, 60.9083742719, 33.107087900699995, @@ -51097,20 +51097,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.4027891309, - 81.20479915760001, - 140.07586903799998, - 211.216973499, - 215.29938942799998, - 218.26521942799997, - 219.79200942799997, - 219.11499942799998, - 219.65406942799999, - 217.81395942799998, - 214.78326942799998, - 210.67155942799997, - 157.054668716, - 154.047846565, + 51.239189130899994, + 85.51939915759999, + 153.24930903799998, + 232.183573499, + 241.81878942799997, + 248.303619428, + 250.95572942799998, + 248.36479942799997, + 247.916629428, + 241.87163942799998, + 232.93446942799997, + 220.72907942799998, + 159.33926871600002, + 154.585486565, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51121,20 +51121,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 49.071385012099995, - 63.249040936499995, - 103.9241655645, - 162.094158716, - 213.91152942799997, - 216.43776942799997, - 217.893879428, - 218.119509428, - 218.916259566, - 218.048255699, - 215.442724831, - 212.067750009, - 138.69908913800003, - 100.62429783259999, + 49.8832650121, + 67.3768809365, + 116.3566855645, + 181.819318716, + 238.53248942799996, + 244.07188942799996, + 246.74879942799998, + 246.320629428, + 244.792259566, + 239.918135699, + 232.123084831, + 221.610350009, + 140.924289138, + 101.22005783259999, 115.34805707999999, 79.9207179249, 31.876305895599998, @@ -51145,20 +51145,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.9682887988, - 14.902648798800001, - 68.48960930850001, - 73.1078417411, - 129.799209561, - 132.233109561, - 168.964848716, - 169.290828716, - 168.911358716, - 167.646138716, - 165.157158716, - 126.059139561, - 85.5842104056, - 17.1408766483, + 12.847648798800002, + 18.904488798800003, + 80.5411693085, + 92.1847617411, + 153.804369561, + 159.20362956099999, + 197.01904871600001, + 196.79258871599998, + 194.511238716, + 189.78765871599998, + 182.070238716, + 135.646059561, + 87.9122904056, + 17.7120366483, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51169,20 +51169,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.257319067800005, - 80.7244448303, - 138.789606984, - 209.54016942799998, - 213.34035942799997, - 216.280509428, - 218.185345801, - 219.028287075, - 220.20571656700002, - 219.97210168300003, - 217.036640938, - 213.045407001, - 157.09301604799998, - 153.931209169, + 51.0935190678, + 84.59672483029999, + 150.45200698399998, + 228.16540942799998, + 237.14551942799997, + 243.65010942799998, + 247.272105801, + 248.00860707500001, + 247.27979656700003, + 243.14354168300002, + 234.576760938, + 222.923447001, + 159.424096048, + 154.509329169, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51193,20 +51193,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.199621396, - 80.94346534520001, - 139.10384913800002, - 210.33534942799997, - 213.619959428, - 216.50691942799997, - 219.098796268, - 219.820898524, - 220.805305373, - 222.29668609699996, - 219.919018508, - 215.72076080099998, - 159.167247287, - 154.003062167, + 51.038741396, + 85.0919053452, + 151.153809138, + 230.02718942799999, + 237.827559428, + 244.179239428, + 249.343676268, + 249.79757852400002, + 248.54834537300002, + 246.00788609699998, + 237.797258508, + 225.78004080099998, + 161.548127287, + 154.646982167, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51217,20 +51217,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.237008105899996, - 80.7571905661, - 139.27643913800003, - 210.20991942799998, - 214.064019428, - 216.99081942799998, - 218.93870815600002, - 222.648332283, - 223.636573445, - 224.021618933, - 223.15963945, - 218.805192435, - 161.979038738, - 151.118467099, + 51.22468810589999, + 84.8175505661, + 151.52355913800002, + 229.68683942799998, + 238.786019428, + 245.235019428, + 248.807748156, + 252.254772283, + 251.050253445, + 247.36601893300002, + 240.76015944999997, + 228.719512435, + 164.308238738, + 151.73502709899998, 150.85270266700002, 60.9083742719, 33.107087900699995, @@ -51241,20 +51241,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.2335989993, - 80.83485796370002, - 139.12670913800002, - 209.85318942799998, - 213.221319428, - 215.43078942799997, - 216.37611942799998, - 216.685020148, - 216.76354195199997, - 215.832678943, - 213.390581207, - 209.75601139799997, - 156.315888716, - 150.248838716, + 51.1412789993, + 84.81849796370001, + 151.166789138, + 228.867269428, + 236.893519428, + 241.81918942799996, + 243.49483942799998, + 243.32366014800002, + 242.01094195199997, + 237.93723894299998, + 230.310221207, + 219.37089139799997, + 158.80072871599998, + 150.90495871599998, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51265,20 +51265,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.249482889199996, - 80.6816388873, - 138.78368913800003, - 209.19690942799997, - 212.93853942799998, - 215.76879942799997, - 218.214716009, - 222.35308483, - 224.673803153, - 225.637390709, - 222.949853708, - 219.059624941, - 164.771160882, - 154.675154506, + 51.197482889199996, + 84.5731988873, + 150.36792913800002, + 227.41162942799997, + 236.16453942799998, + 242.42383942799995, + 246.472876009, + 250.46376483, + 250.824523153, + 248.02679070899998, + 239.683533708, + 228.56798494100002, + 167.338040882, + 155.287074506, 151.034739169, 60.9083742719, 33.107087900699995, @@ -51289,20 +51289,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 48.7851324232, - 62.8409713891, - 103.4733799831, - 161.564448716, - 213.706341674, - 222.573136973, - 233.104837493, - 241.74014280400002, - 242.947374761, - 241.08794659400002, - 238.071734906, - 233.18228244699998, - 154.094095754, - 100.4719257223, + 49.680412423199996, + 66.6375713891, + 115.1840599831, + 180.440808716, + 237.82918167399998, + 250.188816973, + 262.356437493, + 270.81970280400003, + 269.989894761, + 264.208346594, + 255.57053490599998, + 243.12368244699996, + 156.520055754, + 101.1102057223, 115.63158102499999, 79.9207179249, 31.876305895599998, @@ -51313,20 +51313,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 12.0806087988, - 14.8990787988, - 68.10214082819999, - 72.93331082819999, - 129.670059561, - 132.115509561, - 170.602602847, - 174.613643437, - 177.73272989600002, - 179.652463199, - 176.908572379, - 128.087317652, - 85.68100874379999, - 13.7137187988, + 13.0586087988, + 18.829438798800002, + 79.87778082819999, + 91.7208308282, + 153.38697956099998, + 158.80642956100002, + 198.36248284700002, + 201.98276343700002, + 203.36052989600003, + 201.854743199, + 193.894452379, + 137.838957652, + 88.20620874379999, + 14.3978787988, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51337,20 +51337,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.2533748603, - 80.66899937619999, - 138.94916913800003, - 209.704239428, - 213.17793942799997, - 215.42157942799997, - 218.680998184, - 221.20605882499999, - 221.01806789, - 219.81279614, - 217.129598806, - 213.323301683, - 156.975133992, - 150.749693908, + 51.1982548603, + 84.54187937619999, + 150.69920913800004, + 228.45991942799998, + 236.68973942799997, + 241.63757942799998, + 246.028518184, + 248.23225882499997, + 246.42222789, + 241.90199614, + 234.02211880599998, + 222.989661683, + 159.563813992, + 151.431093908, 150.775396235, 60.9083742719, 33.107087900699995, @@ -51361,20 +51361,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.5242404576, - 80.83067630480001, - 138.72653913800002, - 209.213019428, - 213.40300035299998, - 219.79228493099998, - 222.685215904, - 230.99390909800002, - 234.038903745, - 232.407793817, - 229.401718775, - 225.13855962399998, - 170.65223270100003, - 155.925664929, + 51.6532804576, + 84.8968763048, + 150.16137913800003, + 227.379739428, + 236.34076035299998, + 246.00248493099997, + 250.542575904, + 258.760029098, + 259.89206374500003, + 254.383033817, + 246.191638775, + 234.72703962399999, + 173.20763270100002, + 156.58510492899998, 151.363440978, 60.9083742719, 33.107087900699995, @@ -51385,20 +51385,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.286566543, - 80.67784156200001, - 138.67208913800002, - 209.26971942799997, - 212.81334942799998, - 215.90013165000002, - 223.576306618, - 229.55016847, - 231.00215562799997, - 229.391163121, - 226.28906208, - 222.012829067, - 168.25710737500003, - 154.193048814, + 51.229886543, + 84.53580156200002, + 150.02436913800003, + 227.47835942799998, + 235.76978942799997, + 241.98361165000003, + 250.957626618, + 256.83792846999995, + 256.61639562799996, + 251.402803121, + 243.05662208, + 231.583909067, + 170.76826737500002, + 154.82560881400002, 151.080756455, 60.9083742719, 33.107087900699995, @@ -51409,20 +51409,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.241983677700006, - 80.60416869950001, - 138.79046913800002, - 209.44101942799998, - 213.163659428, - 219.31060520700004, - 229.966906469, - 231.533636376, - 233.953117487, - 234.104150845, - 230.907751345, - 226.11890841099998, - 169.54413235, - 153.239797549, + 51.16254367770001, + 84.35288869950001, + 150.31046913800003, + 227.91673942799997, + 236.64821942799998, + 246.17700520700004, + 258.462866469, + 259.844836376, + 260.290357487, + 256.676310845, + 248.08275134500002, + 235.94770841099998, + 172.02117235, + 153.890317549, 151.183617123, 60.9083742719, 33.107087900699995, @@ -51433,20 +51433,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 49.8883940344, - 80.40246040560001, - 138.650309138, - 209.281869428, - 212.862472608, - 219.422642831, - 230.459015085, - 239.163962062, - 243.029792531, - 243.38159987499998, - 239.486122769, - 234.73796488699998, - 176.980390533, - 161.088968754, + 50.7188740344, + 83.97938040560001, + 150.000589138, + 227.483029428, + 235.95243260799998, + 245.867442831, + 258.528775085, + 267.160202062, + 269.180432531, + 265.836599875, + 256.585242769, + 244.57292488699997, + 179.474430533, + 161.735248754, 151.965881156, 60.9083742719, 33.107087900699995, @@ -51457,20 +51457,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 48.631752029299996, - 62.6656608282, - 103.14559998310001, - 160.937298716, - 213.597697879, - 238.87502698400002, - 248.81399393, - 247.666353528, - 248.730831783, - 249.174996023, - 247.269021673, - 242.071316951, - 157.466443595, - 100.5951357412, + 49.4301520293, + 66.2139008282, + 114.39815998310002, + 178.96817871599998, + 236.445617879, + 264.414706984, + 276.26427393, + 275.342793528, + 274.639471783, + 271.503996023, + 263.845061673, + 251.531476951, + 159.979163595, + 101.1970957412, 115.770391238, 79.9207179249, 31.876305895599998, @@ -51481,20 +51481,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 12.0000887988, - 14.512078798800001, - 66.8514708282, - 71.1673608282, - 128.966919561, - 131.658399561, - 168.535608716, - 169.781544382, - 170.253305514, - 171.374806822, - 169.22024794700002, - 126.00721000099999, - 85.0462695279, - 13.5860387988, + 12.8722487988, + 18.0369587988, + 76.7395108282, + 87.4238808282, + 151.721319561, + 157.67455956100002, + 195.837088716, + 196.970464382, + 192.778745514, + 191.38780682200002, + 184.14004794700003, + 134.121450001, + 87.72246952789999, + 14.2346387988, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51505,20 +51505,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.0808278153, - 80.3423818258, - 137.89907913800002, - 208.265109428, - 211.834149428, - 216.08451587499997, - 224.40625812599998, - 231.6672311, - 238.74632691600002, - 241.069890944, - 237.61569525700003, - 232.319658814, - 171.130465056, - 153.696118529, + 50.9615878153, + 84.0062218258, + 148.158159138, + 224.96878942799998, + 233.475309428, + 242.76067587499995, + 251.86981812599998, + 258.3336711, + 264.758246916, + 263.96253094400004, + 255.060615257, + 242.390298814, + 173.67154505599999, + 154.32071852899998, 151.327943899, 60.9083742719, 33.107087900699995, @@ -51529,20 +51529,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.0925324508, - 80.29914665049999, - 138.13745913800003, - 208.31706942799997, - 211.831479428, - 214.856723764, - 226.94017575200002, - 234.123143255, - 233.72229941400002, - 225.222351787, - 220.460380137, - 224.938010619, - 168.01081926999998, - 151.48778640400002, + 50.9452524508, + 83.78242665049999, + 148.83401913800003, + 225.32866942799996, + 233.59791942799998, + 239.903323764, + 253.60909575199997, + 260.636303255, + 258.363539414, + 238.78659178700002, + 228.46930013699998, + 234.181650619, + 170.68425926999998, + 152.17494640400002, 151.00708229, 60.9083742719, 33.107087900699995, @@ -51553,20 +51553,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.0914031366, - 80.31923752189999, - 138.221579138, - 208.78011942799998, - 212.36358942799998, - 216.43739993, - 224.034547069, - 231.632232651, - 234.785550138, - 233.271933119, - 230.08503644700002, - 225.39048806500003, - 167.80829523699998, - 152.33883689299998, + 50.9203231366, + 83.8559575219, + 148.99669913800003, + 226.33719942799996, + 234.729749428, + 242.20355993, + 251.42890706900002, + 259.019632651, + 260.37471013799995, + 255.28297311900002, + 246.84015644700003, + 235.06804806500003, + 170.476935237, + 153.01327689299998, 151.256145403, 60.9083742719, 33.107087900699995, @@ -51577,20 +51577,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.256872119099995, - 80.4785333029, - 138.75482913800002, - 220.918121727, - 240.836541448, - 253.42702507400003, - 261.990144607, - 269.354542666, - 270.619616257, - 267.022878208, - 260.327961456, - 252.19627518299998, - 190.674698702, - 176.513131821, + 51.13007211909999, + 84.14773330290001, + 150.24382913800002, + 239.663161727, + 264.924661448, + 281.249465074, + 291.550264607, + 298.683142666, + 297.867616257, + 290.37895820800003, + 278.064961456, + 262.435795183, + 193.292218702, + 177.157011821, 168.608823255, 60.9083742719, 33.107087900699995, @@ -51601,20 +51601,20 @@ 33.107087900699995, 33.107087900699995, 26.2544522017, - 50.0095040344, - 80.50776040560001, - 138.99435926100003, - 221.50183778, - 234.38400820700002, - 243.008849203, - 250.093531283, - 256.82519936200003, - 263.716102722, - 266.615755248, - 262.04137925900005, - 252.685717772, - 191.848164761, - 174.236598963, + 50.9479840344, + 84.23040040560001, + 150.80891926100003, + 240.48091778, + 258.182128207, + 269.671409203, + 278.17609128299995, + 284.89719936200004, + 290.15054272200007, + 289.613595248, + 279.716899259, + 262.947237772, + 194.464244761, + 174.872158963, 165.668991833, 60.9083742719, 33.107087900699995, @@ -51625,20 +51625,20 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 48.6889575705, - 62.550640828199995, - 103.1431648046, - 172.014766816, - 239.353975169, - 254.13127803, - 262.299834328, - 267.885922589, - 269.245482488, - 269.16556390899996, - 265.893019582, - 257.035313349, - 170.75280887999998, - 115.480914462, + 49.4597975705, + 65.9841208282, + 114.4417248046, + 190.161646816, + 262.192895169, + 280.34071803, + 290.336274328, + 296.039042589, + 295.671282488, + 292.00512390899996, + 283.37453958200007, + 267.250633349, + 173.24876887999997, + 115.965794462, 120.306294849, 80.0698222023, 31.876305895599998, @@ -51649,20 +51649,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.7569387988, - 14.4641387988, - 67.9652208282, - 72.88576082819999, - 129.593619561, - 132.002619561, - 169.148958716, - 169.932918716, - 169.668318716, - 168.363048716, - 165.804168716, - 126.711699561, - 86.3945704056, - 14.4027887988, + 12.3779387988, + 17.7880587988, + 79.5950208282, + 91.7363208282, + 153.360099561, + 158.661659561, + 197.400438716, + 198.127318716, + 196.054438716, + 191.248848716, + 183.40532871599999, + 136.954219561, + 88.9498104056, + 14.906028798800001, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51673,20 +51673,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.9010206074, - 80.2647726716, - 138.85172913800002, - 209.80344942799996, - 213.53934942799998, - 216.26406942799997, - 218.09379942799998, - 220.60879601099998, - 222.752128518, - 226.388032019, - 226.101583909, - 221.99677513600002, - 168.289547081, - 161.318506646, + 50.5193406074, + 83.6135326716, + 150.54260913800002, + 228.84500942799997, + 237.71158942799997, + 243.73786942799998, + 247.24895942799998, + 249.628716011, + 249.850928518, + 249.78151201900002, + 244.062343909, + 232.43957513600003, + 170.848667081, + 161.80090664600002, 154.363492149, 60.9083742719, 33.107087900699995, @@ -51697,20 +51697,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.8322075843, - 80.23516914339999, - 138.774239138, - 209.53440942799998, - 219.308157101, - 234.20950134600002, - 239.557492488, - 244.853323563, - 248.267251777, - 250.642954514, - 247.97816974699998, - 242.61385375, - 183.948504526, - 168.732009641, + 50.4291275843, + 83.61708914339998, + 150.38867913800001, + 228.24296942799998, + 242.545917101, + 260.24178134600004, + 266.991932488, + 272.209243563, + 273.912571777, + 272.906354514, + 265.201409747, + 252.64017375, + 186.40602452599998, + 169.180249641, 160.18981846, 60.9083742719, 33.107087900699995, @@ -51721,20 +51721,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.7443687988, - 14.382268798800002, - 67.5652608282, - 72.06757082819999, - 128.155299561, - 130.709859561, - 164.40352871599998, - 168.737508716, - 167.734248716, - 166.425078716, - 163.921158716, - 125.377359561, - 85.0652704056, - 13.5560387988, + 12.3344487988, + 17.7057887988, + 78.76206082819999, + 89.8557308282, + 150.057579561, + 155.710299561, + 186.104008716, + 195.44098871600002, + 191.922528716, + 187.317318716, + 179.846038716, + 134.967079561, + 87.8757504056, + 14.198038798799999, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51745,20 +51745,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.905104034400004, - 80.10312040560001, - 137.82647913800002, - 208.236909428, - 211.66272942799998, - 214.29084942799997, - 218.310679876, - 224.850673624, - 225.72928156700002, - 229.50679749699998, - 226.861643367, - 222.588814263, - 168.622693468, - 158.64053992599997, + 50.7033840344, + 83.51644040560001, + 148.208519138, + 225.168229428, + 233.32700942799997, + 239.179329428, + 244.72127987599998, + 251.121113624, + 247.65648156700001, + 251.01603749699999, + 243.328763367, + 232.101014263, + 171.378893468, + 159.29917992599997, 151.86065946, 60.9083742719, 33.107087900699995, @@ -51769,20 +51769,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 50.1421040344, - 80.4918004056, - 137.70575913800002, - 208.10595942799998, - 211.57368942799997, - 214.28223942799997, - 216.129909428, - 215.254289791, - 219.133940637, - 222.833734126, - 220.686745777, - 216.75470980900002, - 163.122583892, - 156.929931202, + 51.1541440344, + 84.3618804056, + 147.93403913800003, + 224.88243942799997, + 233.15776942799997, + 239.18783942799996, + 242.786469428, + 238.299329791, + 240.924100637, + 244.294814126, + 237.083505777, + 226.345829809, + 166.060823892, + 157.661011202, 152.202488214, 60.9083742719, 33.107087900699995, @@ -51793,20 +51793,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 48.647982029299996, - 62.33278082819999, - 102.6173299831, - 160.627938716, - 212.577699428, - 215.50326942799998, - 224.443776824, - 243.413877708, - 255.418734226, - 255.739457406, - 251.888327036, - 246.367655698, - 161.858117237, - 107.483352838, + 49.4144220293, + 65.6946608282, + 113.3750099831, + 178.41721871599998, + 235.47621942799998, + 241.95426942799998, + 252.61053682399998, + 271.49427770799997, + 281.85377422600004, + 278.535897406, + 269.318127036, + 256.478695698, + 164.411957237, + 107.989512838, 116.39220425100001, 79.9769903236, 31.876305895599998, @@ -51817,20 +51817,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.7764987988, - 14.1744887988, - 67.34305082819999, - 72.3891408282, - 129.375579561, - 132.302949561, - 172.70835890799998, - 177.683153062, - 187.557619951, - 196.348288263, - 195.150329125, - 153.76723739099998, - 101.8339622606, - 14.2243187988, + 12.4003387988, + 17.3585687988, + 78.3781708282, + 90.7191808282, + 152.974659561, + 159.437349561, + 201.591318908, + 206.502873062, + 214.468739951, + 219.50816826300002, + 212.92692912500002, + 164.19775739099998, + 104.5304022606, + 14.7159187988, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -51841,20 +51841,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.8111440344, - 79.97841040560002, - 140.346441079, - 240.521485275, - 249.4560747, - 257.379869734, - 265.36576942600004, - 271.573892587, - 275.628757453, - 276.306144085, - 269.62544382, - 259.771185024, - 196.20649372999998, - 178.88221431, + 50.5272240344, + 83.28125040560002, + 151.183401079, + 258.316085275, + 272.1553947, + 283.466189734, + 293.22072942600005, + 299.375452587, + 301.686197453, + 298.769424085, + 286.59564381999996, + 269.77130502399996, + 199.32809372999998, + 179.62073431, 171.210388531, 60.9083742719, 33.107087900699995, @@ -51865,20 +51865,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.941434034400004, - 79.4922004056, - 141.918793455, - 231.71409532099997, - 253.78947572599998, - 265.833761945, - 268.19008299399997, - 272.90435755, - 275.051843452, - 274.087654618, - 278.24383339900004, - 270.53415038, - 206.043964198, - 189.829340774, + 50.6772340344, + 82.22552040560001, + 150.73955345500002, + 238.728375321, + 273.341995726, + 286.366201945, + 286.59320299399997, + 292.89047754999996, + 293.83468345200004, + 284.372294618, + 291.52311339900007, + 279.10919038000003, + 208.981164198, + 190.481060774, 179.807210874, 60.9083742719, 33.107087900699995, @@ -51889,20 +51889,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.9647440344, - 80.19987040560001, - 142.195214017, - 244.64488323700002, - 260.177946183, - 272.282762867, - 276.483718065, - 278.737319667, - 279.112514646, - 277.287434521, - 270.03286569899996, - 259.69318352799996, - 198.038210457, - 181.291531176, + 50.8294240344, + 83.80015040560001, + 153.168134017, + 262.977483237, + 283.95774618300004, + 300.043202867, + 306.034038065, + 308.06135966700003, + 306.591874646, + 301.069954521, + 288.28326569899997, + 270.341943528, + 200.783490457, + 181.765171176, 171.283026297, 60.9083742719, 33.107087900699995, @@ -51913,20 +51913,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.706144034400005, - 79.86069040560001, - 138.224429138, - 224.25944958700003, - 249.203182413, - 265.800745652, - 273.55131197400004, - 278.217774318, - 280.13218110800005, - 276.12798524699997, - 268.129454725, - 257.13433319, - 195.238125564, - 177.652649981, + 50.29334403440001, + 83.08513040560001, + 149.43386913800003, + 242.75308958700003, + 272.802222413, + 292.818105652, + 302.28443197400003, + 306.85985431800003, + 307.01626110800004, + 299.41730524699994, + 286.03085472500004, + 267.54065319, + 197.886285564, + 178.09520998099998, 167.839345221, 60.9083742719, 33.107087900699995, @@ -51937,20 +51937,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.6625240344, - 79.73331040560001, - 138.109469138, - 209.23316276399999, - 218.138592252, - 235.145848494, - 247.917743029, - 251.886087569, - 253.562970215, - 252.892604591, - 249.098302445, - 243.193501891, - 184.065765057, - 168.601972262, + 50.2050840344, + 82.81207040560001, + 149.229429138, + 227.529122764, + 241.349032252, + 261.587288494, + 276.106463029, + 279.94520756900005, + 279.85121021500004, + 275.618244591, + 266.536542445, + 253.358941891, + 186.695965057, + 169.084052262, 157.498943054, 60.9083742719, 33.107087900699995, @@ -51961,20 +51961,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 48.2287320293, - 61.540720828199994, - 101.3257699831, - 157.820748716, - 209.634493909, - 217.72635476000002, - 234.174060391, - 241.457117418, - 244.766900359, - 249.024357282, - 246.366706876, - 242.53778363200001, - 162.44879594699998, - 110.23913278, + 48.413852029299996, + 64.0094008282, + 109.9660499831, + 171.10222871599998, + 226.602413909, + 229.32311476, + 249.35486039100002, + 256.707277418, + 262.379780359, + 269.809877282, + 262.469186876, + 252.32862363200002, + 165.22503594699998, + 110.75941278, 117.925389548, 79.98958878010001, 31.876305895599998, @@ -51985,20 +51985,20 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.5696787988, - 13.8880487988, - 66.5674008282, - 71.21371082819999, - 127.906239561, - 130.809699561, - 173.21005000999997, - 187.636465888, - 192.703410123, - 194.4322748, - 192.209802421, - 144.400467012, - 92.788418999, - 13.3553687988, + 11.8310787988, + 16.8402087988, + 76.78892082819999, + 88.19315082819999, + 149.812959561, + 156.195939561, + 200.29313000999997, + 214.695225888, + 217.912290123, + 216.3165948, + 208.92204242100001, + 154.109787012, + 95.613218999, + 13.874688798800001, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -52009,20 +52009,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.7059340344, - 79.56516040560001, - 137.54699913800002, - 208.36662942799998, - 212.095719428, - 221.773107723, - 234.68838968199998, - 243.850181174, - 248.446656104, - 250.72961177599998, - 246.532261881, - 240.80972359800003, - 182.75719257900002, - 168.363815189, + 50.285054034400005, + 82.56840040560002, + 148.06195913800002, + 225.898789428, + 234.744879428, + 247.936587723, + 262.616509682, + 271.716021174, + 274.599016104, + 273.326771776, + 263.898581881, + 251.00364359800002, + 185.416712579, + 168.824375189, 159.963594889, 60.9083742719, 33.107087900699995, @@ -52033,20 +52033,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.6459640344, - 79.5767404056, - 137.859209138, - 208.79442942799997, - 220.238685157, - 235.35216099, - 243.08817019699998, - 248.66791821500001, - 252.03230710300002, - 253.750824272, - 252.112297519, - 247.238327384, - 187.005149243, - 171.90307837300003, + 50.152644034400005, + 82.6305804056, + 148.839569138, + 227.00474942799997, + 243.539125157, + 262.05300099, + 271.53441019699994, + 277.023998215, + 278.519507103, + 276.635984272, + 269.697297519, + 257.551967384, + 189.715949243, + 172.36643837300002, 165.776130203, 60.9083742719, 33.107087900699995, @@ -52057,20 +52057,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.628804034400005, - 79.54878040560001, - 137.88905913800002, - 208.901139428, - 212.73936942799997, - 215.648079428, - 223.263710607, - 231.36431307100003, - 232.511892256, - 232.07142901499998, - 230.649894515, - 226.623719803, - 173.100543464, - 167.805083545, + 50.11388403440001, + 82.6045004056, + 148.98353913800003, + 227.325859428, + 236.42632942799997, + 242.871039428, + 252.304870607, + 260.28015307100003, + 259.532812256, + 255.33726901499998, + 248.444854515, + 237.036839803, + 175.719463464, + 168.195043545, 156.431284627, 60.9083742719, 33.107087900699995, @@ -52081,20 +52081,20 @@ 33.107087900699995, 33.107087900699995, 29.6807700512, - 49.6093640344, - 79.47786040560001, - 137.74766913800002, - 208.72110942799998, - 212.55225942799999, - 219.69296387, - 231.645064251, - 243.230466962, - 251.251668403, - 253.223943614, - 250.410156982, - 245.291222613, - 188.558550579, - 178.02736656399998, + 50.0692840344, + 82.48658040560001, + 148.71410913800003, + 226.964429428, + 236.05617942799998, + 246.92564387000002, + 260.759464251, + 272.30714696200005, + 278.50146840300005, + 276.799263614, + 268.544796982, + 255.971262613, + 191.207550579, + 178.41732656399998, 167.429539322, 60.9083742719, 33.107087900699995, @@ -52105,20 +52105,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.6055840344, - 79.4283604056, - 137.77490913800003, - 211.599549631, - 241.687722197, - 262.89220208, - 271.228806027, - 276.169404019, - 277.78983189300004, - 278.01631935200004, - 270.484935512, - 260.63886167000004, - 196.78573734, - 181.757581244, + 50.0675440344, + 82.40904040560001, + 148.85090913800002, + 229.907909631, + 265.270362197, + 290.14844208, + 300.29048602700004, + 305.15336401900004, + 305.000191893, + 301.43071935200004, + 288.432855512, + 271.18962167, + 199.48245734, + 182.145861244, 170.68963433899998, 60.9083742719, 33.107087900699995, @@ -52129,20 +52129,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 48.3995820293, - 61.7368308282, - 102.12556998310001, - 160.323888716, - 222.81288676999998, - 246.9474937, - 258.966619863, - 261.625027122, - 260.223868676, - 261.829227927, - 259.507786184, - 251.11367862199998, - 166.250251816, - 117.6130491, + 48.8807420293, + 64.79859082819999, + 112.98088998310001, + 178.400928716, + 246.08004676999997, + 273.7659737, + 287.512579863, + 289.964267122, + 286.85998867599994, + 284.74854792699995, + 277.027666184, + 261.348038622, + 168.939371816, + 118.04228909999999, 122.21843333400001, 80.18843100389999, 31.876305895599998, @@ -52153,20 +52153,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.715388798800001, - 13.6231187988, - 66.3853908282, - 71.1184608282, - 128.343895892, - 136.214806704, - 187.860835204, - 193.64609774000002, - 193.765175339, - 193.58255779200002, - 191.688448576, - 148.627326243, - 96.9221023071, - 15.0071266483, + 12.243148798800002, + 16.6262387988, + 76.7762308282, + 88.3605008282, + 150.552695892, + 161.881086704, + 215.286235204, + 220.91253774, + 219.255015339, + 215.56495779200003, + 208.358008576, + 158.358366243, + 99.5831423071, + 15.2810466483, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -52178,19 +52178,19 @@ 33.107087900699995, 33.107087900699995, 49.2751940344, - 77.1426304056, - 132.020099138, - 200.048999566, - 216.33995672, - 249.045864325, - 259.096582801, - 272.788756724, - 257.83641828900005, - 267.38120189, - 259.670306297, - 246.338135837, - 192.563879177, - 181.542705503, + 77.19351040560001, + 134.060659138, + 202.320559566, + 218.43815672, + 270.95986432499996, + 281.150942801, + 298.787676724, + 259.79973828900006, + 273.63708189, + 264.97190629700003, + 247.007535837, + 195.397879177, + 182.02214550300002, 171.613422552, 60.9083742719, 33.107087900699995, @@ -52201,20 +52201,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.660364034400004, - 79.32747040560001, - 137.014019138, - 227.337102234, - 252.20659096600002, - 267.05355727, - 272.98346574000004, - 276.04545840000003, - 278.00741289100006, - 282.99487976300003, - 272.23934352699996, - 257.266713231, - 192.163378806, - 181.02808757800003, + 50.1471240344, + 82.3362704056, + 147.24497913800002, + 244.335182234, + 274.243430966, + 292.71871727, + 300.47738574, + 303.5542984, + 303.7764528910001, + 305.294799763, + 289.358943527, + 267.310273231, + 194.859218806, + 181.42476757800003, 171.492411004, 60.9083742719, 33.107087900699995, @@ -52225,20 +52225,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.587074034400004, - 79.17426040560001, - 137.20130913800003, - 208.147899428, - 217.061712358, - 234.462330115, - 244.98555765, - 253.413970614, - 258.464131541, - 258.453578475, - 256.015006328, - 251.571333855, - 193.37088008600003, - 181.102947526, + 50.008594034400005, + 82.05566040560001, + 147.81406913800004, + 225.875979428, + 239.944152358, + 260.938930115, + 273.27771765, + 281.642570614, + 285.03465154099996, + 281.347418475, + 273.549606328, + 261.728333855, + 196.09204008600003, + 181.49938752600002, 172.159764422, 60.9083742719, 33.107087900699995, @@ -52249,20 +52249,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.5852740344, - 79.1551204056, - 137.18105913800002, - 209.964292358, - 230.79463228100002, - 253.45637663399998, - 261.096181645, - 266.887279044, - 268.88577745500004, - 266.411368485, - 263.484418157, - 255.770888546, - 193.25593715099998, - 181.43274900599997, + 50.0021940344, + 82.0534804056, + 147.82657913800003, + 227.733732358, + 253.69487228100002, + 279.755296634, + 289.180741645, + 295.040319044, + 295.290977455, + 289.259128485, + 281.07113815699995, + 266.024888546, + 195.96749715099998, + 181.79894900599996, 171.138305608, 60.9083742719, 33.107087900699995, @@ -52273,20 +52273,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.6036340344, - 79.1487304056, - 137.00960913800003, - 207.806049428, - 215.497650795, - 237.219248407, - 250.133782698, - 255.348441344, - 256.984575697, - 256.020787495, - 252.618449847, - 246.615491946, - 185.62312735799998, - 174.27670594600002, + 50.040114034400005, + 82.0732904056, + 147.44476913800003, + 225.23592942799996, + 237.989530795, + 263.309328407, + 277.995902698, + 283.132361344, + 283.14221569700004, + 278.561307495, + 269.855249847, + 256.658451946, + 188.30900735799997, + 174.61426594600002, 166.76309449099998, 60.9083742719, 33.107087900699995, @@ -52297,20 +52297,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 48.376872029299996, - 61.4638908282, - 101.6359099831, - 159.676128716, - 215.194563511, - 225.22664947699997, - 231.30184623899999, - 236.47569145199998, - 239.98519848799998, - 241.435791755, - 240.49876475800002, - 236.505272016, - 160.602270699, - 117.12088892700001, + 48.816672029299994, + 64.47073082819999, + 112.1987099831, + 177.286928716, + 237.91208351100002, + 251.41876947699998, + 259.214486239, + 264.356771452, + 266.18867848799994, + 264.06887175500003, + 257.835124758, + 246.584232016, + 163.278190699, + 117.454688927, 130.113434233, 85.30424118020001, 31.876305895599998, @@ -52321,20 +52321,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.6101787988, - 13.3429187988, - 66.15703082819999, - 74.2150985046, - 155.976183589, - 170.576900684, - 211.453061134, - 212.84545350599998, - 213.418895627, - 212.590728698, - 210.95837971600002, - 163.413704709, - 110.026701028, - 16.2051766483, + 11.9996187988, + 16.3029187988, + 76.7722308282, + 91.9284985046, + 178.780023589, + 196.739780684, + 239.378861134, + 240.67957350599997, + 239.292335627, + 234.980408698, + 228.177539716, + 173.512824709, + 112.64446102800001, + 16.4859766483, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -52345,20 +52345,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.564934034400004, - 79.09134040560001, - 136.97753913800003, - 208.27951019699998, - 228.695180666, - 250.367309146, - 262.282526798, - 269.116420519, - 271.148725261, - 271.901823578, - 266.08023357999997, - 256.007787829, - 192.246857108, - 180.06180737100001, + 49.9500940344, + 82.08870040560001, + 147.58013913800002, + 225.92339019699997, + 251.35738066599998, + 276.504149146, + 290.19204679800004, + 296.986700519, + 297.43536526099996, + 294.547263578, + 283.41231358, + 266.115587829, + 194.908257108, + 180.33492737100002, 170.841428332, 60.9083742719, 33.107087900699995, @@ -52369,20 +52369,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.5438440344, - 79.07112040560001, - 136.83830913800003, - 209.61745167900003, - 222.861260216, - 241.242439938, - 254.72479109200003, - 263.45986976200004, - 268.383579111, - 269.642498525, - 265.181833328, - 256.653698904, - 193.33406009600003, - 179.604969822, + 49.9018440344, + 82.08648040560001, + 147.29554913800004, + 227.07301167900002, + 245.25250021600002, + 267.10127993799995, + 282.295911092, + 290.92954976199997, + 294.04029911099997, + 291.62529852500006, + 281.86571332799997, + 266.486378904, + 196.11970009600003, + 179.84412982199999, 169.94208084, 60.9083742719, 33.107087900699995, @@ -52394,19 +52394,19 @@ 33.107087900699995, 33.107087900699995, 49.2751940344, - 78.5881504056, - 130.490095081, - 228.953561968, - 247.847815964, - 258.975652834, - 262.613256187, - 264.097091025, - 268.38563909500004, - 267.455711904, - 261.873932191, - 251.35027990700002, - 187.492267524, - 176.334594672, + 80.29559040560001, + 130.755575081, + 243.28168196800002, + 270.54253596399997, + 282.065452834, + 286.91889618700003, + 288.716211025, + 294.32795909500004, + 289.947591904, + 278.977532191, + 261.344279907, + 190.19330752400003, + 176.564714672, 166.737806111, 60.9083742719, 33.107087900699995, @@ -52417,20 +52417,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 49.5442040344, - 79.06968040560001, - 136.744679138, - 217.879950039, - 244.92259041, - 257.927014321, - 263.205729087, - 268.267628679, - 267.018495953, - 262.879989571, - 257.414503208, - 250.45850066299997, - 189.46141455400002, - 177.08566440200002, + 49.880484034400006, + 82.14172040560001, + 147.23343913800002, + 235.34243003900002, + 267.39275041, + 283.974814321, + 291.21256908699996, + 296.326788679, + 293.255375953, + 285.68374957099996, + 274.834503208, + 260.71034066299995, + 192.08589455400002, + 177.29742440200002, 167.16109362, 60.9083742719, 33.107087900699995, @@ -52441,20 +52441,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.914331883799996, - 78.8763904056, - 136.83536913800003, - 212.083482385, - 229.46724867, - 242.373612172, - 250.77951863100003, - 256.862013856, - 260.47215407199997, - 260.882897187, - 254.59629536499997, - 242.667211485, - 178.43411052399998, - 169.195990459, + 53.198691883799995, + 81.83455040560001, + 147.63632913800004, + 229.927802385, + 252.28612867, + 268.647692172, + 278.65675863100006, + 284.736453856, + 286.68879407199995, + 283.543137187, + 271.932215365, + 252.750611485, + 181.02375052399998, + 169.387670459, 153.666559551, 60.9083742719, 33.107087900699995, @@ -52465,20 +52465,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 51.6905098788, - 61.304470828199996, - 101.28895998310001, - 159.433714179, - 220.658165747, - 236.50049388999997, - 247.130522138, - 252.86881873800002, - 250.007860304, - 252.62722648, - 249.90658775600002, - 243.830696417, - 158.83420328799997, - 110.89679970499999, + 51.9647898788, + 64.41943082819999, + 111.92791998310001, + 177.126154179, + 243.493085747, + 262.74413389, + 275.170682138, + 280.75409873800004, + 270.175500304, + 275.01646648, + 266.90134775600006, + 253.774536417, + 161.65472328799996, + 111.07855970499999, 116.30817116600001, 79.9207179249, 31.876305895599998, @@ -52489,20 +52489,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.9717266483, - 13.6112087988, - 65.9532408282, - 70.8597108282, - 127.924809561, - 131.029449561, - 168.490248716, - 169.417638716, - 169.009895604, - 167.505641747, - 164.626278317, - 125.373639561, - 84.44340040560002, - 19.087024497799998, + 15.2357666483, + 16.9990087988, + 76.6145208282, + 88.66123082819999, + 151.129409561, + 157.939649561, + 197.35840871599999, + 198.38883871599998, + 196.010175604, + 190.880361747, + 182.417958317, + 135.855359561, + 87.1403604056, + 19.274344497799998, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -52513,20 +52513,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 53.1505222408, - 79.0087450919, - 137.10545913800001, - 208.565079428, - 212.70102942799997, - 215.93286942799998, - 219.248611672, - 227.604332122, - 229.497950793, - 228.36999783000002, - 225.41883324500003, - 220.752096329, - 165.622474732, - 157.344890286, + 53.4280022408, + 82.20974509189999, + 148.670099138, + 227.90603942799999, + 237.68014942799996, + 244.85086942799998, + 250.025011672, + 258.151692122, + 258.066430793, + 252.90339783000002, + 244.08399324500002, + 231.550776329, + 168.250394732, + 157.475970286, 150.987757527, 60.9083742719, 33.107087900699995, @@ -52537,20 +52537,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.84443188379999, - 78.72777040560001, - 136.939349138, - 225.286097139, - 246.645541577, - 261.871287107, - 272.919174346, - 284.48249211200005, - 288.13746636700006, - 281.184656704, - 273.083394801, - 264.58299845199997, - 202.181962716, - 193.060494567, + 53.03971188379999, + 81.80481040560001, + 148.42326913800002, + 244.338697139, + 271.156301577, + 290.012727107, + 302.96857434599997, + 314.45581211200005, + 316.07886636700005, + 305.209096704, + 291.406994801, + 275.233358452, + 204.75732271599998, + 193.192094567, 181.044227236, 60.9083742719, 33.107087900699995, @@ -52561,20 +52561,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.844311883799996, - 78.70929040560002, - 149.509627473, - 256.238894971, - 280.11929491800004, - 292.67324180899993, - 299.683018856, - 307.041735984, - 305.628391014, - 304.64379144199995, - 298.537117436, - 289.61926317900003, - 214.806654832, - 194.52500762000003, + 53.038071883799994, + 81.82481040560002, + 161.093827473, + 275.296414971, + 304.46641491800005, + 320.42244180899996, + 329.384258856, + 336.81509598400004, + 333.52823101399997, + 328.72007144199995, + 316.96663743600004, + 300.36038317900005, + 217.368174832, + 194.63592762000002, 178.574507339, 60.9083742719, 33.107087900699995, @@ -52585,20 +52585,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.827991883799996, - 78.6393304056, - 155.115658956, - 259.588914917, - 270.089914443, - 281.269703132, - 292.594003809, - 298.46529042500003, - 296.432731353, - 292.33457150199996, - 283.88280914300003, - 270.122790163, - 200.50780617599997, - 185.64360431, + 53.000711883799994, + 81.71993040560001, + 166.615418956, + 278.570314917, + 294.481514443, + 309.319143132, + 322.58260380900003, + 328.508570425, + 324.47757135300003, + 316.54497150199995, + 302.355849143, + 280.885870163, + 203.11696617599998, + 185.75680431, 169.919176283, 60.9083742719, 33.107087900699995, @@ -52609,20 +52609,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.812001883799994, - 78.58419040560001, - 136.73138913800003, - 207.92184942799997, - 216.322433253, - 231.176682613, - 239.30666624600002, - 244.748789118, - 247.37268050100002, - 248.39427127, - 244.179072792, - 237.964724956, - 176.156852167, - 166.407729083, + 52.96412188379999, + 81.66007040560001, + 148.17150913800003, + 226.72744942799997, + 240.530873253, + 259.055642613, + 269.114226246, + 274.610269118, + 275.27916050100004, + 272.48047127, + 262.588832792, + 248.644164956, + 178.66009216700002, + 166.53420908299998, 153.520969881, 60.9083742719, 33.107087900699995, @@ -52633,20 +52633,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 51.6007798788, - 60.862870828199995, - 101.18110998310001, - 164.156518204, - 243.622244347, - 263.032835827, - 273.376334965, - 275.443160907, - 276.54534348199996, - 276.990843946, - 274.54729910599997, - 263.093893588, - 172.950522614, - 125.12899935399999, + 51.7754598788, + 63.965150828199995, + 112.5807899831, + 183.120878204, + 268.226724347, + 291.374195827, + 303.584094965, + 305.462760907, + 304.659823482, + 301.12452394599995, + 292.90897910599995, + 273.69237358800007, + 175.414602614, + 125.23547935399999, 130.630793055, 83.15965708750001, 31.876305895599998, @@ -52657,20 +52657,20 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.858446648300001, - 12.7712387988, - 66.85915262, - 88.4389320441, - 163.168086965, - 171.56133229, - 214.479642621, - 220.94588435600002, - 222.868253727, - 222.110528853, - 220.240026944, - 167.283666366, - 111.225086541, - 18.664204497799997, + 15.011726648300002, + 15.7806387988, + 77.87867262, + 106.6640520441, + 186.67224696499997, + 198.58489229000003, + 243.173482621, + 249.487844356, + 249.55365372699998, + 244.909488853, + 237.555506944, + 177.311706366, + 113.533086541, + 18.746964497799997, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -52681,20 +52681,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.8142518838, - 78.48051040560001, - 141.086275243, - 241.95716396400002, - 259.839252472, - 271.958514852, - 280.43987397499995, - 286.88902602900004, - 287.74004626100003, - 285.891298944, - 282.6886073659999, - 271.021493299, - 202.803303618, - 192.99371761199998, + 52.9648918838, + 81.46843040560002, + 152.00647524299998, + 260.048803964, + 283.005572472, + 298.639274852, + 308.927033975, + 315.32174602900005, + 314.41236626100005, + 308.83333894400005, + 300.15256736599997, + 281.013973299, + 205.077543618, + 193.05575761199998, 176.892321334, 60.9083742719, 33.107087900699995, @@ -52705,20 +52705,20 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.79937188379999, - 78.4394704056, - 138.546713001, - 240.43929100100002, - 256.90240611, - 270.198603518, - 283.6356405, - 288.524972203, - 287.97702039300003, - 281.278607887, - 271.447741673, - 257.485993242, - 187.62083124400002, - 180.55758332300002, + 52.93093188379999, + 81.4053904056, + 149.360073001, + 258.254651001, + 278.99396611000003, + 291.462723518, + 312.0079605, + 316.73853220300003, + 310.08254039300004, + 298.018727887, + 286.54866167299997, + 266.587353242, + 189.889431244, + 180.57998332300002, 165.45110018, 60.9083742719, 33.107087900699995, @@ -52729,19 +52729,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.7851518838, - 78.69678040560001, - 137.509409071, - 237.699602347, - 253.987971769, - 265.927048868, - 278.09840377899997, - 285.03044931, - 283.384608548, - 282.58665381000003, - 279.58916142100003, - 269.09960086, - 203.457852534, + 52.8868718838, + 81.76310040560001, + 148.293929071, + 255.561082347, + 276.94829176900004, + 292.235848868, + 306.160963779, + 313.03140931, + 309.529688548, + 305.13177381, + 296.531401421, + 278.52868086, + 205.94097253400003, 196.695191297, 180.490409793, 60.9083742719, @@ -52753,19 +52753,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 52.7736918838, - 78.5982304056, - 139.75568356099998, - 238.356780395, - 261.254304494, - 277.66397483699996, - 285.91888346700006, - 289.298467902, - 288.308776833, - 286.21626131700003, - 281.80168368399995, - 271.249361006, - 208.12392934899998, + 52.8611318838, + 81.70167040560001, + 150.48640356099997, + 256.056220395, + 283.92702449399997, + 303.537614837, + 313.5220834670001, + 316.81838790200004, + 313.93489683300004, + 308.18242131700003, + 298.20660368399996, + 280.424281006, + 210.52900934899998, 202.533875104, 185.334149497, 60.9083742719, @@ -52777,19 +52777,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.239009733299994, - 78.53154040560001, - 139.068316649, - 238.629417095, - 257.845719963, - 272.86104013299996, - 280.343992594, - 284.351973333, - 285.27564244399997, - 286.79562979099995, - 276.790027605, - 266.45946406300004, - 201.293381468, + 56.348209733299996, + 81.59950040560001, + 149.763316649, + 256.34849709499997, + 280.641399963, + 299.325280133, + 308.570432594, + 312.564853333, + 311.684202444, + 309.52902979099997, + 293.883587605, + 276.069344063, + 203.624861468, 192.71297422900003, 176.597344488, 60.9083742719, @@ -52801,19 +52801,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 55.00813772829999, - 60.632770828199995, - 100.5592099831, - 158.831748716, - 211.69718075600002, - 222.607373338, - 233.355993703, - 239.65878816500003, - 241.572828657, - 242.437536367, - 240.043303656, - 233.72150853199997, - 151.23347090700003, + 55.11725772829999, + 63.67597082819999, + 111.5700499831, + 177.130468716, + 235.28582075600002, + 249.901333338, + 262.48939370299996, + 268.769268165, + 268.704188657, + 265.684616367, + 257.714263656, + 243.744028532, + 153.42519090700003, 108.081982935, 116.02065319, 79.9207179249, @@ -52825,19 +52825,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 18.3006044978, - 12.908338798800001, - 65.2511208282, - 70.6508208282, - 126.577119561, - 130.959249561, - 170.335548926, - 184.827928716, - 191.710528065, - 191.581827462, - 187.971225696, - 138.050605026, - 84.4886875618, + 18.4312844978, + 15.861458798800001, + 76.7264808282, + 89.6098208282, + 148.50671956099998, + 159.11732956100002, + 197.542428926, + 214.634128716, + 219.502248065, + 215.339507462, + 205.939705696, + 148.216045026, + 86.64620756180001, 21.5973523472, 31.876305895599998, 31.876305895599998, @@ -52849,19 +52849,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.2250597333, - 78.22395040560001, - 136.18376913800003, - 207.47316942799998, - 211.47327942799998, - 217.38066406, - 236.966376434, - 249.398310864, - 250.36460549699999, - 248.059566722, - 244.16410657699998, - 235.500475029, - 169.87098114300002, + 56.318059733300004, + 81.4357104056, + 147.95856913800003, + 226.67496942799997, + 235.950039428, + 245.31746406, + 266.732376434, + 279.140510864, + 277.959245497, + 271.714006722, + 262.020346577, + 245.532395029, + 171.97274114300004, 164.212841262, 152.03541145999998, 60.9083742719, @@ -52873,19 +52873,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.205589733299995, - 78.1793104056, - 135.969689138, - 207.229929428, - 213.517065091, - 224.346950689, - 231.791658081, - 240.810075169, - 250.731478296, - 256.448614757, - 251.473912531, - 242.417549288, - 178.17888548500002, + 56.2759097333, + 81.33791040560001, + 147.45404913800002, + 226.071209428, + 237.635105091, + 251.861430689, + 260.909178081, + 269.758875169, + 277.69583829600003, + 279.481294757, + 268.863232531, + 252.093829288, + 180.31320548500003, 174.003767083, 158.175024337, 60.9083742719, @@ -52897,19 +52897,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.1893897333, - 78.1325704056, - 135.878549138, - 207.16734942799997, - 212.871020776, - 227.515958181, - 239.842130316, - 248.508754075, - 255.332603186, - 260.137346517, - 254.937321122, - 246.189918398, - 183.721458117, + 56.2408297333, + 81.24357040560001, + 147.335189138, + 226.03810942799998, + 237.087780776, + 255.288318181, + 269.279250316, + 277.598994075, + 282.519843186, + 283.275226517, + 272.279561122, + 255.899078398, + 185.776778117, 184.128682493, 165.083756051, 60.9083742719, @@ -52921,19 +52921,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.1922397333, - 78.22230040560001, - 136.02506913800002, - 209.043906102, - 227.36215223199997, - 243.762734807, - 257.50700383500003, - 266.57489628499997, - 265.492471397, - 262.44826766, - 257.420242777, - 249.348817481, - 185.699612302, + 56.2469997333, + 81.48150040560002, + 147.880069138, + 228.551986102, + 252.46831223199996, + 272.493854807, + 288.07476383500006, + 296.887616285, + 293.6239113969999, + 286.46986766, + 275.547842777, + 259.502177481, + 187.754692302, 184.52540086800002, 168.28272071, 60.9083742719, @@ -52945,19 +52945,19 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.1746597333, - 78.1143004056, - 135.80440689200003, - 227.609207709, - 245.958579318, - 263.15205979300003, - 272.98352093, - 279.18667275999996, - 283.12980340599995, - 278.079468577, - 265.598536386, - 252.47702872099998, - 189.33756115399999, + 56.209019733299996, + 81.35362040560001, + 147.44840689200004, + 246.483287709, + 270.185779318, + 290.98173979300003, + 302.55128093, + 308.54487276, + 310.57692340599993, + 301.480548577, + 283.19341638599997, + 262.285748721, + 191.32624115399997, 188.558970118, 171.177949662, 60.9083742719, @@ -52969,19 +52969,19 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 54.92425772829999, - 60.451360828199995, - 100.05640998310001, - 167.232395066, - 244.707881445, - 264.5526917, - 271.348711782, - 274.718171851, - 271.37709516300004, - 268.808045132, - 265.364348508, - 255.44404444699998, - 166.55610696300002, + 54.93569772829999, + 63.54040082819999, + 110.92608998310001, + 185.36627506600001, + 268.23668144500004, + 291.7188517, + 300.308991782, + 303.604251851, + 294.29829516300003, + 288.32512513200004, + 279.768188508, + 264.520004447, + 168.518186963, 127.83454626300001, 128.394833444, 82.9148814461, @@ -52994,18 +52994,18 @@ 31.876305895599998, 31.876305895599998, 18.171034497799997, - 12.6734987988, - 64.66576082819999, - 69.06574082819999, - 137.284200118, - 152.08523142200002, - 193.492274316, - 196.075104054, - 197.190952745, - 184.91619867300003, - 182.564878943, - 146.13724344000002, - 97.3604102847, + 15.7662187988, + 75.2580808282, + 85.3682208282, + 157.89312011799998, + 178.72203142200001, + 217.801634316, + 218.70666405400002, + 219.62999274499998, + 190.60735867300002, + 186.018558943, + 154.15488344, + 99.3314902847, 25.0236701967, 31.876305895599998, 31.876305895599998, @@ -53018,18 +53018,18 @@ 33.107087900699995, 33.107087900699995, 56.1278297333, - 78.1340404056, - 135.36515652299997, - 229.85559592200002, - 250.61083690599997, - 264.45151782, - 273.349401898, - 280.034479427, - 278.178706424, - 274.624436068, - 266.298804608, - 255.15068509299996, - 190.66433884100002, + 81.1840804056, + 146.26087652299998, + 247.83267592200002, + 273.802876906, + 291.37051782, + 302.06380189799995, + 308.59095942700003, + 304.806066424, + 297.42287606800005, + 283.232924608, + 264.43064509299995, + 192.45645884100003, 188.321433914, 169.412838815, 60.9083742719, @@ -53042,18 +53042,18 @@ 33.107087900699995, 33.107087900699995, 56.1278297333, - 77.93214040560001, - 135.32882913800003, - 209.408442435, - 228.58584717800002, - 244.658518104, - 253.299500475, - 258.84482784, - 259.549619458, - 257.451048969, - 252.521836757, - 245.860795359, - 185.166180908, + 81.00302040560001, + 146.55834913800004, + 227.442562435, + 251.53472717800003, + 271.150718104, + 281.606020475, + 287.07810784000003, + 285.881979458, + 279.906688969, + 269.37807675700003, + 255.050795359, + 186.862780908, 184.47743760199998, 165.493670571, 60.9083742719, @@ -53066,18 +53066,18 @@ 33.107087900699995, 33.107087900699995, 56.1278297333, - 77.90721040560001, - 135.23672913800002, - 206.05230942799997, - 214.790908752, - 230.014470234, - 237.95895682199998, - 243.09763281099998, - 248.970839396, - 247.715914388, - 243.72211048500003, - 242.672321066, - 182.29584388199999, + 81.00297040560001, + 146.385689138, + 223.74298942799996, + 237.24258875200002, + 255.641270234, + 264.99715682199997, + 269.98419281099996, + 274.161999396, + 262.608634388, + 253.010870485, + 250.707041066, + 184.045523882, 181.390814536, 163.897701876, 60.9083742719, @@ -53090,17 +53090,17 @@ 33.107087900699995, 33.107087900699995, 56.1278297333, - 78.2829904056, - 135.16421913800002, - 206.27607884499997, - 219.919405665, - 243.264143604, - 258.882301895, - 265.366603094, - 255.91440685799998, - 246.34185588800003, - 257.390459878, - 240.44687231, + 79.66235040560001, + 146.14677913800003, + 224.23427884499998, + 243.008765665, + 270.11282360399997, + 287.530701895, + 293.832723094, + 267.850566858, + 247.47705588800002, + 273.86805987800005, + 242.52799231, 183.273337075, 190.751060059, 169.255548413, @@ -53114,18 +53114,18 @@ 33.107087900699995, 33.107087900699995, 56.1278297333, - 78.12324040560001, - 135.07241913800001, - 213.454026119, - 233.257494852, - 247.42318995099998, - 255.44174571399998, - 261.14844263599997, - 261.832107401, - 257.055575236, - 252.101925676, - 247.60749712700002, - 184.368362502, + 81.18780040560002, + 145.605779138, + 230.612346119, + 255.330294852, + 273.252749951, + 282.805105714, + 288.361962636, + 287.23406740099995, + 275.921695236, + 265.942285676, + 256.846897127, + 186.040322502, 182.821379241, 156.013817929, 60.9083742719, @@ -53138,18 +53138,18 @@ 31.876305895599998, 31.876305895599998, 58.3233655777, - 60.163600828199996, - 99.87136998310001, - 158.17654871599999, - 210.43977942799998, - 222.576547238, - 240.121266792, - 251.224266518, - 261.657707419, - 262.94939286899995, - 258.178630499, - 248.45606315700002, - 157.141972541, + 63.480840828199995, + 111.64464998310001, + 176.89794871599997, + 234.42821942799998, + 250.093227238, + 269.44806679199996, + 280.48206651799995, + 288.854547419, + 286.087592869, + 275.374470499, + 257.654943157, + 158.766212541, 120.233295468, 117.733098145, 80.5349815685, @@ -53162,18 +53162,18 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 12.0993887988, - 64.4116308282, - 69.4888308282, - 126.281919561, - 130.48762673, - 187.053949634, - 186.47464877, - 183.815488272, - 183.45013487600002, - 196.453946717, - 148.522003436, - 94.84993551080001, + 15.439348798800001, + 76.3193108282, + 88.11391082819999, + 149.457639561, + 157.25430673, + 215.545189634, + 193.20656877, + 184.51312827200002, + 183.98957487600003, + 213.327386717, + 157.512963436, + 96.40477551080001, 28.4499880461, 31.876305895599998, 31.876305895599998, @@ -53186,18 +53186,18 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 12.0920987988, - 64.2438708282, - 69.35245082819999, - 126.639339561, - 129.558429561, - 171.571045275, - 178.3181485, - 168.25786150300002, - 167.161207386, - 162.77626651700004, - 130.06599296299999, - 82.30812905709999, + 15.338698798800001, + 75.7959908282, + 88.0230508282, + 150.558019561, + 156.949549561, + 200.558325275, + 206.9843085, + 177.30006150300002, + 174.419127386, + 164.44758651700005, + 136.195312963, + 83.8781690571, 28.4499880461, 31.876305895599998, 31.876305895599998, @@ -53210,18 +53210,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 78.01890040560001, - 135.00347913800002, - 206.06532942799998, - 210.09708942799998, - 214.45146386300001, - 224.323284886, - 238.879051221, - 244.780355749, - 242.259334283, - 238.19610933, - 232.328069149, - 172.97017733500002, + 81.28274040560001, + 146.650399138, + 224.62684942799999, + 233.86876942799998, + 241.626463863, + 252.94928488600002, + 267.116851221, + 270.828635749, + 264.26605428299996, + 254.40990933, + 240.79366914899998, + 174.47473733500001, 177.75167588300002, 153.747475318, 60.9083742719, @@ -53234,18 +53234,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.8746904056, - 134.916509138, - 205.86588942799997, - 213.773860801, - 233.302307204, - 242.73031507, - 252.23055157500002, - 257.486785559, - 257.898664267, - 245.61750760200002, - 246.412772962, - 180.354785606, + 81.09045040560001, + 146.26206913800002, + 224.25384942799997, + 237.13610080100003, + 260.004547204, + 270.82443507, + 279.924151575, + 283.014625559, + 279.54130426700004, + 251.42322760200003, + 254.745412962, + 181.011585606, 188.146301537, 167.826734614, 60.9083742719, @@ -53258,18 +53258,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.86650040560001, - 134.84099913800003, - 210.09825208900003, - 230.095229148, - 253.38481767499997, - 264.602688564, - 269.057587881, - 274.356365237, - 271.061675048, - 263.592317264, - 253.688346041, - 191.05023086899996, + 81.0997004056, + 146.17647913800002, + 228.63125208900004, + 253.70150914799999, + 280.605137675, + 293.483688564, + 297.753787881, + 300.95156523699995, + 293.575875048, + 280.04411726399996, + 262.23818604099995, + 192.39503086899998, 197.27075608, 177.628941442, 60.9083742719, @@ -53282,18 +53282,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.90448040560001, - 136.008378056, - 233.74098050799998, - 255.0494723, - 267.403253293, - 273.596127573, - 280.08532737, - 283.190244992, - 280.65654776599996, - 271.791545386, - 261.888694274, - 199.602678054, + 81.18680040560001, + 147.503058056, + 252.36526050799998, + 278.89651230000004, + 294.888853293, + 302.762327573, + 309.06472737, + 310.135684992, + 303.18066776599994, + 288.004465386, + 270.22409427400004, + 200.894358054, 206.927175369, 182.18364681300002, 60.9083742719, @@ -53306,18 +53306,18 @@ 31.876305895599998, 31.876305895599998, 58.3233655777, - 60.103270828199996, - 99.777681293, - 181.84395440800003, - 259.79766365899997, - 275.01254937, - 282.286124885, - 286.455079485, - 286.301039501, - 280.929892562, - 272.92250518099996, - 262.62399439800004, - 174.247822448, + 63.616630828199995, + 112.25568129299998, + 202.11999440800003, + 285.581023659, + 304.44294937, + 313.290684885, + 317.049119485, + 314.759719501, + 304.92493256200004, + 290.60726518099995, + 271.638594398, + 175.580022448, 144.94240462800002, 140.345969834, 98.0484376025, @@ -53330,18 +53330,18 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 12.123418798800001, - 64.5974913638, - 80.36727054079999, - 160.278829444, - 179.465869553, - 226.698806918, - 230.09110455700002, - 232.046159615, - 227.33822059, - 216.55161189700002, - 164.118336092, - 105.76427113, + 15.722018798800002, + 77.27909136379999, + 100.98003054079999, + 186.494989444, + 209.366269553, + 258.279006918, + 261.102184557, + 260.627239615, + 251.42334058999998, + 234.24513189700002, + 173.19745609199998, + 107.02703113, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -53354,18 +53354,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.84838040560001, - 135.03778536699997, - 217.238755516, - 248.268247692, - 267.80881149699997, - 272.183516241, - 273.306569931, - 273.218782612, - 271.674439009, - 266.331340583, - 254.486235686, - 186.58201587299996, + 81.36922040560002, + 147.28166536699996, + 236.829875516, + 273.22484769199997, + 296.624971497, + 302.780436241, + 303.61264993099996, + 301.19990261199996, + 295.374519009, + 283.83758058300003, + 263.445555686, + 187.75889587299997, 195.39861634800002, 173.321469885, 60.9083742719, @@ -53378,18 +53378,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.69934040560001, - 134.80580913800003, - 206.626370285, - 222.702584673, - 241.955698019, - 256.145722015, - 263.692816695, - 263.501295917, - 261.06450001999997, - 257.23541395300003, - 249.37014499900002, - 185.754009236, + 81.1687004056, + 147.16208913800003, + 226.265170285, + 247.55894467299998, + 270.21041801900003, + 285.639482015, + 292.35877669499996, + 289.499295917, + 282.83258002, + 273.396533953, + 257.710584999, + 186.820089236, 194.854800394, 170.56654966, 60.9083742719, @@ -53402,18 +53402,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.77179040560002, - 134.67803913800003, - 206.090649599, - 221.22323747000002, - 237.121045659, - 245.434183864, - 254.159872164, - 258.881403216, - 258.874985869, - 252.804297541, - 243.64282543599998, - 181.220503821, + 81.13259040560001, + 146.72335913800003, + 225.310609599, + 245.41447747, + 264.591045659, + 274.126463864, + 282.110832164, + 284.11860321600005, + 280.212825869, + 268.544417541, + 251.673825436, + 182.262663821, 190.13673303, 165.914838508, 60.9083742719, @@ -53426,18 +53426,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 77.9385304056, - 134.56895913800003, - 205.64472942799998, - 209.83237369299997, - 230.733058837, - 255.021420073, - 261.281675195, - 260.147821879, - 257.017174192, - 250.37621890600002, - 238.416729514, - 173.54204534000002, + 81.18649040560001, + 146.339959138, + 224.63224942799997, + 233.99697369299997, + 258.291978837, + 284.214940073, + 290.37723519499997, + 286.807781879, + 279.160854192, + 266.163018906, + 245.640609514, + 174.36648534000003, 184.899454182, 163.562893133, 60.9083742719, @@ -53450,18 +53450,18 @@ 33.107087900699995, 33.107087900699995, 59.5541475828, - 78.31947040560001, - 135.017969138, - 205.76193942799998, - 214.258166163, - 226.950302247, - 230.754024349, - 231.816400599, - 235.647152206, - 238.77734815, - 235.475708747, - 230.15626532500002, - 176.505190568, + 81.36691040560001, + 145.773049138, + 223.78805942799997, + 238.019366163, + 255.209142247, + 260.539704349, + 261.223320599, + 262.750832206, + 260.99858815, + 250.817348747, + 238.092745325, + 177.441910568, 185.488473929, 163.35897374799998, 60.9083742719, @@ -53474,18 +53474,18 @@ 31.876305895599998, 31.876305895599998, 61.7496834272, - 60.2129208282, - 99.53392998310001, - 158.449338716, - 211.45236942799997, - 219.728592951, - 225.588076461, - 229.170633371, - 230.736514951, - 229.837171642, - 226.71578583800002, - 220.917868105, - 149.944961281, + 63.8738808282, + 112.6117299831, + 179.875138716, + 238.93520942799998, + 251.42983295099998, + 258.921396461, + 261.942313371, + 260.835594951, + 254.91425164199998, + 244.88710583800002, + 229.967868105, + 150.881121281, 121.546033664, 116.464006474, 80.0448304186, @@ -53498,18 +53498,18 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.9072687988, - 64.0513008282, - 70.0442808282, - 128.21480552100002, - 138.624636093, - 192.383477094, - 202.965644336, - 205.488900979, - 202.534661081, - 197.51118614899997, - 143.675637297, - 90.3486719426, + 15.811628798800001, + 77.8602608282, + 92.11660082819999, + 156.431965521, + 170.665476093, + 225.716797094, + 235.949964336, + 235.543860979, + 227.677741081, + 215.878026149, + 152.772157297, + 91.23227194260001, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -53522,18 +53522,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.6652904056, - 134.788289138, - 206.59824942799997, - 211.96312353300002, - 221.175778502, - 226.781386716, - 229.313441115, - 229.701950463, - 227.997912084, - 224.228777207, - 218.524935399, - 165.850874051, + 81.5367304056, + 148.38288913800002, + 228.31372942799996, + 239.45168353300002, + 252.393298502, + 259.453426716, + 261.139001115, + 258.748830463, + 252.280392084, + 241.89069720700002, + 227.343175399, + 166.601554051, 176.410700254, 152.162410293, 60.9083742719, @@ -53546,18 +53546,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.63658040560001, - 134.56985913800003, - 206.07507942799998, - 210.40800942799999, - 213.30000942799998, - 217.144973482, - 227.964898732, - 231.524488693, - 230.27853552500002, - 227.182200627, - 221.38695293499998, - 168.492849474, + 81.40646040560001, + 147.72745913800003, + 226.776479428, + 236.40164942799998, + 242.54916942799997, + 247.639693482, + 257.734218732, + 258.612008693, + 253.16777552500002, + 243.99496062699998, + 229.683712935, + 169.12192947399998, 180.033177695, 153.99827208, 60.9083742719, @@ -53570,18 +53570,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.82966040560001, - 134.51534913800003, - 205.84305942799998, - 210.344709428, - 213.666189428, - 215.62002942799998, - 216.30786942799998, - 215.588109428, - 214.68630216499997, - 215.02966036600003, - 211.790193577, - 159.39961595600002, + 81.3267804056, + 146.78538913800003, + 225.98365942799998, + 236.398829428, + 243.63854942799998, + 247.260629428, + 247.55210942799997, + 244.22570942799996, + 238.77678216499996, + 232.26178036600004, + 220.069913577, + 159.93025595600002, 169.819311538, 151.178592192, 60.9083742719, @@ -53594,18 +53594,18 @@ 33.107087900699995, 33.107087900699995, 63.0261606101, - 77.6486404056, - 134.48837913800003, - 206.17308942799997, - 210.650499428, - 215.421616059, - 224.958914687, - 233.100043145, - 235.478229672, - 233.272335351, - 229.455428386, - 223.910693492, - 168.52531284399998, + 81.4411204056, + 147.88253913800003, + 227.47532942799998, + 237.414019428, + 245.50385605900001, + 256.225034687, + 263.471003145, + 263.045429672, + 256.329695351, + 246.14726838599998, + 232.113213492, + 168.99899284399999, 176.769279425, 152.636231673, 60.9083742719, @@ -53618,18 +53618,18 @@ 33.107087900699995, 33.107087900699995, 63.0249747072, - 77.58785863719999, - 134.274869138, - 205.694199428, - 210.159189428, - 220.581673021, - 236.285833196, - 242.004392728, - 242.972829393, - 241.98272638699999, - 238.30450791, - 231.488896501, - 178.057021525, + 81.29513863719998, + 147.165349138, + 226.072359428, + 236.143429428, + 250.141593021, + 267.435233196, + 272.60087272799996, + 270.750709393, + 265.092686387, + 254.70982791, + 239.198456501, + 178.469981525, 184.169007475, 160.817776863, 60.9083742719, @@ -53642,18 +53642,18 @@ 31.876305895599998, 31.876305895599998, 61.7496834272, - 60.3804108282, - 99.1042399831, - 159.78941757500002, - 228.42739961299998, - 244.913961661, - 258.92327278700003, - 268.22296591, - 270.98025369699997, - 269.625685171, - 266.25342714, - 257.40987551, - 172.933424748, + 63.581330828199995, + 110.6404399831, + 178.97181757500002, + 253.71811961299997, + 274.989361661, + 290.862912787, + 299.72940590999997, + 299.79149369699996, + 293.725085171, + 283.65958714000004, + 265.65999551000004, + 173.355824748, 138.143275244, 133.964176464, 88.9348344682, @@ -53666,18 +53666,18 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 11.8226387988, - 63.4639608282, - 76.5881099331, - 157.784908061, - 179.644006092, - 227.595372641, - 231.19140926899996, - 238.38113796199997, - 236.28536949300002, - 227.574550334, - 182.71836178700002, - 122.347188953, + 15.691278798799999, + 77.2192408282, + 98.5726699331, + 185.687468061, + 211.24072609200002, + 260.666532641, + 263.44980926899996, + 267.72677796199997, + 260.652129493, + 244.994750334, + 190.860081787, + 122.708148953, 31.876305895599998, 31.876305895599998, 31.876305895599998, @@ -53690,18 +53690,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.57523040560001, - 147.857948341, - 251.380566129, - 280.33580162500004, - 309.869858006, - 314.685713796, - 310.80328941999994, - 307.53468324899995, - 302.342884823, - 290.124468539, - 271.88562178499996, - 206.51547851900003, + 81.42587040560001, + 161.42138834099998, + 272.951286129, + 307.58244162500006, + 340.56173800600004, + 346.66623379600003, + 341.82264941999995, + 335.664403249, + 325.635604823, + 306.829148539, + 279.71374178499997, + 206.81215851900004, 208.068703894, 185.64117534599998, 60.9083742719, @@ -53714,18 +53714,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.59629040560002, - 143.770559403, - 246.19317797699998, - 263.45968481899996, - 278.29682660000003, - 294.607481094, - 302.531344788, - 298.63197796500003, - 297.711064753, - 289.665139299, - 271.663252324, - 206.66727129, + 81.36069040560001, + 157.244879403, + 267.483457977, + 290.269404819, + 308.59718660000004, + 326.155641094, + 333.114904788, + 326.29909796500004, + 320.733624753, + 306.18117929899995, + 279.340892324, + 206.89995129, 209.18248175099998, 186.043015931, 60.9083742719, @@ -53738,18 +53738,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.6389204056, - 133.929149138, - 205.109229428, - 211.56441397999998, - 231.013427366, - 239.136815301, - 245.786093731, - 248.586695141, - 246.17893154, - 242.41279497499997, - 233.554927233, - 176.358566361, + 81.1381204056, + 146.49982913800002, + 225.098149428, + 236.90629398, + 260.098107366, + 269.806575301, + 275.962173731, + 276.376215141, + 269.36501154, + 258.991714975, + 241.120007233, + 176.550486361, 181.450163835, 155.446193389, 60.9083742719, @@ -53762,18 +53762,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.56575040560001, - 133.896899138, - 205.329039428, - 212.552146235, - 232.351314921, - 240.30811514700002, - 243.283853191, - 243.524554564, - 241.036532583, - 235.865709678, - 227.83510697199998, - 173.74030621699998, + 81.35191040560001, + 147.129979138, + 226.009199428, + 238.58762623500002, + 261.72559492100004, + 270.998995147, + 273.227453191, + 270.915034564, + 263.915092583, + 252.234869678, + 235.298346972, + 173.88730621699997, 178.093387537, 154.00316302299998, 60.9083742719, @@ -53786,18 +53786,18 @@ 33.107087900699995, 33.107087900699995, 62.98046543219999, - 77.7239404056, - 133.686749138, - 204.05142942799998, - 209.79168942799998, - 217.917925593, - 232.697841582, - 239.31452778099998, - 235.22165504499998, - 228.42459707, - 233.56460597799997, - 225.760872169, - 174.67423242799998, + 80.49138040560001, + 145.07422913800002, + 220.44802942799998, + 235.85892942799998, + 243.551405593, + 256.588321582, + 264.12748778099996, + 252.18001504499998, + 236.01651707, + 250.06072597799997, + 233.20387216900002, + 174.77627242799997, 179.37785151, 154.294190983, 60.9083742719, @@ -53810,17 +53810,17 @@ 31.876305895599998, 31.876305895599998, 61.7496834272, - 59.978020828199995, - 98.39647998310001, - 156.648048716, - 209.06643942799997, - 210.88996805400004, - 213.299369535, - 222.799046646, - 227.86762151099998, - 225.81240022600002, - 222.495859571, - 216.372655738, + 63.3296608282, + 110.73195998310001, + 176.258408716, + 233.86175942799997, + 236.77596805400003, + 240.38896953500003, + 248.788326646, + 250.144781511, + 241.96176022600002, + 233.183499571, + 219.594735738, 150.549732583, 116.097590294, 115.357945526, @@ -53834,17 +53834,17 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.895418798800002, - 62.8849308282, - 68.1077208282, - 124.44666956100001, - 127.459959561, - 163.033068716, - 158.253468716, - 160.525038716, - 155.813478716, - 156.242058716, - 113.961819561, + 15.287938798800003, + 75.3898508282, + 88.1925608282, + 146.907549561, + 153.718519561, + 187.54322871600002, + 172.320308716, + 178.54719871600003, + 165.888998716, + 166.907818716, + 115.590419561, 87.355433954, 31.876305895599998, 31.876305895599998, @@ -53858,17 +53858,17 @@ 33.107087900699995, 33.107087900699995, 66.63566990509999, - 77.6441168443, - 133.47293913800002, - 204.53574942799997, - 209.317646041, - 227.04930516800002, - 244.401912685, - 256.17072505600004, - 258.47634835499997, - 253.10571514500003, - 243.504152945, - 230.237206823, + 81.1395168443, + 145.97393913800002, + 224.024509428, + 234.242366041, + 255.51574516800002, + 274.438032685, + 285.814965056, + 285.498428355, + 275.425315145, + 259.195672945, + 237.06244682300002, 175.315634249, 176.551206329, 154.233420694, @@ -53882,17 +53882,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.88057040560001, - 133.48862913800002, - 204.49176942799997, - 208.919139428, - 211.89018942799999, - 214.740516976, - 217.70202448199998, - 216.90485880399999, - 214.695004283, - 211.063196709, - 205.544585811, + 79.44369040560001, + 144.471749138, + 224.28872942799998, + 233.98993942799996, + 240.493189428, + 244.864076976, + 247.37026448199998, + 243.966498804, + 237.011084283, + 226.74555670900003, + 212.328905811, 159.809412931, 169.60365638, 151.46535073799998, @@ -53906,17 +53906,17 @@ 33.107087900699995, 33.107087900699995, 66.5768522433, - 77.60567588890001, - 133.44698913800002, - 204.65823942799997, - 209.941834059, - 219.91551424899998, - 228.52420672899999, - 231.851953296, - 230.883403844, - 228.21587020099997, - 223.836418157, - 217.381953229, + 80.98775588890001, + 146.04726913800002, + 225.01235942799997, + 235.783434059, + 249.531234249, + 259.598886729, + 262.446153296, + 258.594363844, + 251.013990201, + 239.560258157, + 224.002833229, 171.201570561, 173.36903368199998, 153.622255355, @@ -53930,17 +53930,17 @@ 33.107087900699995, 33.107087900699995, 66.4519072739, - 77.71770040560001, - 133.63646913800002, - 205.108060863, - 213.69647002600001, - 224.189692402, - 235.487067347, - 245.358885338, - 246.688656015, - 240.99938290800003, - 236.854262013, - 226.98467106599998, + 80.88082040560002, + 146.42082913800002, + 226.176500863, + 240.802910026, + 254.915012402, + 267.705787347, + 276.871685338, + 275.329456015, + 257.813422908, + 247.629662013, + 227.37863106599997, 180.120587065, 185.292640872, 162.606942899, @@ -53954,17 +53954,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.7267604056, - 131.843969138, - 201.89608284599998, - 223.12434627200003, - 246.299560681, - 267.88986091099997, - 274.74539323, - 261.573492014, - 263.735546631, - 262.21327119, - 240.81600458399998, + 80.5165604056, + 133.699289138, + 210.367562846, + 250.68866627200003, + 260.004520681, + 300.62026091099995, + 306.68391323, + 266.770092014, + 271.66762663099996, + 278.95343119, + 240.902244584, 192.361402078, 192.84873672, 166.778553579, @@ -53978,17 +53978,17 @@ 31.876305895599998, 31.876305895599998, 65.1760012766, - 59.8595508282, - 98.1156199831, - 157.070028716, - 210.361674999, - 223.17405107399998, - 238.397835362, - 226.881309447, - 232.143917207, - 226.218763938, - 225.49012247500002, - 225.678570567, + 63.5526708282, + 112.2508199831, + 179.57274871599998, + 238.736034999, + 255.062891074, + 271.699955362, + 230.379029447, + 240.80123720699999, + 226.657443938, + 226.178482475, + 229.26097056700002, 157.365395581, 118.957347285, 117.713483262, @@ -54002,17 +54002,17 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.7509387988, - 62.6317308282, - 68.2489608282, - 126.50584758, - 132.455141147, - 177.714098668, - 187.25179222300002, - 189.836427927, - 187.24906536, - 181.503739945, - 123.676909197, + 15.4780187988, + 76.5423308282, + 90.5460808282, + 154.44432758000002, + 163.756501147, + 210.19025866799998, + 218.67607222300003, + 218.09866792699998, + 210.57994536, + 197.507299945, + 130.183029197, 92.5905557596, 31.876305895599998, 31.876305895599998, @@ -54026,17 +54026,17 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.7685787988, - 62.4637308282, - 67.93048082819999, - 126.498621361, - 144.714952078, - 192.394480746, - 189.96784517400002, - 188.220183573, - 182.91113348399998, - 174.159978615, - 120.154255049, + 15.3146987988, + 75.9724508282, + 89.59576082819999, + 153.63258136099998, + 175.262752078, + 224.014840746, + 220.65296517400003, + 215.98026357300003, + 205.832733484, + 190.216218615, + 126.653975049, 90.857940986, 31.876305895599998, 31.876305895599998, @@ -54050,17 +54050,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.48046040560001, - 133.21319913800002, - 204.599739428, - 213.133912117, - 226.786523534, - 228.59273181400002, - 229.62722808, - 229.357743691, - 227.352425061, - 223.305728219, - 216.60977535399996, + 81.01626040560001, + 146.77795913800003, + 225.978939428, + 239.823472117, + 256.218723534, + 258.708131814, + 258.82570807999997, + 255.905543691, + 249.37442506099998, + 238.83772821899998, + 222.94245535399997, 172.193883197, 172.330119026, 153.998246767, @@ -54074,17 +54074,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.5024204056, - 133.12286913800003, - 204.29274942799998, - 208.994799428, - 218.97865715100002, - 235.48930487, - 238.90516555399998, - 237.444433885, - 234.098115684, - 229.43112658599998, - 220.7149922, + 80.8474604056, + 146.24678913800003, + 225.116109428, + 235.279919428, + 243.59589715100003, + 260.84482487, + 268.946565554, + 264.46863388500003, + 255.978275684, + 244.22832658599998, + 226.5051922, 173.244800605, 171.65634912000002, 152.640104396, @@ -54098,17 +54098,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.4618004056, - 133.00871913800003, - 204.21735942799998, - 209.176227799, - 216.586624315, - 226.021556707, - 230.87548296799997, - 231.473216073, - 229.32114053200002, - 224.71908657699998, - 217.59359369199998, + 80.7437604056, + 146.12183913800004, + 225.41359942799997, + 235.805307799, + 246.359744315, + 256.814036707, + 260.726562968, + 258.36265607300004, + 251.370900532, + 239.88068657699998, + 223.40455369199998, 175.40044015200002, 173.340638219, 154.115625559, @@ -54122,17 +54122,17 @@ 33.107087900699995, 33.107087900699995, 66.4067832817, - 77.45364040560001, - 132.871199138, - 204.18240942799997, - 208.946674175, - 212.546025621, - 215.620377974, - 217.2911306, - 217.620149621, - 215.722198259, - 211.66616961100002, - 205.851567429, + 80.82856040560002, + 146.256679138, + 225.43112942799996, + 235.761914175, + 242.61850562100003, + 246.883017974, + 247.6776906, + 244.994509621, + 238.02819825900002, + 226.98128961100002, + 211.823127429, 164.874722101, 171.120106711, 152.376694652, @@ -54146,17 +54146,17 @@ 31.876305895599998, 31.876305895599998, 68.6023191261, - 59.740870828199995, - 97.44613998310001, - 155.894988716, - 208.688919428, - 211.46847942799997, - 212.88633942799999, - 215.60965206, - 223.09695783299998, - 221.986665222, - 218.007351069, - 211.75397047400003, + 63.07407082819999, + 110.77345998310001, + 176.936828716, + 234.953799428, + 240.63231942799996, + 242.71593942799998, + 244.10453206, + 248.70719783299998, + 243.298665222, + 232.892351069, + 217.53581047400002, 148.697301145, 115.49634512899999, 115.34805707999999, @@ -54170,17 +54170,17 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.652928798800001, - 61.9156908282, - 66.9702108282, - 123.066189561, - 125.948799561, - 164.259438716, - 162.877578716, - 160.995168716, - 161.826648716, - 156.736908716, - 116.765049561, + 14.905928798800002, + 74.7933708282, + 87.1919308282, + 144.31362956100003, + 151.086239561, + 193.403878716, + 187.796818716, + 181.486008716, + 183.390288716, + 169.381268716, + 121.94348956099999, 94.20806965290001, 31.876305895599998, 31.876305895599998, @@ -54194,17 +54194,17 @@ 33.107087900699995, 33.107087900699995, 69.9512472562, - 77.5671329879, - 133.022339138, - 203.64675942799997, - 208.01217942799997, - 210.91299942799998, - 213.78327618, - 216.05150790700003, - 218.499109753, - 217.569524209, - 213.404882587, - 207.062682867, + 80.3579729879, + 144.300299138, + 222.83975942799998, + 232.91153942799997, + 239.03763942799998, + 243.20675618, + 244.73506790700003, + 244.975949753, + 239.196644209, + 227.865442587, + 211.923362867, 168.084887712, 170.08494646600002, 151.897466353, @@ -54218,17 +54218,17 @@ 33.107087900699995, 33.107087900699995, 70.123584253, - 77.4718644031, - 132.69119913800003, - 203.64213942799998, - 208.49198345000002, - 215.298628095, - 223.489942103, - 228.524183585, - 230.65473694300002, - 229.57830536800003, - 225.027683587, - 217.61111178, + 80.4316244031, + 145.33667913800002, + 224.026859428, + 234.29618345000003, + 244.676948095, + 254.330342103, + 258.60650358500004, + 257.86353694300004, + 251.85546536800004, + 240.02744358700002, + 222.89375177999997, 175.663577768, 172.564299219, 154.00964487500002, @@ -54242,17 +54242,17 @@ 33.107087900699995, 33.107087900699995, 69.83310113120001, - 77.4016804056, - 132.604379138, - 203.78646942799998, - 210.576183625, - 216.703344213, - 218.476965258, - 227.92662907000002, - 236.82442513, - 234.305609281, - 227.293843483, - 216.275362476, + 80.4043204056, + 145.80049913800002, + 224.93922942799998, + 237.374663625, + 246.877744213, + 249.698805258, + 257.94766907, + 263.60814513, + 256.156569281, + 241.975523483, + 221.449402476, 170.932583777, 171.946066195, 153.328241727, @@ -54266,17 +54266,17 @@ 33.107087900699995, 33.107087900699995, 69.83310113120001, - 77.37846040560001, - 132.58445913800003, - 208.30887579699998, - 228.663966601, - 231.267789462, - 233.352963414, - 233.686542772, - 232.822395156, - 230.559838577, - 225.54446657900002, - 219.174923379, + 80.41638040560001, + 145.97229913800004, + 229.92739579699997, + 255.792806601, + 261.667749462, + 264.718923414, + 263.826422772, + 259.625755156, + 252.495078577, + 240.39126657900002, + 224.32092337900002, 178.77743081699998, 173.309140689, 154.67514706600002, @@ -54290,17 +54290,17 @@ 33.107087900699995, 33.107087900699995, 69.83310113120001, - 77.40438040560001, - 132.874005407, - 219.45810867, - 241.741226663, - 267.49468268699997, - 269.54979669, - 267.15167093599996, - 265.712991717, - 264.110507452, - 249.315140033, - 226.915012208, + 80.1210604056, + 146.011605407, + 240.38778867, + 267.712946663, + 296.99120268699994, + 300.53767669, + 297.514790936, + 293.030951717, + 286.431267452, + 264.24438003299997, + 231.573132208, 180.041193143, 173.90315999499998, 155.36426346800002, @@ -54314,17 +54314,17 @@ 31.876305895599998, 31.876305895599998, 68.6023191261, - 59.712460828199994, - 97.16923998310001, - 155.389338716, - 208.22388942799998, - 211.254549428, - 212.842299428, - 213.10409676, - 224.51689218299998, - 230.15576073399998, - 224.91836251599997, - 215.912951336, + 62.12186082819999, + 110.04471998310001, + 176.305458716, + 234.67748942799997, + 240.80750942799997, + 243.40653942799997, + 242.52745676, + 251.074412183, + 251.99456073399998, + 239.56756251599998, + 220.262551336, 149.481020513, 115.381513985, 115.34805707999999, @@ -54338,17 +54338,17 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.644348798800001, - 61.675859474999996, - 66.6879408282, - 124.385829561, - 127.304259561, - 164.197158716, - 164.358888716, - 163.343028716, - 161.101334899, - 157.194978716, - 115.784649561, + 13.852028798800001, + 74.420819475, + 87.5067808282, + 150.610349561, + 156.332179561, + 194.018718716, + 193.001728716, + 189.22310871599998, + 182.217694899, + 171.33137871600002, + 120.102049561, 97.63438750239999, 31.876305895599998, 31.876305895599998, @@ -54362,17 +54362,17 @@ 33.107087900699995, 33.107087900699995, 69.96274588520001, - 77.53823760859999, - 132.377473664, - 203.346789428, - 208.08780942799999, - 211.208799428, - 212.92725942799999, - 214.28208382100001, - 227.59987052000002, - 230.578468181, - 225.346857945, - 216.142191355, + 79.60715760859999, + 145.292033664, + 224.482229428, + 234.73400942799998, + 241.260279428, + 244.16377942799997, + 244.511483821, + 254.75843052000002, + 252.655268181, + 239.96869794499997, + 220.946271355, 172.890876477, 168.587904659, 150.775396235, @@ -54386,17 +54386,17 @@ 33.107087900699995, 33.107087900699995, 70.009829063, - 77.3939726258, - 132.270479138, - 203.23719942799997, - 207.930399428, - 210.98658942799997, - 213.605958374, - 216.855605305, - 222.042355084, - 222.62467339600002, - 217.95480130800001, - 211.196114359, + 79.3891726258, + 145.197999138, + 224.42911942799998, + 234.43475942799998, + 240.70062942799998, + 244.343518374, + 246.413805305, + 248.564995084, + 244.18999339600003, + 232.26552130800002, + 215.631634359, 172.219932514, 170.274739591, 152.007691751, @@ -54410,17 +54410,17 @@ 33.107087900699995, 33.107087900699995, 70.0072888922, - 77.411980937, - 132.371909138, - 202.97694942799998, - 207.45444942799998, - 211.904144927, - 219.36555209399998, - 224.571010387, - 221.685140745, - 215.147379312, - 212.783856326, - 208.091882678, + 78.893180937, + 143.977189138, + 222.668589428, + 232.81528942799997, + 240.851424927, + 249.448152094, + 253.605730387, + 244.866180745, + 226.099619312, + 220.674056326, + 210.11656267799998, 171.51776048099998, 169.837872588, 151.853574438, @@ -54434,17 +54434,17 @@ 33.107087900699995, 33.107087900699995, 69.97085777000001, - 80.7964440625, - 132.44429913800002, - 203.00478942799998, - 207.53412942799997, - 210.72870942799997, - 212.415565287, - 213.545979445, - 213.13443602499999, - 210.287260627, - 205.80116601099996, - 199.98178577, + 82.1537240625, + 143.89585913800002, + 222.68342942799998, + 233.26024942799998, + 239.93898942799999, + 242.930365287, + 242.886459445, + 239.269916025, + 230.515700627, + 218.19960601099996, + 203.12190576999998, 169.91404649799998, 169.805917913, 151.615885253, @@ -54458,17 +54458,17 @@ 33.107087900699995, 33.107087900699995, 70.3854923508, - 81.0552745438, - 132.38219913800003, - 203.07693942799997, - 207.94479942799998, - 213.704818935, - 220.208640069, - 221.470293435, - 220.399473444, - 217.89849526, - 213.11265110300002, - 205.921017414, + 82.3852345438, + 144.21819913800005, + 223.86669942799998, + 235.05399942799997, + 244.60429893499997, + 252.837200069, + 253.454093435, + 249.283593444, + 241.50869526, + 228.58001110300003, + 210.597377414, 171.497147801, 170.53060463900002, 151.881904481, @@ -54482,17 +54482,17 @@ 31.876305895599998, 31.876305895599998, 69.12727279849999, - 63.392693688899996, - 96.7089995768, - 155.066058716, - 208.31733942799997, - 211.62591942799997, - 214.46929117800002, - 216.578905956, - 216.157964885, - 213.534388751, - 209.034354387, - 202.540891602, + 65.00021368889999, + 110.34091957679999, + 177.59009871599997, + 236.62221942799997, + 243.33523942799997, + 247.12877117800002, + 247.967265956, + 244.423164885, + 236.49566875099998, + 224.377994387, + 207.23965160199998, 152.70658983599998, 115.70391593999999, 115.34805707999999, @@ -54506,17 +54506,17 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.9209066483, - 61.3178711192, - 66.3965808282, - 124.541079561, - 128.53065933899998, - 172.714827594, - 178.616887062, - 177.86515669699997, - 171.185329274, - 163.14107105500003, - 117.633789612, + 16.417906648299997, + 74.8590311192, + 88.6953808282, + 152.614839561, + 159.921419339, + 205.01622759400001, + 209.61764706199997, + 205.400196697, + 193.444049274, + 177.76187105500003, + 121.929949612, 97.63831956339999, 31.876305895599998, 31.876305895599998, @@ -54530,17 +54530,17 @@ 33.107087900699995, 33.107087900699995, 70.3106119435, - 80.98379805969999, - 131.998529138, - 202.90185942799997, - 208.937305174, - 226.550990201, - 245.238438151, - 254.609339592, - 259.41732079599996, - 260.901465876, - 248.988036495, - 231.238694828, + 82.29735805969999, + 145.116369138, + 224.586579428, + 236.083265174, + 257.096630201, + 276.769638151, + 285.035819592, + 286.61360079599996, + 282.881305876, + 263.29139649499996, + 235.240294828, 187.85440626899998, 181.883823438, 158.51372840899998, @@ -54554,17 +54554,17 @@ 33.107087900699995, 33.107087900699995, 69.88910110249999, - 80.6574677291, - 131.87081913800003, - 202.78786234700002, - 213.966718184, - 235.696837928, - 250.56683976000002, - 260.52690793000005, - 253.795118112, - 245.89867826999998, - 230.976475243, - 218.499491967, + 81.8717877291, + 144.86749913800003, + 224.290422347, + 240.843598184, + 265.530437928, + 281.22443976, + 289.96230793000007, + 271.396758112, + 265.23383827, + 241.980995243, + 222.259331967, 181.486020301, 173.903343234, 153.02433753100001, @@ -54578,17 +54578,17 @@ 33.107087900699995, 33.107087900699995, 69.8990998023, - 80.65225126540001, - 131.791589138, - 202.805364718, - 218.178425149, - 234.89755882300003, - 236.113812688, - 236.19129650099998, - 235.38080059, - 232.97748916300003, - 228.429540395, - 220.42538503699998, + 81.7905712654, + 144.546829138, + 223.922804718, + 237.28378514899998, + 263.557358823, + 266.022292688, + 265.381816501, + 261.81492059000004, + 254.60232916300004, + 242.47766039500002, + 221.628305037, 176.704516295, 171.37767475500002, 152.88116227999998, @@ -54602,17 +54602,17 @@ 33.107087900699995, 33.107087900699995, 69.92872631430001, - 80.66625447640001, - 131.75723913800002, - 202.52418942799997, - 207.43269942799998, - 209.326845258, - 209.13042725199998, - 208.64084616699998, - 215.28538466400002, - 209.377521058, - 207.216993739, - 204.429438588, + 81.63309447640002, + 144.242719138, + 223.64410942799998, + 234.87033942799997, + 236.03984525799999, + 227.09538725199997, + 221.35800616699998, + 242.711384664, + 224.97756105800002, + 220.027033739, + 207.096798588, 170.482011034, 169.389215938, 150.876189156, @@ -54626,17 +54626,17 @@ 33.107087900699995, 33.107087900699995, 70.5881472472, - 81.18888727720001, - 131.82289281500002, - 202.44453942799998, - 207.17595942799997, - 210.675489328, - 213.80871214200002, - 215.707525246, - 215.255988219, - 212.782358036, - 208.200115793, - 205.175756625, + 81.7422872772, + 143.77161281500003, + 223.199419428, + 233.94635942799997, + 240.912009328, + 244.98727214200002, + 245.81960524599998, + 242.58394821899998, + 234.92583803600002, + 222.671195793, + 208.75587662499998, 171.221833205, 169.922150884, 151.357198363, @@ -54650,17 +54650,17 @@ 31.876305895599998, 31.876305895599998, 69.1023640495, - 63.3310847072, - 96.2213983483, - 154.378668716, - 207.67125942799998, - 211.21473942799997, - 213.045369428, - 213.32487942799997, - 212.16987942799997, - 209.43483942799998, - 204.84243942799998, - 201.714417277, + 64.0594847072, + 109.6721183483, + 176.745628716, + 236.15565942799998, + 243.33309942799997, + 246.332009428, + 245.33931942799998, + 240.76399942799998, + 232.26699942799996, + 219.661159428, + 205.14345727699998, 150.775396235, 115.34805707999999, 115.34805707999999, @@ -54674,17 +54674,17 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 14.8920166483, - 61.230803028100006, - 65.6578885857, - 123.604179561, - 127.022889561, - 164.207028716, - 164.496138716, - 163.358838716, - 160.768398716, - 156.131838716, - 117.76538741, + 15.4952566483, + 74.2109630281, + 87.3062485857, + 151.216259561, + 158.130129561, + 196.440748716, + 195.54105871599998, + 191.05987871600001, + 183.02263871600002, + 170.208718716, + 120.73778741, 97.63438750239999, 31.876305895599998, 31.876305895599998, @@ -54698,17 +54698,17 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 57.2062588005, - 78.45248379030001, - 136.02617913800003, - 206.789829428, - 210.166449428, - 212.00891394699997, - 213.81195427999998, - 214.17154241799997, - 211.709137161, - 207.195749554, - 204.08433551599998, + 57.638458800500004, + 90.6887237903, + 156.94009913800002, + 233.50810942799998, + 240.400689428, + 243.47051394699997, + 244.11235427999998, + 241.27074241799997, + 233.29513716099999, + 221.079429554, + 206.90601551599997, 219.22265568, 169.857476625, 169.178864766, @@ -54722,17 +54722,17 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.9723397584, - 78.56080180279999, - 135.93275913800002, - 206.59986942799998, - 209.83794942799997, - 217.30319735299997, - 227.395539613, - 227.11790127199998, - 224.489243692, - 218.857781542, - 207.066927325, + 57.319019758399996, + 90.53448180279999, + 156.56143913800003, + 232.81106942799997, + 239.28110942799998, + 247.60071735299996, + 256.522499613, + 253.18638127199998, + 245.545203692, + 232.642381542, + 209.818447325, 219.513533787, 169.83029883999998, 169.360577727, @@ -54746,17 +54746,17 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.5956796502, - 78.2947538714, - 135.772889138, - 206.360829428, - 210.24325304, - 219.380418449, - 225.827731841, - 225.055277797, - 222.21426332299998, - 217.230887415, - 212.401905148, + 56.914439650199995, + 90.3057138714, + 156.156129138, + 232.032429428, + 238.92205304, + 249.28053844899998, + 254.84721184100002, + 251.174517797, + 243.21158332299999, + 230.78884741500002, + 215.037145148, 220.905786517, 170.662971471, 169.766650712, @@ -54770,17 +54770,17 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.7922995448, - 78.2502834316, - 135.730568798, - 212.677307384, - 231.72189287999998, - 242.835604286, - 250.478029102, - 248.00310074799998, - 239.67919506099997, - 228.89729461099998, - 222.127224954, + 56.915379544800004, + 90.0016434316, + 156.02404879800002, + 238.51162738399998, + 260.78113288000003, + 272.828684286, + 279.222189102, + 273.666900748, + 260.187995061, + 241.823894611, + 224.36802495400002, 232.774019853, 174.977792222, 171.446330074, @@ -54794,17 +54794,17 @@ 33.107087900699995, 33.107087900699995, 33.107087900699995, - 56.3035605711, - 78.18330040560001, - 135.566579138, - 207.228864153, - 224.253234823, - 240.07067387, - 242.78696451000002, - 246.313268108, - 241.736169192, - 234.296057828, - 224.495000116, + 56.4725205711, + 89.6293004056, + 155.43373913800002, + 231.83654415299998, + 251.874474823, + 269.35871387, + 263.97264451, + 272.257308108, + 262.616449192, + 247.43017782799998, + 226.802480116, 230.926469628, 173.202919624, 172.218047644, @@ -54819,16 +54819,16 @@ 31.876305895599998, 31.876305895599998, 54.9551974171, - 60.399670828199994, - 100.17925998310001, - 159.136987412, - 227.107650118, - 238.64659256, - 239.810463661, - 240.021779859, - 241.842236569, - 237.128294175, - 224.91951022, + 72.1503908282, + 120.73889998310001, + 185.465787412, + 257.181130118, + 269.95059255999996, + 270.13158366100004, + 267.040899859, + 263.437356569, + 250.569534175, + 227.09371022000002, 232.24722252299998, 154.424121275, 118.031625811, @@ -54843,16 +54843,16 @@ 31.876305895599998, 31.876305895599998, 18.171034497799997, - 12.8101787988, - 64.7242908282, - 69.1385208282, - 125.784939561, - 127.511709561, - 163.282878716, - 158.579628716, - 159.684564517, - 155.178466357, - 155.42632409099997, + 21.9822987988, + 82.91105082819999, + 94.0111608282, + 154.90185956099998, + 157.908029561, + 192.682478716, + 176.303948716, + 179.545564517, + 166.928666357, + 155.51692409099996, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -54867,16 +54867,16 @@ 33.107087900699995, 33.107087900699995, 56.58880349539999, - 78.5988589592, - 134.67083913800002, - 205.84341942799998, - 209.33805942799998, - 211.10619942799997, - 211.47798942799997, - 210.47922942799997, - 207.93450942799998, - 203.44587942799998, - 204.199575127, + 87.8749789592, + 145.907919138, + 230.80613942799997, + 238.32057942799997, + 241.50255942799996, + 241.02682942799996, + 237.05270942799996, + 229.25958942799997, + 216.843839428, + 206.430735127, 216.706946524, 168.489065812, 168.489065812, @@ -54891,16 +54891,16 @@ 33.107087900699995, 33.107087900699995, 56.7652937465, - 78.6088206922, - 134.64041913800003, - 205.68522942799999, - 209.12528232900002, - 211.41353593000002, - 218.15252141000002, - 220.708930034, - 218.999452173, - 214.68371537000002, - 209.02646295899999, + 82.6254606922, + 146.15565913800003, + 230.98150942799998, + 237.97828232900002, + 235.92193593000002, + 238.87020141, + 237.379610034, + 233.784812173, + 222.90007537000002, + 209.114662959, 219.62400217500002, 170.53271117399999, 169.43891061, @@ -54915,16 +54915,16 @@ 33.107087900699995, 33.107087900699995, 56.956353165900005, - 77.9664829325, - 135.197489138, - 203.54355942799998, - 209.32818942799997, - 211.185969428, - 211.62897942799998, - 210.788669863, - 208.305030922, - 203.652869888, - 203.698847279, + 78.7802429325, + 154.443809138, + 219.078239428, + 238.72542942799998, + 242.122969428, + 241.79693942799997, + 237.899509863, + 230.016270922, + 217.080949888, + 204.232447279, 216.952387416, 168.55294360000002, 168.489065812, @@ -54939,16 +54939,16 @@ 33.107087900699995, 33.107087900699995, 58.1075231296, - 79.703807573, - 136.521708448, - 206.590620865, - 209.582819561, - 211.468657576, - 211.66290301600003, - 210.31644942799997, - 207.87046899700002, - 203.286790599, - 204.180268026, + 89.844647573, + 155.955868448, + 232.32634086500002, + 239.04317956100002, + 242.352217576, + 241.61354301600002, + 237.04268942799996, + 229.03550899700002, + 216.358310599, + 205.962988026, 217.179633282, 168.99707058200002, 168.97779117, @@ -54963,16 +54963,16 @@ 33.107087900699995, 33.107087900699995, 61.214324398500004, - 78.6614109267, - 135.340649497, - 206.43384942799997, - 210.192579428, - 212.06976942799997, - 212.389479428, - 211.289469428, - 208.572159428, - 203.727159428, - 204.087045127, + 90.66837092669999, + 157.148049497, + 234.77392942799997, + 242.246179428, + 245.31764942799998, + 244.36975942799998, + 239.94522942799998, + 231.59395942799998, + 218.083079428, + 206.23948512700002, 216.706946524, 168.489065812, 168.489065812, @@ -54987,16 +54987,16 @@ 31.876305895599998, 31.876305895599998, 59.145902437000004, - 60.364869442899995, - 99.61438998310001, - 157.656378716, - 209.512419428, - 211.374824376, - 212.32676470200002, - 211.43748262199998, - 208.783846956, - 202.924124648, - 204.041055453, + 71.6673894429, + 120.36410998310001, + 184.551698716, + 240.15073942799998, + 243.208064376, + 243.07084470200002, + 238.75376262199998, + 230.667366956, + 214.066404648, + 204.334295453, 217.404627504, 151.02089641900002, 115.34805707999999, @@ -55011,16 +55011,16 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 12.6170987988, - 63.600744562100004, - 68.9078508282, - 123.198309561, - 125.168079561, - 156.784968716, - 154.779498716, - 151.180308716, - 153.735888716, - 155.012454414, + 16.5857787988, + 76.34462456210001, + 95.49581082819999, + 145.98442956099998, + 150.864879561, + 171.10636871600002, + 164.897218716, + 155.18522871599998, + 164.66760871600002, + 155.258734414, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -55035,16 +55035,16 @@ 33.107087900699995, 33.107087900699995, 60.2497903316, - 78.31897751380001, - 134.255080254, - 205.161879428, - 206.01423942799997, - 207.22551942799998, - 201.37206942799997, - 210.43688523900002, - 208.129088287, - 203.49138233300002, - 204.240769902, + 88.1618175138, + 143.379200254, + 230.285719428, + 225.76219942799997, + 227.89991942799998, + 208.08238942799997, + 237.09244523900003, + 229.337728287, + 216.43990233300002, + 205.565249902, 217.257503008, 168.77767391700002, 168.489065812, @@ -55059,16 +55059,16 @@ 33.107087900699995, 33.107087900699995, 60.0799069163, - 77.81299052460001, - 134.67299913800002, - 207.91751255, - 229.9038038, - 243.852196988, - 251.50610423, - 253.080884378, - 243.625487268, - 233.52305449600001, - 227.401000185, + 88.1630305246, + 154.19899913800003, + 233.38771255, + 259.2038438, + 269.277076988, + 271.73814423, + 270.952284378, + 251.581327268, + 236.288614496, + 227.419720185, 233.054605605, 175.465536418, 172.642907076, @@ -55083,16 +55083,16 @@ 33.107087900699995, 33.107087900699995, 59.575491187900006, - 77.7342904056, - 134.59001913800003, - 207.251477775, - 214.456009616, - 225.252708945, - 230.272887523, - 230.796812224, - 228.489644509, - 223.799686586, - 221.736734171, + 87.6833304056, + 154.22077913800004, + 233.34775777500002, + 243.910369616, + 255.839628945, + 259.742287523, + 257.036052224, + 249.40984450899998, + 236.660366586, + 223.132134171, 223.675506074, 172.458072087, 171.221855786, @@ -55107,16 +55107,16 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 12.470548798800001, - 63.204940828199994, - 66.5649408282, - 124.696659561, - 126.67056956100001, - 162.522318716, - 161.555718716, - 158.926488716, - 152.515188716, - 155.014404414, + 15.7191087988, + 75.5784208282, + 83.1738208282, + 153.41117956099998, + 156.95076956100002, + 191.922038716, + 187.927398716, + 179.912088716, + 160.934308716, + 155.262884414, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -55131,16 +55131,16 @@ 33.107087900699995, 33.107087900699995, 60.471993278700005, - 78.2980611397, - 134.756251905, - 205.380639428, - 209.160519428, - 211.20668359500002, - 212.25172813, - 211.800072241, - 208.947495077, - 204.116215203, - 204.08738068899999, + 88.4733811397, + 155.37861190499999, + 232.373879428, + 240.160199428, + 243.65068359500003, + 243.59968813, + 239.779272241, + 231.180215077, + 217.995615203, + 204.36110068899998, 216.75021975899998, 168.489065812, 168.489065812, @@ -55155,16 +55155,16 @@ 31.876305895599998, 31.876305895599998, 58.9608671368, - 60.8486959361, - 99.203868884, - 156.939482798, - 208.77393942799998, - 210.80256942799997, - 211.27140942799997, - 210.30285942799998, - 207.66072942799997, - 203.06871942799998, - 203.738745127, + 64.1294159361, + 119.287348884, + 183.294802798, + 238.725459428, + 242.25976942799997, + 241.88660942799996, + 237.88745942799997, + 229.873369428, + 216.96687942799997, + 205.375425127, 216.706946524, 150.775396235, 115.34805707999999, @@ -55179,16 +55179,16 @@ 31.876305895599998, 31.876305895599998, 21.5973523472, - 12.3695987988, - 63.4701708282, - 68.1415008282, - 124.73064956099999, - 126.740919561, - 162.633138716, - 161.62729871599998, - 158.941128716, - 154.529508716, - 155.471244414, + 15.6477587988, + 83.5062108282, + 93.8920608282, + 153.621369561, + 157.238719561, + 192.414418716, + 188.35181871600003, + 180.16932871600002, + 167.895708716, + 157.03824441400002, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -55203,16 +55203,16 @@ 33.107087900699995, 33.107087900699995, 60.177014169500005, - 78.0880628245, - 134.113859138, - 204.76687328900002, - 210.49514002200002, - 220.285643386, - 230.698664716, - 233.985194777, - 232.913677933, - 227.94928589000003, - 223.528582021, + 81.6999428245, + 153.829819138, + 230.23671328900002, + 239.263940022, + 249.800483386, + 259.167784716, + 259.827194777, + 253.683557933, + 241.26096589000002, + 225.21334202100002, 229.509496485, 173.340909712, 171.072895935, @@ -55227,16 +55227,16 @@ 33.107087900699995, 33.107087900699995, 63.8589395508, - 78.4059646531, - 133.68464913800003, - 202.91400942799999, - 206.28801942799998, - 207.678169823, - 208.431084837, - 210.228684928, - 207.901277018, - 203.75369761500002, - 204.820477173, + 81.0502046531, + 144.41816913800002, + 219.87260942799998, + 229.76721942799998, + 229.980849823, + 229.199644837, + 234.631164928, + 227.937637018, + 216.33041761500002, + 206.074117173, 217.569462338, 168.597588932, 168.489065812, @@ -55251,16 +55251,16 @@ 33.107087900699995, 33.107087900699995, 64.4028736323, - 78.4166401083, - 133.598819138, - 204.48417942799998, - 208.09494942799998, - 211.54064288299998, - 214.94243966300002, - 214.81770934600002, - 211.98979852600002, - 207.37826356, - 207.619542079, + 81.1083201083, + 144.979899138, + 229.03985942799997, + 236.82214942799996, + 242.088322883, + 244.792079663, + 241.870669346, + 233.593358526, + 221.11882355999998, + 209.308542079, 219.181938621, 169.432359631, 168.56968848900001, @@ -55275,16 +55275,16 @@ 33.107087900699995, 33.107087900699995, 64.30970058, - 78.152177952, - 133.93304913800003, - 204.46032942799997, - 208.236603623, - 212.67693298300003, - 214.014916515, - 212.994819433, - 210.20257023599999, - 202.324359516, - 205.84366409999998, + 86.378177952, + 152.76644913800004, + 229.642889428, + 237.208923623, + 243.34913298300003, + 243.87767651500002, + 239.875939433, + 231.54953023599998, + 207.31879951599998, + 205.86058409999998, 217.9260735, 168.86329233, 168.489065812, @@ -55299,16 +55299,16 @@ 33.107087900699995, 33.107087900699995, 64.0436862193, - 77.9862001312, - 133.22820999599998, - 201.222129428, - 196.51989942799997, - 198.23262942799997, - 196.934439428, - 197.134119428, - 198.84159942799997, - 197.87490942799997, - 203.569605127, + 78.48784013119999, + 139.08204999599997, + 209.970169428, + 196.91733942799996, + 200.59742942799997, + 197.804159428, + 198.231199428, + 202.05327942799997, + 200.00030942799998, + 204.906765127, 216.706946524, 168.489065812, 168.489065812, @@ -55323,15 +55323,15 @@ 31.876305895599998, 31.876305895599998, 63.2692404363, - 61.035690868699994, - 99.0962456372, - 155.29418710899998, - 206.13336942799998, - 206.88051942799999, - 207.80670942799998, - 204.99024942799997, - 200.149509428, - 196.76946942799998, + 68.2561308687, + 117.0942456372, + 174.51650710899997, + 228.687849428, + 227.684879428, + 230.36734942799998, + 220.33516942799997, + 205.74770942799998, + 197.45098942799999, 203.001675127, 216.706946524, 150.786658811, @@ -55347,16 +55347,16 @@ 31.876305895599998, 31.876305895599998, 25.0236701967, - 12.2117987988, - 63.6590638575, - 63.2412110474, - 117.54795268899998, - 122.853140522, - 158.148050174, - 159.461486923, - 157.128887342, - 154.971130406, - 156.139762219, + 13.7287187988, + 66.9453438575, + 66.1266910474, + 122.25883268899999, + 139.07478052200003, + 173.662930174, + 178.999166923, + 172.092847342, + 167.280770406, + 156.65752221900001, 133.933229452, 98.6349997115, 31.876305895599998, @@ -55371,16 +55371,16 @@ 33.107087900699995, 33.107087900699995, 65.08633296139999, - 79.04968097, - 131.218954811, - 204.32437475799998, - 203.83068942799997, - 205.70973942799998, - 206.81484942799997, - 201.92544942799998, - 196.320099428, - 202.523259428, - 203.150175127, + 85.98092097, + 131.367474811, + 229.59369475799997, + 217.98328942799998, + 223.49385942799998, + 226.52636942799998, + 210.31368942799998, + 196.490219428, + 215.924859428, + 203.303095127, 216.706946524, 168.489065812, 168.489065812, @@ -55395,16 +55395,16 @@ 33.107087900699995, 33.107087900699995, 64.3072508739, - 78.14492909, - 133.69860204199998, - 204.45102942799997, - 208.906244283, - 217.454214375, - 222.115833594, - 215.99704001, - 212.064732375, - 206.13370218, - 208.130563172, + 85.35176909, + 153.07024204199996, + 230.93334942799999, + 239.40852428300002, + 249.66729437499998, + 253.524513594, + 244.31796001, + 234.735932375, + 220.00790218, + 208.308323172, 217.121738483, 168.489065812, 168.489065812, @@ -55419,16 +55419,16 @@ 33.107087900699995, 33.107087900699995, 63.6085891304, - 77.6648992765, - 133.533539138, - 204.07827942799997, - 207.79515942799998, - 210.26829495100003, - 208.72349393899998, - 210.274908171, - 204.562488541, - 201.566257775, - 207.449225447, + 84.8532592765, + 152.220339138, + 229.184159428, + 236.718559428, + 240.95541495100002, + 232.37957393899998, + 237.475828171, + 218.964168541, + 211.21589777499997, + 208.571065447, 217.225333288, 168.98817268000002, 168.640211285, @@ -55443,16 +55443,16 @@ 33.107087900699995, 33.107087900699995, 63.6358553966, - 77.77505028760001, - 133.43831913800003, - 204.105909428, - 207.83043942799998, - 210.06084942799998, - 210.57309942799998, - 205.949379428, - 206.907849428, - 202.46589942799997, - 206.935292976, + 84.53773028760001, + 152.24131913800002, + 229.653589428, + 237.29739942799998, + 241.156849428, + 240.81861942799998, + 224.186579428, + 228.55368942799998, + 215.90261942799998, + 208.207252976, 216.706946524, 168.489065812, 168.489065812, @@ -55467,16 +55467,16 @@ 33.107087900699995, 33.107087900699995, 64.1057948287, - 77.99794771939999, - 133.406487138, - 204.14445942799998, - 208.08090764599999, - 211.284889668, - 212.41039127899998, - 211.471669385, - 208.694528973, - 204.101138657, - 208.414135242, + 84.79294771939999, + 152.688927138, + 230.20373942799998, + 238.411987646, + 243.294369668, + 243.49703127899997, + 239.445389385, + 231.048168973, + 217.834738657, + 209.701295242, 217.90302774, 169.32847182600003, 168.5309635, @@ -55491,16 +55491,16 @@ 31.876305895599998, 31.876305895599998, 66.2036203635, - 60.5534722799, - 98.13431327340001, - 156.008568716, - 207.04275942799998, - 208.618899428, - 210.78369942799998, - 207.39363942799997, - 207.11409942799997, - 202.70523942799997, - 207.00975297600002, + 67.1555122799, + 117.5825932734, + 182.29356871599998, + 234.987079428, + 236.354139428, + 241.51629942799997, + 229.68139942799996, + 229.26845942799997, + 216.76623942799998, + 208.476512976, 216.706946524, 150.775396235, 115.34805707999999, @@ -55515,16 +55515,16 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.8155287988, - 62.673294274599996, - 67.1195208282, - 124.145769561, - 126.515289561, - 162.674208716, - 153.992178716, - 152.120868716, - 154.320588716, - 158.71597226400002, + 18.0213287988, + 81.1184542746, + 92.3518408282, + 153.552889561, + 157.935769561, + 193.776448716, + 162.995458716, + 158.138588716, + 168.022868716, + 159.96517226400002, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -55539,16 +55539,16 @@ 33.392057242599996, 33.3695262576, 68.2914835058, - 78.8975190132, - 133.861613972, - 202.855355006, - 204.05373942799997, - 209.988699428, - 196.98675942799997, - 201.680139428, - 198.426099428, - 199.57182942799997, - 203.378175127, + 84.6647990132, + 152.21813397199998, + 222.027475006, + 219.29289942799997, + 240.99233942799998, + 197.91743942799997, + 209.66937942799998, + 201.098379428, + 205.72842942799997, + 204.26461512699998, 216.706946524, 168.500818925, 168.921224596, @@ -55563,16 +55563,16 @@ 34.095540346300005, 34.4217098373, 68.95656775009999, - 79.0843792145, - 133.669292476, - 203.997849428, - 207.92595942799997, - 210.37485942799998, - 210.98706942799998, - 210.01593942799997, - 207.279009428, - 202.754469428, - 203.602185127, + 85.1516192145, + 152.50161247600002, + 230.01496942799997, + 238.30407942799997, + 242.66149942799998, + 242.52606942799997, + 238.27325942799996, + 229.88104942799998, + 217.079429428, + 205.131425127, 216.706946524, 168.489065812, 168.489065812, @@ -55587,16 +55587,16 @@ 34.072259395399996, 34.376078837, 68.8762144113, - 78.7213555203, - 133.25604473799999, - 203.90547942799998, - 207.906309428, - 210.29082942799997, - 210.86331942799998, - 209.95791942799997, - 207.239499428, - 202.74387942799999, - 203.645175127, + 84.78307552029999, + 152.385564738, + 229.961559428, + 238.26442942799997, + 242.31742942799997, + 242.04587942799998, + 238.06487942799998, + 229.75389942799998, + 217.03619942799997, + 205.307895127, 216.706946524, 168.489065812, 168.489065812, @@ -55611,16 +55611,16 @@ 33.8001186573, 34.1416222222, 68.6781547491, - 78.40913474039999, - 132.999454338, - 203.623899428, - 207.35049942799998, - 209.468919428, - 210.11724942799998, - 209.322339428, - 206.80923942799998, - 202.511169428, - 203.593605127, + 83.9574547404, + 141.425494338, + 228.54201942799997, + 235.999979428, + 239.211439428, + 239.47816942799997, + 236.04973942799998, + 228.468559428, + 216.251449428, + 205.114045127, 216.706946524, 168.489065812, 168.489065812, @@ -55635,16 +55635,16 @@ 33.2162920253, 33.3363472554, 68.1781353352, - 78.23130048460001, - 133.01009913800002, - 203.579229428, - 205.25592942799997, - 206.523489886, - 206.58714558900002, - 198.66809400600002, - 204.56997317399998, - 202.82508234999997, - 203.361665389, + 83.07710048460001, + 142.327699138, + 228.735229428, + 225.86676942799997, + 226.83800988599998, + 225.523465589, + 201.342414006, + 220.248373174, + 216.78792234999997, + 203.585265389, 216.706946524, 168.489065812, 168.489065812, @@ -55659,16 +55659,16 @@ 31.876305895599998, 31.876305895599998, 66.5327447411, - 60.4854686982, - 97.59759688140001, - 155.554308716, - 207.86394942799998, - 210.88690369499997, - 212.711318659, - 211.81449596699997, - 209.046449314, - 204.488914299, - 205.215083184, + 65.8717886982, + 116.4159568814, + 181.587828716, + 238.48190942799997, + 243.51970369499998, + 244.767878659, + 240.862895967, + 232.484129314, + 219.574874299, + 207.390563184, 217.299449058, 150.775396235, 115.34805707999999, @@ -55683,16 +55683,16 @@ 31.876305895599998, 31.876305895599998, 28.4499880461, - 11.686858798800001, - 62.068660828199995, - 66.8436708282, - 125.18992406199999, - 131.378385095, - 173.809806358, - 170.110039061, - 168.43019070600002, - 166.63628866200003, - 160.323886679, + 17.2408987988, + 80.89162082819999, + 92.45071082820002, + 154.863484062, + 162.634265095, + 204.302606358, + 197.78707906100001, + 190.863990706, + 181.20672866200002, + 160.587686679, 134.407984272, 98.11667474869999, 31.876305895599998, @@ -55707,16 +55707,16 @@ 33.107087900699995, 33.107087900699995, 67.4926085616, - 77.8314311783, - 132.25706913800002, - 203.34937065699998, - 211.170680081, - 231.206233164, - 244.949315898, - 245.6747431, - 234.36238491699999, - 223.143973604, - 217.06204451, + 81.6755111783, + 134.866189138, + 227.880370657, + 234.104560081, + 254.182153164, + 275.088475898, + 270.7009831, + 256.720184917, + 237.490693604, + 219.15704451, 220.74618134899998, 171.487835572, 170.530549526, @@ -55731,16 +55731,16 @@ 33.107087900699995, 33.107087900699995, 67.1381684582, - 77.54903857590001, - 132.89261913800001, - 204.61279671100002, - 221.697850916, - 243.243133936, - 247.294453164, - 243.836434502, - 236.265778218, - 228.436595197, - 223.293580627, + 82.65239857590001, + 151.51001913800002, + 230.08731671100003, + 251.304170916, + 274.426813936, + 277.740893164, + 271.35359450199996, + 258.72821821800005, + 243.019955197, + 225.320620627, 229.639300792, 175.027679269, 173.267111776, @@ -55755,16 +55755,16 @@ 33.107087900699995, 33.107087900699995, 66.5574719854, - 77.46618040560001, - 132.81941913800003, - 204.699964601, - 222.179753669, - 241.425725967, - 254.156784001, - 253.379532027, - 243.266394887, - 233.699119928, - 221.09081051299998, + 82.3008204056, + 150.83161913800004, + 229.499564601, + 250.16815366900002, + 270.708005967, + 283.238144001, + 280.005972027, + 264.769634887, + 247.429159928, + 222.69797051299997, 221.588052683, 171.721629148, 170.467264839, @@ -55779,16 +55779,16 @@ 33.107087900699995, 33.107087900699995, 66.76227187479999, - 77.6151190427, - 132.776639138, - 203.12299879999998, - 219.627095352, - 240.29290992900002, - 237.158568974, - 235.257855382, - 232.23551128300002, - 224.344545271, - 214.79149998600002, + 79.1553590427, + 140.833159138, + 215.48975879999998, + 243.861175352, + 270.973629929, + 260.152368974, + 263.692335382, + 255.46911128300002, + 239.33370527099999, + 216.379939986, 220.95895033399998, 171.645244213, 170.80300186300002, @@ -55803,16 +55803,16 @@ 33.107087900699995, 33.107087900699995, 66.961547701, - 77.5610974736, - 132.74786913800003, - 203.758532586, - 212.44948092699997, - 217.363328333, - 220.623592324, - 219.83246767999998, - 217.27051063700003, - 213.2093621, - 210.642507381, + 81.8491374736, + 149.66646913800002, + 228.135892586, + 241.02444092699997, + 239.644128333, + 250.82779232399997, + 247.30910767999998, + 239.57075063700003, + 227.4730421, + 212.685107381, 219.97761011400002, 170.185698645, 169.240674484, @@ -55827,16 +55827,16 @@ 31.876305895599998, 31.876305895599998, 66.1918194813, - 60.2589519068, - 97.3056224284, - 155.034228716, - 207.438784341, - 210.797741219, - 211.675382483, - 206.583763824, - 207.35376036, - 200.863581338, - 204.740705516, + 64.6359119068, + 114.7560224284, + 179.454708716, + 236.153384341, + 241.41018121899998, + 241.71538248299998, + 221.361083824, + 225.48472035999998, + 205.315621338, + 204.849065516, 217.670389171, 150.775396235, 115.34805707999999, @@ -55851,16 +55851,16 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.6442287988, - 62.1887290599, - 66.3070308282, - 123.402281033, - 127.361188189, - 164.533469582, - 162.217161234, - 157.857957873, - 154.531548716, - 155.159274414, + 15.8695887988, + 79.2182490599, + 90.83879082819999, + 152.081081033, + 157.974748189, + 194.640869582, + 189.704361234, + 177.654557873, + 168.788508716, + 155.64991441400002, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -55875,16 +55875,16 @@ 33.107087900699995, 33.107087900699995, 71.77559417169999, - 78.54430038330001, - 132.881660508, - 203.484399428, - 208.302463813, - 223.816760482, - 238.30758999100001, - 227.628710621, - 217.17459017399997, - 208.310165148, - 205.54123895, + 83.20146038330002, + 151.642940508, + 229.506999428, + 238.853863813, + 256.095800482, + 263.335949991, + 246.096710621, + 232.32599017399997, + 214.43672514800002, + 205.74651895, 217.829547982, 169.216481009, 168.543561939, @@ -55899,16 +55899,16 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.6404187988, - 62.0875385356, - 66.61243082819999, - 125.015037362, - 129.78377634, - 179.53417111599998, - 186.46142179, - 180.440482159, - 168.264716523, - 159.774852114, + 16.1897387988, + 80.62901853559998, + 92.3255508282, + 155.003637362, + 155.94485634, + 207.17649111599997, + 214.84058179000002, + 203.664242159, + 183.881676523, + 162.906132114, 133.079947242, 97.63438750239999, 31.876305895599998, @@ -55923,16 +55923,16 @@ 33.107087900699995, 33.107087900699995, 70.9102656636, - 78.1367645655, - 132.818298094, - 203.06958942799997, - 205.18119942799999, - 206.97900942799998, - 206.91798942799997, - 205.59951942799998, - 203.384559428, - 199.65099942799998, - 203.205975127, + 82.2863245655, + 150.298378094, + 227.49638942799996, + 226.86991942799997, + 230.08132942799998, + 228.06394942799997, + 222.937479428, + 216.492919428, + 205.85311942799999, + 203.43005512699997, 216.706946524, 168.489065812, 168.489065812, @@ -55947,16 +55947,16 @@ 33.107087900699995, 33.107087900699995, 71.0642269696, - 78.4037448142, - 132.57324165199998, - 199.96446942799997, - 203.04129942799997, - 206.21835942799999, - 207.84735942799998, - 205.05849942799998, - 201.37581942799997, - 202.94064942799997, - 203.505495127, + 79.07094481419999, + 137.02852165199997, + 206.07574942799997, + 216.00933942799998, + 226.83547942799999, + 231.95139942799997, + 221.13289942799997, + 209.74521942799998, + 217.45224942799996, + 204.192935127, 216.706946524, 168.489065812, 168.489065812, @@ -55971,16 +55971,16 @@ 33.107087900699995, 33.107087900699995, 71.13484557039999, - 78.0564819394, - 132.627205699, - 201.96342942799998, - 203.05884942799997, - 200.52294942799998, - 200.272899428, - 197.41443942799998, - 199.01997942799997, - 198.47082942799997, - 203.124555127, + 78.3185619394, + 143.352165699, + 219.168309428, + 216.150489428, + 206.09630942799998, + 205.399059428, + 198.83371942799997, + 202.48385942799996, + 201.77026942799998, + 203.240435127, 216.706946524, 168.489065812, 168.489065812, @@ -55995,16 +55995,16 @@ 31.876305895599998, 31.876305895599998, 69.84820696710001, - 60.5832454134, - 95.3113601973, - 151.74142004400002, - 198.56361942799998, - 199.69296942799997, - 197.59008942799997, - 199.804219685, - 206.823655705, - 198.423746458, - 204.037365127, + 61.1576854134, + 95.5366401973, + 157.80266004400002, + 201.36617942799998, + 203.95420942799996, + 199.21152942799998, + 203.55445968499998, + 222.622015705, + 200.47506645800001, + 206.524565127, 216.706946524, 150.775396235, 115.34805707999999, @@ -56019,16 +56019,16 @@ 31.876305895599998, 31.876305895599998, 31.876305895599998, - 11.679958798800001, - 61.4949535445, - 64.089262439, - 114.053679561, - 116.746149561, - 152.256348716, - 151.665588716, - 150.614928716, - 150.255108716, - 154.941474414, + 14.934278798800001, + 62.8740335445, + 72.824982439, + 115.801119561, + 122.110629561, + 157.706428716, + 156.261508716, + 153.825328716, + 153.534988716, + 155.097074414, 133.061726657, 97.63438750239999, 31.876305895599998, @@ -56043,16 +56043,16 @@ 33.107087900699995, 33.107087900699995, 70.6639834548, - 77.9400178375, - 132.75502680099999, - 202.922270285, - 207.00045942799997, - 209.54079942799999, - 207.36045942799998, - 206.25756942799998, - 207.50289942799998, - 201.44988942799998, - 204.650235127, + 81.2630978375, + 148.63070680099997, + 226.36635028499998, + 235.57377942799997, + 240.230719428, + 229.495499428, + 225.33304942799998, + 230.49557942799999, + 212.03564942799997, + 208.766635127, 216.706946524, 168.489065812, 168.489065812, @@ -64825,7 +64825,7 @@ ], "bau_critical_load_met": true, "bau_critical_load_met_time_steps": 0, - "annual_calculated_kwh": 1.04806221e6 + "annual_calculated_kwh": 1.12282905e6 }, "Messages": { "errors": [], @@ -64846,6 +64846,7 @@ [ "core_pv.jl_152", [ + "PV inv_eff will be ignored because dc_coupled_with_storage=true. The inverter of the DC coupled PV and electric storage system will be defined by ElectricStorage inverter_efficiency_fraction and rectifier_efficiency_fraction.", "PV inv_eff will be ignored because dc_coupled_with_storage=true. The inverter of the DC coupled PV and electric storage system will be defined by ElectricStorage inverter_efficiency_fraction and rectifier_efficiency_fraction." ] ], @@ -88326,6 +88327,7 @@ 0.0, 0.0 ], + "annual_energy_produced_kwh_bau": 71463.73, "electric_to_load_series_kw": [ 0.0, 0.0, @@ -88335,15 +88337,15 @@ 0.0, 0.0, 0.0, - 0.0, - 6.369, - 10.817, - 22.826, - 31.182, - 28.498, - 23.453, - 16.006, - 4.049, + 3.295, + 17.556, + 26.273, + 48.938, + 61.118, + 55.855, + 45.968, + 31.371, + 7.937, 0.0, 0.0, 0.0, @@ -88358,17 +88360,16 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 6.727, - 11.208, - 13.154, - 12.758, - 18.606, - 23.72, - 16.268, - 0.287, 0.0, + 3.839, + 18.257, + 27.039, + 30.854, + 30.078, + 40.563, + 46.492, + 31.885, + 0.563, 0.0, 0.0, 0.0, @@ -88382,18 +88383,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 6.909, - 11.731, - 14.004, - 13.641, - 10.978, - 23.037, - 17.02, - 4.373, 0.0, 0.0, + 18.613, + 28.064, + 32.519, + 31.809, + 26.589, + 48.014, + 33.359, + 8.571, 0.0, 0.0, 0.0, @@ -88406,17 +88406,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 6.879, - 11.471, - 13.365, - 12.95, - 22.041, - 24.05, - 16.667, - 4.297, 0.0, + -0.0, + 4.074, + 18.555, + 27.555, + 31.268, + 30.453, + 47.058, + 47.137, + 32.667, + 8.422, 0.0, 0.0, 0.0, @@ -88430,17 +88431,17 @@ 0.0, 0.0, 0.0, - 1.103, - 17.612, - 24.837, - 29.327, - 31.258, - 30.851, - 22.911, - 15.33, - 16.223, - 2.059, 0.0, + 2.161, + 34.519, + 48.681, + 57.482, + 61.267, + 60.469, + 44.906, + 30.046, + 31.797, + 4.036, 0.0, 0.0, 0.0, @@ -88454,16 +88455,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 5.352, - 0.821, -0.0, - 4.666, - 17.176, - 23.207, - 16.192, - 4.443, + 2.41, + 15.561, + 6.682, + 4.846, + 14.218, + 39.413, + 45.485, + 31.736, + 8.707, 0.0, 0.0, 0.0, @@ -88478,16 +88480,16 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 4.882, - 9.414, - 11.563, - 11.44, - 19.107, - 23.151, - 15.994, - 4.52, + 1.192, + 14.64, + 23.523, + 27.735, + 27.495, + 44.191, + 45.377, + 31.348, + 8.86, 0.0, 0.0, 0.0, @@ -88503,16 +88505,15 @@ 0.0, 0.0, -0.0, - 0.0, - 6.812, - 11.74, - 14.081, - 13.784, - 22.423, - 24.974, - 17.377, - 5.235, - 0.0, + 3.396, + 18.424, + 28.083, + 32.671, + 32.089, + 48.487, + 48.949, + 34.059, + 10.261, 0.0, 0.0, 0.0, @@ -88528,15 +88529,15 @@ 0.0, 0.0, -0.0, - 6.297, - 10.766, - 12.838, - 12.538, - 10.075, - 22.678, - 16.932, - 5.46, - 0.0, + -0.0, + 17.414, + 26.173, + 30.235, + 29.647, + 24.935, + 47.193, + 33.187, + 10.701, 0.0, 0.0, 0.0, @@ -88552,14 +88553,15 @@ 0.0, 0.0, 0.0, - 5.767, - 5.897, - 3.417, - 7.563, - 7.532, - 17.255, - 10.06, - 1.66, + 2.399, + 16.374, + 16.629, + 11.768, + 19.895, + 20.298, + 33.821, + 19.718, + 3.254, 0.0, 0.0, 0.0, @@ -88575,16 +88577,15 @@ 0.0, 0.0, -0.0, - 0.0, - 0.0, - 8.122, - 10.85, - 4.347, - 2.496, - 4.3, - 14.7, - 5.398, - 0.0, + -0.0, + -0.0, + 20.992, + 26.338, + 13.592, + 9.964, + 13.499, + 28.811, + 10.581, 0.0, 0.0, 0.0, @@ -88600,14 +88601,15 @@ 0.0, 0.0, 0.0, - 5.339, - 10.1, - 12.352, - 12.132, - 19.307, - 23.659, - 16.694, - 5.863, + 1.049, + 15.536, + 24.867, + 29.282, + 28.85, + 44.727, + 46.371, + 32.719, + 11.491, 0.0, 0.0, 0.0, @@ -88623,15 +88625,15 @@ 0.0, 0.0, -0.0, - -0.0, - 5.171, - 9.468, - 11.635, - 11.596, - 19.435, - 23.688, - 16.696, - 5.754, + 1.31, + 15.207, + 23.629, + 27.877, + 27.8, + 44.716, + 46.428, + 32.723, + 11.278, 0.0, 0.0, 0.0, @@ -88647,15 +88649,15 @@ 0.0, 0.0, -0.0, - -0.0, - 6.132, - 10.701, - 7.439, - 3.313, - 12.289, - 20.337, - 13.366, - 6.492, + 2.733, + 17.09, + 26.046, + 19.652, + 11.565, + 29.287, + 39.861, + 26.198, + 12.724, 0.0, 0.0, 0.0, @@ -88671,15 +88673,15 @@ 0.0, 0.0, -0.0, + 0.007, + 13.518, + 7.55, + 14.877, -0.0, - 4.309, - 1.264, - 5.003, - -0.0, - 11.158, - 8.928, - 1.012, - 0.697, + 34.868, + 17.499, + 1.984, + 1.366, 0.0, 0.0, 0.0, @@ -88695,15 +88697,16 @@ 0.0, 0.0, 0.0, + -0.0, + 14.316, + 23.95, + 28.795, + 28.779, + 44.68, + 47.104, + 33.008, + 12.438, 0.0, - 4.716, - 9.632, - 12.104, - 12.095, - 18.748, - 24.033, - 16.841, - 6.346, 0.0, 0.0, 0.0, @@ -88719,15 +88722,14 @@ 0.0, 0.0, -0.0, - -0.0, - 4.224, - 8.772, - 11.167, - 4.48, - 18.37, - 23.505, - 16.626, - 6.466, + 13.351, + 22.265, + 26.96, + 13.853, + 43.938, + 46.07, + 32.587, + 12.674, 0.0, 0.0, 0.0, @@ -88743,16 +88745,15 @@ 0.0, 0.0, -0.0, - -0.0, 0.0, - 3.276, - 5.317, - 4.5, - -0.0, - 8.653, - 6.372, - 0.725, 0.0, + 11.493, + 15.494, + 13.892, + 2.476, + 27.489, + 12.49, + 1.421, 0.0, 0.0, 0.0, @@ -88771,11 +88772,12 @@ -0.0, 0.0, -0.0, - 11.43, - 9.348, -0.0, - 11.049, - 0.716, + 27.474, + 23.393, + -0.0, + 21.657, + 1.404, 0.0, 0.0, 0.0, @@ -88791,15 +88793,15 @@ 0.0, 0.0, 0.0, + 0.087, + 15.477, + 24.61, + 29.514, + -0.0, -0.0, - 5.309, - 9.968, - 12.471, - 0.0, - 0.0, 0.0, - 0.294, - 0.435, + 0.577, + 0.853, 0.0, 0.0, 0.0, @@ -88816,14 +88818,38 @@ 0.0, -0.0, -0.0, + 2.843, + 12.356, + 14.185, + 15.637, + 3.776, + 25.071, + 26.922, + 14.267, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, -0.0, - 3.716, - 4.649, - 5.39, - -0.0, - 9.533, - 13.736, - 7.279, + 1.543, + 14.97, + 23.812, + 28.827, + 29.054, + 47.333, + 47.577, + 34.393, + 14.275, 0.0, 0.0, 0.0, @@ -88838,16 +88864,18 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + 14.144, + 5.201, + 14.848, + 8.73, + 28.031, + 35.045, + 22.214, + 3.956, 0.0, 0.0, - 5.05, - 9.561, - 12.12, - 12.236, - 20.888, - 24.274, - 17.548, - 7.283, 0.0, 0.0, 0.0, @@ -88860,18 +88888,16 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + -0.0, 0.0, -0.0, -0.0, - 4.629, - 0.066, - 4.988, - 1.866, - 10.254, - 17.88, - 11.334, - 2.018, + -0.0, + -0.0, + 3.094, + 1.189, 0.0, 0.0, 0.0, @@ -88887,15 +88913,16 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, -0.0, + 0.0, -0.0, 0.0, + 26.824, + 17.479, + 35.021, + 14.709, 0.0, - 1.579, - 0.606, 0.0, 0.0, 0.0, @@ -88911,15 +88938,17 @@ 0.0, 0.0, 0.0, + 2.938, 0.0, + 12.191, + 11.483, + 3.108, + -0.0, + 32.651, + 11.877, 0.0, 0.0, 0.0, - -0.0, - 11.098, - 6.33, - 17.868, - 7.505, 0.0, 0.0, 0.0, @@ -88931,6 +88960,16 @@ 0.0, 0.0, 0.0, + -0.0, + 3.42, + 20.128, + 30.894, + 33.173, + 33.173, + 54.445, + 53.524, + 38.533, + 17.303, 0.0, 0.0, 0.0, @@ -88938,18 +88977,23 @@ 0.0, 0.0, 0.0, - 3.632, - 3.271, 0.0, 0.0, - 16.659, - 6.06, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 4.555, + 19.604, + 29.213, + 33.173, + 33.173, + 54.564, + 51.467, + 37.457, + 17.234, 0.0, 0.0, 0.0, @@ -88958,21 +89002,22 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 7.682, - 13.174, - 14.337, - 14.337, - 25.476, - 27.308, - 19.66, - 8.828, 0.0, 0.0, 0.0, 0.0, 0.0, + -0.0, + 3.898, + 17.905, + 26.507, + 30.393, + 29.95, + 37.518, + 41.683, + 20.338, + 5.538, 0.0, 0.0, 0.0, @@ -88982,21 +89027,21 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 7.414, - 12.317, - 14.337, - 14.337, - 26.115, - 26.259, - 19.111, - 8.793, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.728, + 16.234, + 14.835, + 18.388, + 17.472, + 29.464, + 37.151, + 26.225, + 8.188, 0.0, 0.0, 0.0, @@ -89007,15 +89052,6 @@ 0.0, 0.0, 0.0, - -0.0, - 6.548, - 10.936, - 12.919, - 12.693, - 17.082, - 21.267, - 10.377, - 2.826, 0.0, 0.0, 0.0, @@ -89023,6 +89059,13 @@ 0.0, 0.0, 0.0, + 1.625, + 33.126, + 33.173, + 29.035, + 23.803, + 37.638, + 14.423, 0.0, 0.0, 0.0, @@ -89032,20 +89075,21 @@ 0.0, 0.0, 0.0, - 5.695, - 4.981, - 6.794, - 6.326, - 11.866, - 18.955, - 13.38, - 4.177, 0.0, 0.0, 0.0, 0.0, 0.0, + -0.0, 0.0, + 13.749, + 22.867, + 27.495, + 28.385, + 45.773, + 48.899, + 35.702, + 15.665, 0.0, 0.0, 0.0, @@ -89055,19 +89099,22 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - -0.0, - 14.313, - 14.337, - 12.226, - 7.468, - 19.203, - 7.359, 0.0, 0.0, 0.0, 0.0, + -0.0, + 4.125, + 18.901, + 17.986, + 20.23, + 16.832, + 53.775, + 50.358, + 37.408, + 18.603, + 0.0, 0.0, 0.0, 0.0, @@ -89080,16 +89127,18 @@ 0.0, 0.0, 0.0, - 4.427, - 9.079, - 11.441, - 11.895, - 19.306, - 24.949, - 18.215, - 7.992, 0.0, 0.0, + 4.267, + 18.485, + 27.389, + 31.811, + 31.555, + 54.395, + 50.276, + 37.375, + 18.809, + 0.0, 0.0, 0.0, 0.0, @@ -89104,14 +89153,15 @@ 0.0, 0.0, -0.0, - 7.056, - 6.589, - 7.734, - 6.0, - 25.493, - 25.693, - 19.086, - 9.491, + 2.832, + 16.988, + 26.375, + 30.821, + 30.748, + 52.911, + 49.41, + 36.591, + 18.198, 0.0, 0.0, 0.0, @@ -89128,14 +89178,14 @@ 0.0, -0.0, 0.0, - 6.843, - 11.386, - 13.642, - 13.512, - 25.882, - 25.651, - 19.069, - 9.596, + -0.0, + 12.979, + 16.793, + 12.481, + 5.008, + 34.248, + 21.471, + 6.774, 0.0, 0.0, 0.0, @@ -89151,15 +89201,16 @@ 0.0, 0.0, -0.0, + 1.748, + 14.759, + 24.158, + 29.212, + 29.85, + 43.712, + 40.042, + 29.577, + 11.795, 0.0, - 6.079, - 10.869, - 13.137, - 13.1, - 24.392, - 25.209, - 18.669, - 9.285, 0.0, 0.0, 0.0, @@ -89175,15 +89226,16 @@ 0.0, 0.0, -0.0, + 2.862, + 10.245, + 19.648, + 8.41, + 18.95, + 29.35, + 26.834, + 10.376, 0.0, - -0.0, - 4.034, - 5.98, - 3.78, 0.0, - 13.394, - 10.955, - 3.456, 0.0, 0.0, 0.0, @@ -89200,14 +89252,13 @@ 0.0, -0.0, -0.0, - 4.943, - 9.738, - 12.316, - 12.642, - 19.146, - 20.429, - 15.09, - 6.018, + -0.0, + 8.795, + 11.617, + 12.091, + 21.927, + 6.385, + 0.0, 0.0, 0.0, 0.0, @@ -89222,16 +89273,15 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, + 2.104, + 3.746, + 13.628, -0.0, - 2.64, - 7.437, - 1.703, - 4.494, - 14.974, - 13.691, - 5.294, + 0.0, + 0.0, + 6.008, + 0.0, 0.0, 0.0, 0.0, @@ -89250,12 +89300,12 @@ -0.0, -0.0, -0.0, - -0.0, - 1.9, - 3.339, - -0.0, - 11.187, - 3.258, + 8.13, + 4.847, + 8.888, + 2.329, + 27.229, + 3.715, 0.0, 0.0, 0.0, @@ -89270,15 +89320,19 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, 0.0, - 4.365, - -0.0, + 1.438, + 16.512, + 26.103, + 31.586, + 32.183, + 41.647, + 51.306, + 37.491, + 18.454, + 0.0, 0.0, 0.0, - 3.066, 0.0, 0.0, 0.0, @@ -89290,20 +89344,23 @@ 0.0, 0.0, 0.0, + -0.0, + 0.44, + -0.0, + 25.262, + 30.705, + 30.816, + 52.054, + 50.637, + 36.952, + 1.014, 0.0, 0.0, 0.0, 0.0, - -0.0, 0.0, - -0.0, 0.0, - 1.56, 0.0, - 1.947, - -0.0, - 13.892, - 1.895, 0.0, 0.0, 0.0, @@ -89311,6 +89368,22 @@ 0.0, 0.0, 0.0, + -0.0, + 2.818, + 17.904, + -0.0, + 32.264, + 32.735, + 49.033, + 52.157, + 29.623, + 19.06, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -89320,14 +89393,15 @@ 0.0, 0.0, -0.0, - 5.837, - 10.73, - 13.527, - 13.832, - 17.935, - 26.177, - 19.128, - 9.415, + 4.171, + 18.846, + 28.881, + 33.173, + 33.173, + 59.053, + 52.677, + 39.289, + 20.424, 0.0, 0.0, 0.0, @@ -89343,16 +89417,15 @@ 0.0, 0.0, -0.0, - -0.0, - 0.0, - 10.301, - 13.078, - 13.135, - 20.147, - 25.835, - 18.853, - 0.517, - 0.0, + 4.689, + 18.203, + 26.908, + 31.458, + 31.476, + 45.787, + 50.129, + 37.245, + 19.569, 0.0, 0.0, 0.0, @@ -89366,16 +89439,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 6.547, -0.0, - 13.873, - 14.114, - 19.82, - 26.611, - 15.114, - 9.724, + 3.204, + 17.16, + 26.328, + 31.093, + 31.429, + 56.985, + 50.469, + 37.493, + 19.219, 0.0, 0.0, 0.0, @@ -89391,15 +89465,15 @@ 0.0, 0.0, 0.0, - -0.0, - 7.027, - 12.147, - 14.337, - 14.337, - 28.209, - 26.876, - 20.045, - 10.42, + 3.217, + 17.519, + 26.815, + 31.437, + 31.322, + 56.283, + 49.96, + 30.302, + 3.684, 0.0, 0.0, 0.0, @@ -89414,16 +89488,16 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, 0.0, - 6.7, - 11.141, - 13.462, - 13.471, - 21.705, - 25.576, - 19.003, - 9.984, + 3.325, + -0.0, + -0.0, + 4.397, + 20.496, + 27.518, + 12.594, 0.0, 0.0, 0.0, @@ -89440,18 +89514,15 @@ 0.0, 0.0, -0.0, - 6.167, - 10.845, - 13.276, - 13.447, - 26.661, - 25.75, - 19.129, - 9.806, - 0.0, - 0.0, 0.0, 0.0, + -0.0, + 14.457, + 6.279, + 18.55, + 37.638, + 19.566, + 0.518, 0.0, 0.0, 0.0, @@ -89462,20 +89533,20 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 6.351, - 11.094, - 13.452, - 13.393, - 26.309, - 25.49, - 15.46, - 1.88, 0.0, 0.0, 0.0, 0.0, + 3.467, + 17.089, + 25.881, + 30.724, + 31.138, + 57.346, + 51.342, + 38.112, + 20.412, + 0.774, 0.0, 0.0, 0.0, @@ -89486,17 +89557,20 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, - -0.0, 0.0, 0.0, - -0.0, 0.0, - 14.04, - 6.425, 0.0, + 2.265, + 15.17, + 23.768, + 29.306, + 30.41, + 56.404, + 51.148, + 38.494, + 20.661, + 0.946, 0.0, 0.0, 0.0, @@ -89514,13 +89588,13 @@ 0.0, 0.0, -0.0, - 0.0, - 4.788, - 0.616, - 6.877, - 19.203, - 9.982, - 0.264, + 6.396, + 14.995, + 10.897, + 0.943, + 25.4, + 12.068, + 0.133, 0.0, 0.0, 0.0, @@ -89534,17 +89608,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 6.131, - 10.617, - 13.088, - 13.299, - 26.979, - 26.195, - 19.445, - 10.415, - 0.395, + 7.499, + 22.293, + 32.131, + 33.173, + 33.483, + 65.049, + 56.676, + 42.616, + 23.057, + 0.566, 0.0, 0.0, 0.0, @@ -89559,17 +89633,16 @@ 0.0, 0.0, -0.0, - -0.0, - 5.152, - 9.539, - 12.364, - 12.928, - 25.885, - 26.096, - 19.64, - 10.541, - 0.483, - 0.0, + 6.61, + 20.397, + 29.29, + 32.675, + 32.026, + 58.513, + 50.869, + 39.283, + 21.873, + 0.593, 0.0, 0.0, 0.0, @@ -89582,17 +89655,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - -0.0, - 0.676, - 5.063, - 2.972, - -0.0, - 12.959, - 6.157, - 0.068, + 4.852, + 19.144, + 29.034, + 33.173, + 33.173, + 45.63, + 8.087, + 2.497, + 4.123, + 1.185, 0.0, 0.0, 0.0, @@ -89607,16 +89681,16 @@ 0.0, 0.0, 0.0, - 1.238, - 8.786, - 13.806, - 14.337, - 14.337, - 31.886, - 28.916, - 21.743, - 11.764, - 0.289, + 4.581, + 18.145, + 27.677, + 32.797, + 33.173, + 60.129, + 52.625, + 39.689, + 21.334, + 1.676, 0.0, 0.0, 0.0, @@ -89631,17 +89705,16 @@ 0.0, 0.0, -0.0, - 0.785, - 7.819, - 12.356, - 14.083, - 13.542, - 28.603, - 25.954, - 20.042, - 11.16, - 0.302, - 0.0, + 6.562, + 21.483, + 17.894, + 19.017, + 33.173, + 46.994, + 55.519, + 3.209, + 3.901, + 0.157, 0.0, 0.0, 0.0, @@ -89656,19 +89729,16 @@ 0.0, 0.0, -0.0, - 7.18, - 12.225, - 14.337, - 14.337, - 21.709, - 4.126, - 1.274, - 2.104, - 0.605, - 0.0, - 0.0, - 0.0, - 0.0, + 7.928, + 22.387, + 31.941, + 33.173, + 34.566, + 65.049, + 56.13, + 42.352, + 0.496, + 1.163, 0.0, 0.0, 0.0, @@ -89678,19 +89748,6 @@ 0.0, 0.0, 0.0, - -0.0, - 0.0, - 6.67, - 11.533, - 14.145, - 14.337, - 28.967, - 26.85, - 20.249, - 10.885, - 0.855, - 0.0, - 0.0, 0.0, 0.0, 0.0, @@ -89699,20 +89756,14 @@ 0.0, 0.0, 0.0, + 5.982, 0.0, + 4.9, 0.0, + 6.288, + 9.48, 0.0, 0.0, - 0.76, - 8.373, - 6.542, - 7.115, - 14.337, - 22.516, - 28.326, - 1.637, - 1.99, - 0.08, 0.0, 0.0, 0.0, @@ -89727,17 +89778,14 @@ 0.0, 0.0, -0.0, - 1.457, - 8.834, - 13.709, - 14.337, - 14.337, - 32.438, - 28.638, - 21.608, - 0.253, - 0.593, - 0.0, + -0.0, + 2.041, + 12.182, + 4.832, + 5.411, + 23.71, + 15.802, + 6.736, 0.0, 0.0, 0.0, @@ -89750,21 +89798,19 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, -0.0, - 0.464, - -0.0, - 0.0, - 0.0, - 3.208, - 4.837, - 0.0, - 0.0, - 0.0, 0.0, 0.0, + 2.358, + 17.191, + 18.265, + 15.778, + 34.269, + 40.35, + 23.002, + 9.197, + 0.298, 0.0, 0.0, 0.0, @@ -89778,13 +89824,17 @@ 0.0, 0.0, -0.0, - 3.628, - -0.0, - -0.0, - 6.554, - 8.062, - 3.437, 0.0, + 4.644, + 2.417, + 14.598, + 17.763, + 20.196, + 38.355, + 33.489, + 37.613, + 20.363, + 1.997, 0.0, 0.0, 0.0, @@ -89799,16 +89849,16 @@ 0.0, -0.0, -0.0, - 0.0, - 0.0, - 6.183, - 6.731, - 5.462, - 12.052, - 20.587, - 11.736, - 4.693, - 0.152, + 4.719, + 16.629, + 25.043, + 8.111, + 31.135, + 58.226, + 40.785, + 37.378, + 9.776, + 2.016, 0.0, 0.0, 0.0, @@ -89821,19 +89871,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, -0.0, - 4.86, - 6.475, - 7.467, - 16.785, - 17.086, - 19.19, - 10.389, - 1.019, 0.0, + 25.5, + 29.703, + 16.997, + 33.942, + 50.287, + 37.216, + 20.167, + 2.172, 0.0, 0.0, 0.0, @@ -89848,15 +89897,16 @@ 0.0, 0.0, -0.0, - 5.896, - 10.189, - 1.55, - 12.731, - 28.633, - 20.809, - 19.071, - 4.988, - 1.028, + 6.514, + 20.178, + 17.456, + 20.157, + 16.835, + 45.874, + 43.636, + 30.474, + 21.603, + 0.555, 0.0, 0.0, 0.0, @@ -89871,16 +89921,17 @@ 0.0, -0.0, -0.0, - -0.0, + 8.15, + 21.968, + 30.704, + 33.173, + 37.826, + 61.245, + 52.627, + 39.655, + 17.153, + 1.859, 0.0, - 10.422, - 12.567, - 6.084, - 11.099, - 25.24, - 18.988, - 10.29, - 1.108, 0.0, 0.0, 0.0, @@ -89893,18 +89944,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 0.736, - 7.707, - 6.318, - 7.696, - 4.688, - 23.258, - 22.263, - 15.548, - 11.022, - 0.283, + 6.404, + 19.353, + 27.745, + 31.021, + 29.318, + 53.628, + 48.721, + 28.645, + 16.01, + 2.526, 0.0, 0.0, 0.0, @@ -89917,21 +89967,19 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 1.571, - 8.621, - 13.078, - 14.337, - 15.251, - 31.247, - 26.851, - 20.232, - 8.751, - 0.949, 0.0, 0.0, 0.0, + 19.086, + 27.865, + 32.064, + 32.343, + 59.561, + 50.779, + 38.069, + 20.746, + 2.804, + 0.0, 0.0, 0.0, 0.0, @@ -89941,19 +89989,20 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 0.68, - 7.286, - 11.568, - 13.239, - 12.371, - 25.901, - 24.858, - 14.615, - 8.168, - 1.289, 0.0, + -0.0, + -0.0, + -0.0, + 21.31, + 18.289, + 16.709, + 21.477, + 33.559, + 38.581, + 24.576, + 15.22, + 1.994, 0.0, 0.0, 0.0, @@ -89968,15 +90017,16 @@ 0.0, -0.0, 0.0, - 7.15, - 11.629, - 13.771, - 13.617, - 26.637, - 25.908, - 19.423, - 10.585, - 1.431, + 7.441, + 20.891, + 29.909, + 33.173, + 38.08, + 60.63, + 51.74, + 38.814, + 21.136, + 3.098, 0.0, 0.0, 0.0, @@ -89989,18 +90039,18 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, - 8.285, - 6.743, - 5.937, - 8.37, - 13.075, - 19.684, - 12.539, - 7.765, - 1.017, + 0.0, + 6.805, + 20.055, + 28.728, + 33.051, + 38.006, + 60.643, + 51.765, + 39.012, + 21.465, + 3.308, 0.0, 0.0, 0.0, @@ -90015,16 +90065,16 @@ 0.0, -0.0, -0.0, - 1.208, - 8.071, - 12.672, - 14.337, - 15.38, - 30.934, - 26.398, - 19.803, - 10.784, - 1.58, + 7.205, + 19.43, + 27.045, + 30.871, + 36.745, + 58.833, + 50.831, + 38.413, + 21.206, + 3.322, 0.0, 0.0, 0.0, @@ -90039,18 +90089,16 @@ 0.0, 0.0, -0.0, - 0.884, - 7.644, - 12.069, - 14.275, - 15.343, - 30.94, - 26.411, - 19.904, - 10.951, - 1.688, - 0.0, - 0.0, + 7.794, + 20.737, + 29.682, + 33.173, + 39.164, + 60.418, + 51.231, + 38.343, + 21.062, + 3.272, 0.0, 0.0, 0.0, @@ -90063,17 +90111,18 @@ 0.0, 0.0, 0.0, - 1.088, - 7.325, - 11.211, - 13.163, - 14.7, - 30.017, - 25.934, - 19.599, - 10.819, - 1.695, + -0.0, 0.0, + 5.627, + 16.983, + 24.947, + 27.981, + 34.126, + 57.839, + 50.207, + 38.277, + 21.409, + 3.456, 0.0, 0.0, 0.0, @@ -90086,17 +90135,18 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 1.389, - 7.993, - 12.556, - 14.337, - 15.933, - 30.825, - 26.138, - 19.563, - 10.746, - 1.669, + 8.692, + 21.777, + 30.723, + 33.173, + 40.954, + 62.14, + 53.402, + 35.827, + 15.608, + 2.715, 0.0, 0.0, 0.0, @@ -90111,16 +90161,16 @@ 0.0, -0.0, -0.0, - 0.283, - 6.077, - 10.14, - 11.688, - 13.363, - 29.51, - 25.616, - 19.529, - 10.923, - 1.763, + 9.715, + 22.906, + 31.439, + 33.173, + 41.649, + 61.008, + 52.436, + 39.544, + 22.236, + 3.752, 0.0, 0.0, 0.0, @@ -90134,17 +90184,17 @@ 0.0, 0.0, -0.0, - 0.0, - 1.847, - 8.523, - 13.087, - 14.337, - 16.847, - 31.704, - 27.246, - 18.279, - 7.963, - 1.385, + -0.0, + 9.533, + 22.366, + 30.859, + 33.173, + 41.866, + 60.033, + 50.951, + 38.481, + 21.637, + 3.679, 0.0, 0.0, 0.0, @@ -90159,16 +90209,16 @@ 0.0, 0.0, -0.0, - 2.369, - 9.099, - 13.453, - 14.337, - 17.202, - 31.126, - 26.753, - 20.175, - 11.345, - 1.914, + 0.0, + 15.667, + 20.969, + 18.302, + 17.837, + 34.616, + 34.626, + 37.594, + 20.899, + 3.539, 0.0, 0.0, 0.0, @@ -90183,17 +90233,16 @@ 0.0, -0.0, -0.0, - 2.276, - 8.823, - 13.156, - 14.337, - 17.312, - 30.629, - 25.995, - 19.633, - 11.039, - 1.877, - 0.0, + 6.372, + 18.705, + 26.575, + 30.762, + 37.875, + 58.622, + 50.135, + 37.276, + 20.198, + 3.315, 0.0, 0.0, 0.0, @@ -90208,16 +90257,16 @@ 0.0, 0.0, -0.0, - 5.406, - 8.111, - 6.75, - 6.513, - 13.614, - 17.667, - 19.18, - 10.663, - 1.806, - 0.0, + 5.388, + 17.057, + 23.487, + 26.922, + 34.482, + 57.347, + 49.907, + 37.448, + 20.495, + 3.49, 0.0, 0.0, 0.0, @@ -90231,40 +90280,17 @@ 0.0, 0.0, -0.0, - 0.663, - 6.956, - 10.971, - 13.107, - 15.276, - 29.909, - 25.579, - 19.018, - 10.305, - 1.691, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, 0.0, -0.0, - 0.0, - 0.161, - 6.115, - 9.395, - 11.148, - 13.545, - 29.259, - 25.463, - 19.106, - 10.457, - 1.781, + 5.295, + 23.181, + 19.344, + 21.984, + 44.713, + 41.492, + 36.004, + 14.225, + 2.587, 0.0, 0.0, 0.0, @@ -90279,40 +90305,16 @@ 0.0, -0.0, -0.0, - 0.0, - 0.114, - 9.239, - 7.282, - 6.628, - 20.766, - 21.17, - 18.369, - 7.258, - 1.32, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, -0.0, - 0.0, - 3.112, - 10.831, - 12.554, - 12.231, - 25.594, - 17.309, - 16.109, - 7.638, - 1.695, + 11.172, + 26.3, + 29.678, + 31.157, + 55.985, + 33.926, + 31.573, + 14.97, + 3.321, 0.0, 0.0, 0.0, @@ -90327,17 +90329,16 @@ 0.0, 0.0, 0.0, - 0.104, - 6.247, - 11.113, - 13.358, - 15.449, - 26.023, - 25.333, - 19.004, - 10.228, - 1.765, - 0.0, + 5.277, + 17.315, + 26.854, + 31.253, + 38.213, + 51.004, + 49.653, + 37.248, + 20.047, + 3.459, 0.0, 0.0, 0.0, @@ -90351,17 +90352,17 @@ 0.0, 0.0, -0.0, - 1.717, - 8.32, - 12.895, - 14.337, -0.0, - 9.204, - 18.455, - 11.552, - 4.124, - 1.85, + 8.437, + 21.38, + 30.346, + 33.173, 0.0, + 25.974, + 36.172, + 22.642, + 8.083, + 3.626, 0.0, 0.0, 0.0, @@ -90375,16 +90376,18 @@ 0.0, 0.0, -0.0, - 1.611, - 7.964, - 11.793, - 13.564, - 17.225, - 30.417, - 26.053, - 19.362, - 4.401, - 1.89, + -0.0, + 8.23, + 20.682, + 28.187, + 31.658, + 41.695, + 59.618, + 51.063, + 37.949, + 8.627, + 3.705, + 0.0, 0.0, 0.0, 0.0, @@ -90397,18 +90400,17 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 0.563, - 6.407, - 10.046, - 7.653, - 10.537, - 24.151, - 22.302, - 17.967, - 9.76, - 1.809, + 0.0, + 6.176, + 17.629, + 24.761, + 20.072, + 28.586, + 47.335, + 43.712, + 35.215, + 19.131, + 3.546, 0.0, 0.0, 0.0, @@ -90424,15 +90426,16 @@ -0.0, -0.0, -0.0, - 6.108, - 10.77, - 11.558, - 4.107, - 17.332, - 24.883, - 17.16, - 6.62, - 1.276, + 17.045, + 26.181, + 27.726, + 13.121, + 41.904, + 48.772, + 33.634, + 12.975, + 2.501, + 0.0, 0.0, 0.0, 0.0, @@ -90446,17 +90449,16 @@ 0.0, 0.0, -0.0, - -0.0, - 2.951, - 9.447, - 13.726, - 14.337, - 19.325, - 31.56, - 26.946, - 20.175, - 11.091, - 1.988, + 10.855, + 23.587, + 31.974, + 33.173, + 45.812, + 61.858, + 52.815, + 39.544, + 21.738, + 3.897, 0.0, 0.0, 0.0, @@ -90469,19 +90471,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 1.683, - 7.946, - 12.345, - 14.337, - 18.404, - 31.14, - 26.704, - 19.873, - 0.142, - 0.06, 0.0, + 8.371, + 20.646, + 29.269, + 33.173, + 44.005, + 61.034, + 52.339, + 38.952, + 0.278, + 0.119, 0.0, 0.0, 0.0, @@ -90494,18 +90495,18 @@ 0.0, 0.0, 0.0, - -0.0, - 3.279, - 9.758, - 14.158, - 14.337, - 19.678, - 32.122, - 27.237, - 20.411, - 11.117, - 2.032, 0.0, + -0.0, + 11.499, + 24.197, + 32.821, + 33.173, + 46.503, + 62.959, + 53.385, + 40.006, + 21.789, + 3.983, 0.0, 0.0, 0.0, @@ -90517,20 +90518,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 2.428, - 8.662, - 12.554, - 14.138, - 18.544, - 24.62, - 25.678, - 19.289, - 10.652, - 1.982, 0.0, 0.0, + 9.831, + 22.049, + 29.677, + 32.783, + 44.279, + 48.255, + 50.328, + 37.806, + 20.878, + 3.884, 0.0, 0.0, 0.0, @@ -90541,19 +90541,20 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - 1.382, - 9.053, - 11.197, - 13.248, - 28.757, - 24.914, - 18.606, - 10.236, - 1.959, + -0.0, 0.0, + 0.102, + 7.78, + 22.816, + 27.018, + 38.87, + 56.363, + 48.83, + 36.468, + 20.063, + 3.84, 0.0, 0.0, 0.0, @@ -90568,15 +90569,16 @@ 0.0, 0.0, -0.0, - 2.998, - 11.314, - 13.514, - 13.599, - 29.141, - 25.892, - 19.468, - 10.6, - 2.05, + -0.0, + 10.947, + 27.247, + 31.56, + 37.413, + 59.362, + 50.749, + 38.158, + 20.776, + 4.018, 0.0, 0.0, 0.0, @@ -90590,17 +90592,18 @@ 0.0, 0.0, -0.0, + -0.0, + 10.466, + 23.369, + 31.089, + 33.173, + 46.451, + 62.011, + 52.65, + 23.025, + 20.834, + 4.147, 0.0, - 2.752, - 9.335, - 13.274, - 14.337, - 19.651, - 31.638, - 26.862, - 11.747, - 10.629, - 2.116, 0.0, 0.0, 0.0, @@ -90612,20 +90615,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 10.656, + 23.314, + 31.981, + 33.173, + 47.063, + 60.984, + 51.865, + 38.519, + 20.835, + 4.168, 0.0, 0.0, - 2.849, - 9.307, - 13.729, - 14.337, - 19.964, - 31.114, - 26.462, - 19.653, - 10.63, - 2.126, - 0.0, 0.0, 0.0, 0.0, @@ -90638,19 +90641,16 @@ 0.0, 0.0, -0.0, - 0.0, - 2.553, - 8.671, - 12.302, - 13.739, - 18.818, - 29.5, - 25.293, - 19.201, - 10.554, - 2.109, - 0.0, - 0.0, + 10.076, + 22.068, + 29.183, + 32.0, + 44.816, + 57.821, + 49.574, + 37.634, + 20.686, + 4.133, 0.0, 0.0, 0.0, @@ -90663,16 +90663,18 @@ 0.0, 0.0, 0.0, - 1.297, - 7.177, - 11.179, - 13.179, - 17.161, - 29.592, - 25.06, - 18.534, - 10.238, - 2.02, + -0.0, + -0.0, + 7.613, + 19.138, + 26.984, + 30.903, + 41.568, + 58.0, + 49.118, + 36.326, + 20.067, + 3.96, 0.0, 0.0, 0.0, @@ -90687,16 +90689,16 @@ 0.0, -0.0, 0.0, - 1.405, - 7.434, - 11.283, - 13.344, - 18.501, - 30.015, - 25.51, - 18.789, - 9.262, - 1.812, + 7.826, + 19.643, + 27.186, + 31.225, + 48.008, + 58.829, + 49.999, + 36.826, + 18.154, + 3.552, 0.0, 0.0, 0.0, @@ -90709,19 +90711,18 @@ 0.0, 0.0, 0.0, - -0.0, - 0.0, - 2.22, - 8.127, - 12.338, - 14.337, - 20.06, - 30.633, - 26.035, - 19.481, - 10.647, - 2.04, 0.0, + -0.0, + 9.422, + 21.001, + 29.254, + 33.173, + 47.25, + 60.041, + 51.028, + 38.183, + 20.868, + 3.998, 0.0, 0.0, 0.0, @@ -90734,18 +90735,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 8.569, -0.0, 0.0, - 14.337, - 12.035, - 19.726, - 12.937, - 2.075, - 0.063, + 21.868, 0.0, + 0.106, + 33.173, + 37.083, + 43.139, + 25.356, + 4.066, + 0.123, 0.0, 0.0, 0.0, @@ -90760,16 +90761,16 @@ 0.0, 0.0, 0.0, - 8.506, - 12.495, - 14.335, - 8.635, - 28.978, - 14.196, - 6.782, - 5.788, - 1.215, 0.0, + 21.743, + 29.562, + 33.168, + 27.553, + 59.174, + 27.824, + 13.292, + 11.345, + 2.382, 0.0, 0.0, 0.0, @@ -90783,17 +90784,16 @@ 0.0, 0.0, 0.0, - 2.257, -0.0, - 0.0, + 9.496, + -0.0, + -0.0, + -0.0, -0.0, -0.0, 0.0, - 0.0, - 7.926, - 2.7, - 0.0, - 0.0, + 15.534, + 5.293, 0.0, 0.0, 0.0, @@ -90807,18 +90807,18 @@ 0.0, 0.0, 0.0, - 3.4, - 9.63, - 13.371, - 14.337, - 20.09, - 30.77, - 26.054, - 19.536, - 10.601, - 1.99, 0.0, 0.0, + 11.736, + 23.947, + 31.279, + 33.173, + 47.311, + 60.308, + 51.065, + 38.291, + 20.778, + 3.9, 0.0, 0.0, 0.0, @@ -90831,16 +90831,18 @@ 0.0, 0.0, 0.0, - 1.859, - 7.215, - 10.182, - 11.308, - 17.509, - 28.669, - 24.709, - 18.679, - 10.088, - 2.004, + -0.0, + -0.0, + 8.716, + 19.213, + 25.028, + 27.235, + 42.251, + 56.191, + 48.43, + 36.611, + 19.772, + 3.928, 0.0, 0.0, 0.0, @@ -90855,16 +90857,17 @@ 0.0, -0.0, 0.0, - 1.494, - 6.939, - 10.391, - 11.721, - 16.816, - 27.894, - 24.004, - 18.1, - 9.901, - 1.979, + 7.999, + 18.673, + 25.438, + 28.046, + 44.706, + 54.671, + 47.048, + 35.476, + 19.405, + 3.879, + 0.0, 0.0, 0.0, 0.0, @@ -90878,18 +90881,16 @@ 0.0, -0.0, -0.0, - -0.0, - 1.09, - 6.153, - 9.189, - 10.72, - 16.715, - 28.255, - 24.23, - 18.172, - 9.92, - 1.838, - 0.0, + 7.209, + 17.132, + 23.082, + 26.084, + 40.696, + 55.38, + 47.491, + 35.618, + 19.443, + 3.602, 0.0, 0.0, 0.0, @@ -90902,17 +90903,20 @@ 0.0, 0.0, -0.0, + -0.0, + 0.0, + 7.573, + 9.535, + 15.537, + 28.133, + 40.262, + 55.195, + 47.058, + 35.243, + 15.317, + 3.642, + 0.0, 0.0, - 1.276, - 2.277, - 5.339, - 11.766, - 16.494, - 28.161, - 24.009, - 17.981, - 7.815, - 1.858, 0.0, 0.0, 0.0, @@ -90925,18 +90929,16 @@ 0.0, 0.0, -0.0, - -0.0, - -0.0, - 1.503, - 6.702, - 9.757, - 10.856, - 15.818, - 26.153, - 22.355, - 16.861, - 9.09, - 1.911, + 8.018, + 18.207, + 24.196, + 26.349, + 38.937, + 51.26, + 43.815, + 33.047, + 17.817, + 3.746, 0.0, 0.0, 0.0, @@ -90949,18 +90951,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 0.578, - 6.084, - 10.073, - 11.229, - 15.292, - 26.305, - 22.019, - 16.849, - 9.331, - 1.745, + 0.0, + 6.204, + 16.997, + 24.814, + 27.081, + 37.906, + 51.558, + 43.157, + 33.025, + 18.288, + 3.421, 0.0, 0.0, 0.0, @@ -90974,17 +90976,17 @@ 0.0, 0.0, -0.0, - -0.0, - 0.857, - 5.942, - 9.016, - 10.14, - 15.499, - 26.623, - 22.886, - 17.25, - 9.476, - 1.795, + 0.0, + 6.752, + 16.718, + 22.743, + 24.946, + 38.312, + 52.181, + 44.858, + 33.81, + 18.572, + 3.518, 0.0, 0.0, 0.0, @@ -90999,16 +91001,16 @@ -0.0, -0.0, -0.0, - 0.439, - 5.769, - 9.628, - 11.3, - 16.688, - 27.858, - 23.735, - 17.562, - 9.626, - 1.892, + 5.932, + 16.378, + 23.943, + 27.22, + 40.64, + 54.601, + 46.52, + 34.421, + 18.868, + 3.708, 0.0, 0.0, 0.0, @@ -91023,16 +91025,16 @@ 0.0, 0.0, -0.0, - 1.523, - 6.85, - 10.489, - 12.216, - 18.256, - 28.902, - 24.554, - 18.406, - 10.083, - 1.956, + 8.056, + 18.498, + 25.631, + 29.015, + 51.342, + 56.648, + 48.125, + 36.077, + 19.762, + 3.833, 0.0, 0.0, 0.0, @@ -91045,19 +91047,18 @@ 0.0, 0.0, -0.0, - -0.0, - -0.0, - 0.563, - 6.903, - 5.882, 0.0, -0.0, - 16.319, - 6.196, - 5.643, - 3.548, - 0.92, + 6.175, + 18.601, + 16.6, 0.0, + 9.577, + 35.413, + 12.144, + 11.06, + 6.955, + 1.803, 0.0, 0.0, 0.0, @@ -91070,42 +91071,18 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, 0.0, -0.0, - 4.714, - 1.843, - 7.823, - 13.083, - 7.279, - 1.84, - 0.0, - 0.0, - 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.712, - 7.425, - 11.159, - 12.929, - 19.099, - 13.947, - 17.869, - 7.214, - 4.077, - 0.692, 0.0, + 3.645, + 14.311, + 15.415, + 23.032, + 25.642, + 14.267, + 3.607, 0.0, 0.0, 0.0, @@ -91116,43 +91093,20 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 2.115, - 7.584, - 11.176, - 12.572, - 18.892, - 28.079, - 23.673, - 17.761, - 9.531, - 2.011, - 0.0, - 0.0, - 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.6, - 7.231, - 10.978, - 12.036, - 17.673, - 27.01, - 22.673, - 17.087, - 9.415, - 1.927, + 8.427, + 19.625, + 26.944, + 30.413, + 45.367, + 27.336, + 35.024, + 14.139, + 7.992, + 1.356, 0.0, 0.0, 0.0, @@ -91165,18 +91119,18 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, - 1.262, - 6.572, - 9.763, - 10.546, - 16.299, - 26.32, - 22.479, - 16.922, - 9.144, - 2.042, + -0.0, + 9.216, + 19.936, + 26.978, + 29.712, + 44.961, + 55.036, + 46.4, + 34.812, + 18.68, + 3.942, 0.0, 0.0, 0.0, @@ -91191,17 +91145,16 @@ -0.0, 0.0, 0.0, - 0.306, - 5.534, - 9.174, - 10.926, - 17.082, - 27.582, - 23.283, - 17.161, - 9.663, - 1.876, - 0.0, + 8.208, + 19.246, + 26.589, + 28.662, + 42.574, + 52.939, + 44.44, + 33.491, + 18.453, + 3.776, 0.0, 0.0, 0.0, @@ -91215,16 +91168,17 @@ 0.0, 0.0, -0.0, - 1.56, - 6.818, - 10.102, - 11.025, - 16.549, - 25.983, - 22.785, - 17.267, - 9.329, - 1.844, + -0.0, + 7.545, + 17.952, + 24.207, + 25.743, + 39.879, + 51.587, + 44.059, + 33.166, + 17.922, + 4.002, 0.0, 0.0, 0.0, @@ -91238,19 +91192,17 @@ 0.0, -0.0, -0.0, - -0.0, - 0.994, - 5.965, - 9.106, - 10.029, - 15.554, - 26.049, - 22.625, - 17.03, - 9.117, - 1.928, - 0.0, 0.0, + 5.671, + 15.92, + 23.053, + 26.487, + 52.853, + 54.06, + 45.635, + 33.636, + 18.94, + 3.677, 0.0, 0.0, 0.0, @@ -91263,18 +91215,18 @@ 0.0, 0.0, -0.0, - 0.59, - 5.554, - 8.814, - 9.828, - 15.218, - 25.519, - 21.893, - 16.357, - 8.834, - 1.953, - 0.0, + -0.0, 0.0, + 8.13, + 18.435, + 24.872, + 26.682, + 40.369, + 50.928, + 44.659, + 33.844, + 18.285, + 3.614, 0.0, 0.0, 0.0, @@ -91284,68 +91236,46 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, - -0.0, - 4.321, - 7.98, - 9.655, - 15.0, - 26.38, - 22.555, - 16.772, - 9.033, - 1.993, - 0.011, 0.0, 0.0, 0.0, 0.0, + 7.02, + 16.763, + 22.921, + 24.728, + 38.419, + 51.056, + 44.345, + 33.378, + 17.869, + 3.779, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - -0.0, - -0.0, - 0.0, - 0.085, - 2.959, - 7.029, - 7.016, - 17.981, - 27.796, - 19.063, - 15.553, - 8.412, - 2.087, - 0.035, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -0.0, - -0.0, 0.0, -0.0, - 6.416, - 9.778, - 11.633, + 6.229, + 15.958, + 22.347, + 24.335, + 37.76, + 50.017, + 42.911, + 32.059, + 17.316, + 3.828, 0.0, - 8.725, - 24.261, - 18.123, - 7.372, - 2.468, - 0.044, 0.0, 0.0, 0.0, @@ -91356,22 +91286,21 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, 0.0, - 7.462, - 11.125, - 12.857, - 8.856, - 12.283, - 2.808, - 15.237, - 7.426, - 2.004, - 0.084, 0.0, 0.0, + 4.264, + 13.541, + 20.713, + 23.996, + 38.141, + 51.704, + 44.207, + 32.873, + 17.706, + 3.907, + 0.021, + 0.0, 0.0, 0.0, 0.0, @@ -91383,17 +91312,19 @@ 0.0, -0.0, 0.0, - 2.009, 0.0, - 10.757, - 11.995, - 18.648, - 19.293, - 18.932, - 17.106, - 9.205, - 2.142, - 0.076, + 5.239, + 10.871, + 18.848, + 18.824, + 43.175, + 54.48, + 37.364, + 30.485, + 16.487, + 4.09, + 0.069, + 0.0, 0.0, 0.0, 0.0, @@ -91404,20 +91335,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 0.215, - 5.359, - 8.863, - 10.629, - 17.023, - 27.087, - 22.752, - 16.838, - 9.067, - 2.409, - 0.058, + 3.666, + 17.647, + 24.236, + 27.873, + 1.837, + 24.601, + 47.552, + 35.521, + 14.449, + 4.836, + 0.087, 0.0, 0.0, 0.0, @@ -91429,67 +91359,43 @@ 0.0, 0.0, -0.0, - -0.0, - 0.0, - 0.639, - 6.097, - 9.861, - 11.636, - 18.657, - 27.726, - 23.596, - 17.455, - 9.347, - 2.156, - 0.118, - 0.0, - 0.0, 0.0, 0.0, 0.0, + 19.697, + 26.878, + 30.272, + 40.063, + 25.877, + 5.503, + 29.864, + 14.556, + 3.928, + 0.165, 0.0, 0.0, 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, - 0.852, - 6.239, - 9.799, - 11.452, - 18.499, - 27.759, - 23.614, - 17.651, - 9.49, - 1.999, - 0.139, - 0.0, - 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.338, - 6.582, - 10.541, - 12.167, - 19.166, - 28.176, - 23.88, - 17.827, - 9.573, - 1.965, - 0.114, + 9.01, + 4.059, + 26.156, + 28.582, + 45.497, + 37.814, + 37.106, + 33.528, + 18.043, + 4.198, + 0.149, 0.0, 0.0, 0.0, @@ -91501,20 +91407,19 @@ 0.0, 0.0, -0.0, - -0.0, 0.0, - 2.862, - 8.156, - 11.35, - 12.721, - 20.852, - 28.295, - 24.143, - 18.122, - 9.779, - 2.112, - 0.151, 0.0, + 5.494, + 15.576, + 22.443, + 25.904, + 41.3, + 53.09, + 44.593, + 33.002, + 17.771, + 4.721, + 0.113, 0.0, 0.0, 0.0, @@ -91527,17 +91432,19 @@ 0.0, -0.0, 0.0, - 1.885, - 7.119, - 10.567, - 12.127, - 20.888, - 28.213, - 24.048, - 17.963, - 9.718, - 2.27, - 0.183, + 0.0, + 6.325, + 17.021, + 24.4, + 27.879, + 44.501, + 54.343, + 46.247, + 34.211, + 18.32, + 4.226, + 0.232, + 0.0, 0.0, 0.0, 0.0, @@ -91550,18 +91457,17 @@ 0.0, 0.0, -0.0, - -0.0, - 1.757, - 7.311, - 10.928, - 12.499, - 16.66, - 5.79, - 17.91, - 17.87, - 9.635, - 2.356, - 0.187, + 6.741, + 17.301, + 24.278, + 27.517, + 44.192, + 54.409, + 46.284, + 34.596, + 18.601, + 3.917, + 0.273, 0.0, 0.0, 0.0, @@ -91573,19 +91479,20 @@ 0.0, 0.0, -0.0, + 0.0, -0.0, + 7.695, + 17.972, + 25.733, + 28.92, + 45.5, + 55.225, + 46.806, + 34.941, + 18.764, + 3.852, + 0.223, 0.0, - 1.156, - 6.487, - 9.874, - 11.519, - 18.854, - 27.927, - 23.666, - 14.363, - 8.45, - 2.39, - 0.239, 0.0, 0.0, 0.0, @@ -91596,20 +91503,20 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 10.681, + 21.058, + 27.318, + 30.005, + 48.803, + 55.458, + 47.321, + 35.519, + 19.167, + 4.139, + 0.296, 0.0, - -0.0, - 1.4, - 7.018, - 10.803, - 12.508, - 19.777, - 28.529, - 24.333, - 18.169, - 9.792, - 2.125, - 0.188, 0.0, 0.0, 0.0, @@ -91622,20 +91529,17 @@ 0.0, -0.0, -0.0, - -0.0, - 1.365, - 6.264, - 9.062, - 10.146, - 17.097, - 26.542, - 22.659, - 17.088, - 9.315, - 1.907, - 0.192, - 0.0, - 0.0, + 8.767, + 19.025, + 25.782, + 31.338, + 59.965, + 55.297, + 47.134, + 35.207, + 19.048, + 4.449, + 0.359, 0.0, 0.0, 0.0, @@ -91647,17 +91551,19 @@ 0.0, 0.0, 0.0, - 1.381, - 6.43, - 9.57, - 10.684, - 17.42, - 26.284, - 22.06, - 16.722, - 9.259, - 1.955, - 0.193, + -0.0, + -0.0, + 8.516, + 19.401, + 26.491, + 29.57, + 40.586, + 11.349, + 35.103, + 35.026, + 18.884, + 4.618, + 0.366, 0.0, 0.0, 0.0, @@ -91671,17 +91577,17 @@ -0.0, 0.0, -0.0, - 0.69, - 5.707, - 8.597, - 9.502, - 15.49, - 24.867, - 21.635, - 16.662, - 9.07, - 2.019, - 0.205, + 7.338, + 17.787, + 24.425, + 27.649, + 44.889, + 54.736, + 46.385, + 28.152, + 16.562, + 4.685, + 0.469, 0.0, 0.0, 0.0, @@ -91694,19 +91600,18 @@ 0.0, 0.0, -0.0, - -0.0, - 0.0, - 4.924, - 8.418, - 10.084, - 17.12, - 26.685, - 22.692, - 16.986, - 9.196, - 1.921, - 0.2, 0.0, + 7.816, + 18.828, + 26.246, + 29.588, + 46.696, + 55.916, + 47.692, + 35.612, + 19.192, + 4.165, + 0.369, 0.0, 0.0, 0.0, @@ -91719,18 +91624,18 @@ 0.0, -0.0, -0.0, - 0.115, - 4.789, - 7.803, - 8.953, - 15.166, - 25.303, - 21.726, - 16.508, - 8.967, - 2.049, - 0.218, 0.0, + 7.747, + 17.349, + 22.833, + 24.959, + 41.443, + 52.023, + 44.412, + 33.493, + 18.257, + 3.738, + 0.376, 0.0, 0.0, 0.0, @@ -91740,21 +91645,21 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, 0.0, - 4.595, - 8.158, - 9.717, - 15.478, - 26.407, - 22.526, - 16.95, - 9.263, - 1.907, - 0.237, 0.0, + 7.78, + 17.674, + 23.83, + 26.013, + 42.076, + 51.517, + 43.238, + 32.776, + 18.147, + 3.832, + 0.379, 0.0, 0.0, 0.0, @@ -91767,17 +91672,18 @@ 0.0, 0.0, 0.0, - 0.709, - 6.013, - 3.473, - 11.032, - 14.331, - 27.197, - 23.231, - 17.342, - 9.431, - 2.0, - 0.274, + -0.0, + 6.424, + 16.258, + 21.922, + 23.697, + 38.295, + 48.739, + 42.404, + 32.657, + 17.778, + 3.957, + 0.402, 0.0, 0.0, 0.0, @@ -91791,45 +91697,22 @@ -0.0, 0.0, -0.0, - 1.3, - 6.607, - 10.133, - 11.693, - 18.79, - 28.011, - 23.833, - 17.868, - 9.711, - 2.023, - 0.298, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + 4.751, + 14.723, + 21.572, + 24.836, + 55.333, + 52.303, + 44.477, + 33.292, + 18.024, + 3.765, + 0.393, 0.0, 0.0, 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, - 1.208, - 6.635, - 10.275, - 11.73, - 19.166, - 27.85, - 23.648, - 17.751, - 9.626, - 2.245, - 0.346, - 0.0, - 0.0, - 0.0, - 0.0, 0.0, 0.0, 0.0, @@ -91838,18 +91721,18 @@ 0.0, -0.0, 0.0, + 5.298, + 14.458, + 20.366, + 22.621, + 37.661, + 49.593, + 42.584, + 32.356, + 17.576, + 4.016, + 0.427, 0.0, - 0.358, - 5.192, - 8.599, - 9.882, - 16.676, - 26.356, - 22.535, - 17.071, - 9.405, - 2.086, - 0.346, 0.0, 0.0, 0.0, @@ -91862,18 +91745,18 @@ 0.0, -0.0, -0.0, + 4.514, + 14.078, + 21.061, + 24.116, + 38.828, + 51.757, + 44.152, + 33.223, + 18.155, + 3.738, + 0.464, 0.0, - 0.099, - 4.896, - 8.141, - 9.32, - 20.359, - 25.56, - 21.874, - 16.529, - 9.048, - 2.204, - 0.346, 0.0, 0.0, 0.0, @@ -91884,20 +91767,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - -0.0, - 4.689, - 8.023, - 9.518, - 20.34, - 20.466, - 22.232, - 16.648, - 8.411, - 2.398, - 0.398, + 6.462, + 16.857, + 11.879, + 26.694, + 36.024, + 53.307, + 45.532, + 33.991, + 18.484, + 3.921, + 0.537, 0.0, 0.0, 0.0, @@ -91910,18 +91792,18 @@ 0.0, -0.0, -0.0, - 0.0, -0.0, - 4.765, - 8.046, - 9.642, - 15.647, - 26.128, - 22.363, - 16.764, - 9.255, - 2.266, - 0.405, + 7.621, + 18.021, + 24.932, + 27.99, + 44.763, + 54.901, + 46.712, + 35.022, + 19.033, + 3.965, + 0.585, 0.0, 0.0, 0.0, @@ -91934,18 +91816,18 @@ 0.0, 0.0, -0.0, - 0.0, - 0.0, - 1.577, - 4.817, - 1.039, - 0.0, - 0.0, - 8.973, - 7.014, - 9.262, - 2.343, - 0.453, + -0.0, + 7.439, + 18.077, + 25.212, + 28.062, + 45.499, + 54.587, + 46.349, + 34.792, + 18.868, + 4.401, + 0.678, 0.0, 0.0, 0.0, @@ -91956,21 +91838,20 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, -0.0, - 4.548, - 7.571, - 9.48, - 12.724, - 18.738, - 19.152, - 15.284, - 7.76, - 2.548, - 0.469, 0.0, + 5.773, + 15.248, + 21.927, + 24.44, + 40.617, + 51.657, + 44.169, + 33.46, + 18.434, + 4.089, + 0.678, 0.0, 0.0, 0.0, @@ -91983,18 +91864,18 @@ 0.0, 0.0, -0.0, - 0.0, - 0.0, - 2.607, - 5.659, - 5.124, - 14.436, - 10.865, - 9.379, - 6.211, - 2.231, - 0.473, - 0.0, + -0.0, + 5.265, + 14.668, + 21.028, + 26.822, + 54.044, + 50.098, + 42.874, + 32.398, + 17.733, + 4.321, + 0.677, 0.0, 0.0, 0.0, @@ -92006,19 +91887,19 @@ 0.0, 0.0, -0.0, - -0.0, - 0.0, - 4.281, - 7.238, - 7.962, - 12.25, - 23.695, - 20.496, - 15.671, - 8.605, - 2.228, - 0.504, 0.0, + -0.0, + 4.454, + 14.263, + 20.798, + 26.803, + 55.028, + 40.113, + 43.575, + 32.629, + 16.485, + 4.7, + 0.78, 0.0, 0.0, 0.0, @@ -92032,16 +91913,17 @@ 0.0, -0.0, -0.0, - 4.102, - 7.442, - 9.054, - 19.17, - 25.915, - 22.126, - 16.64, - 9.259, - 2.234, - 0.504, + 4.842, + 14.411, + 20.843, + 23.97, + 38.83, + 51.211, + 43.832, + 32.857, + 18.14, + 4.442, + 0.793, 0.0, 0.0, 0.0, @@ -92054,18 +91936,18 @@ 0.0, -0.0, -0.0, + 0.0, -0.0, - -0.0, - -0.0, - 3.203, - 0.141, - 9.402, - 7.664, - 9.562, - 17.129, - 9.529, - 2.753, - 0.547, + 8.163, + 14.512, + 7.109, + 0.0, + 0.201, + 30.39, + 13.747, + 18.154, + 4.591, + 0.888, 0.0, 0.0, 0.0, @@ -92079,17 +91961,17 @@ 0.0, -0.0, -0.0, - 0.477, - 5.787, - 9.332, - 11.023, - 17.347, - 27.506, - 23.4, - 17.6, - 9.705, - 2.397, - 0.59, + 4.855, + 13.985, + 19.912, + 23.653, + 33.088, + 36.726, + 37.538, + 29.956, + 15.21, + 4.994, + 0.92, 0.0, 0.0, 0.0, @@ -92102,42 +91984,19 @@ 0.0, -0.0, 0.0, - 0.0, - 1.652, - 7.319, - 10.97, - 12.624, - 19.787, - 28.619, - 24.383, - 18.384, - 10.282, - 2.356, - 0.572, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, -0.0, -0.0, + 3.849, + 10.182, + 16.163, + 15.115, + 37.45, + 21.295, + 18.382, + 12.173, + 4.373, + 0.927, 0.0, - 2.024, - 7.553, - 11.057, - 12.177, - 17.875, - 28.139, - 23.953, - 18.072, - 10.014, - 2.275, - 0.535, 0.0, 0.0, 0.0, @@ -92147,21 +92006,21 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, 0.0, - -0.0, + 3.724, + 13.463, + 19.259, + 20.678, + 33.291, + 46.442, + 40.172, + 30.716, + 16.866, + 4.368, + 0.987, 0.0, - 0.788, - 5.663, - 8.663, - 9.878, - 15.883, - 25.763, - 21.775, - 16.608, - 9.501, - 2.216, - 0.593, 0.0, 0.0, 0.0, @@ -92172,20 +92031,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - 0.143, - 5.05, - 8.002, - 9.081, - 14.75, - 25.488, - 22.045, - 16.839, - 9.545, - 2.318, - 0.569, + 3.633, + 13.111, + 19.658, + 24.695, + 54.54, + 50.793, + 43.368, + 32.613, + 18.148, + 4.378, + 0.989, 0.0, 0.0, 0.0, @@ -92200,20 +92058,16 @@ 0.0, -0.0, 0.0, - 4.85, - 8.399, - 10.109, - 20.622, - 26.956, - 23.071, - 17.464, - 9.835, - 2.321, - 0.576, - 0.0, - 0.0, - 0.0, 0.0, + 11.349, + 5.348, + 23.5, + 20.094, + 26.676, + 33.572, + 18.676, + 5.396, + 1.072, 0.0, 0.0, 0.0, @@ -92223,18 +92077,21 @@ 0.0, 0.0, 0.0, - 0.755, - 5.251, - 8.701, - 11.262, - 17.318, - 27.622, - 23.608, - 17.8, - 10.015, - 2.371, - 0.641, 0.0, + -0.0, + -0.0, + -0.0, + 6.006, + 16.414, + 23.363, + 26.678, + 41.932, + 53.913, + 45.863, + 34.497, + 19.023, + 4.699, + 1.157, 0.0, 0.0, 0.0, @@ -92247,17 +92104,18 @@ 0.0, -0.0, -0.0, - 0.541, - 5.763, - 9.27, - 10.888, - 17.207, - 27.294, - 23.243, - 17.524, - 9.871, - 2.319, - 0.614, + 0.0, + 8.311, + 19.418, + 26.574, + 29.815, + 46.715, + 56.092, + 47.79, + 36.033, + 20.152, + 4.618, + 1.122, 0.0, 0.0, 0.0, @@ -92268,21 +92126,20 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 0.08, - 4.718, - 7.422, - 8.15, - 13.889, - 25.137, - 22.008, - 16.846, - 9.573, - 2.474, - 0.653, 0.0, + 9.04, + 19.876, + 26.743, + 28.939, + 42.97, + 55.153, + 46.948, + 35.421, + 19.627, + 4.458, + 1.049, 0.0, 0.0, 0.0, @@ -92292,22 +92149,21 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, 0.0, - 4.274, - 7.688, - 9.284, - 14.134, - 26.037, - 22.292, - 16.661, - 9.467, - 2.556, - 0.609, 0.0, 0.0, + -0.0, + 6.617, + 16.171, + 22.051, + 24.433, + 39.065, + 50.496, + 42.678, + 32.551, + 18.622, + 4.342, + 1.163, 0.0, 0.0, 0.0, @@ -92318,20 +92174,20 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 5.167, - 8.644, - 10.273, - 15.736, - 26.925, - 23.02, - 17.423, - 9.898, - 2.415, - 0.636, 0.0, 0.0, + 5.352, + 14.969, + 20.756, + 22.871, + 36.844, + 49.957, + 43.208, + 33.005, + 18.709, + 4.543, + 1.115, 0.0, 0.0, 0.0, @@ -92340,21 +92196,22 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, -0.0, - 4.763, - 7.724, - 8.788, - 14.225, - 25.516, - 22.106, - 16.912, - 9.709, - 2.514, - 0.681, - 0.0, + -0.0, + -0.0, + 4.47, + 14.579, + 21.535, + 26.698, + 56.554, + 52.834, + 45.218, + 34.229, + 19.277, + 4.549, + 1.128, 0.0, 0.0, 0.0, @@ -92364,22 +92221,21 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, -0.0, - 4.558, - 7.251, - 8.377, - 22.991, - 25.294, - 21.993, - 16.819, - 9.624, - 2.577, - 0.678, - 0.0, 0.0, + 6.552, + 15.364, + 22.126, + 27.146, + 41.877, + 54.14, + 46.272, + 34.889, + 19.63, + 4.646, + 1.257, 0.0, 0.0, 0.0, @@ -92392,17 +92248,18 @@ 0.0, 0.0, -0.0, - 3.987, - 7.245, - 8.885, - 13.948, - 25.741, - 21.88, - 16.717, - 9.547, - 2.544, - 0.657, - 0.0, + -0.0, + 6.133, + 16.368, + 23.242, + 26.412, + 41.658, + 53.497, + 45.556, + 34.347, + 19.347, + 4.545, + 1.203, 0.0, 0.0, 0.0, @@ -92415,17 +92272,18 @@ 0.0, 0.0, -0.0, - 0.0, - 4.005, - 7.119, - 8.411, - 13.04, - 25.503, - 21.916, - 16.695, - 9.529, - 2.5, - 0.63, + -0.0, + 5.229, + 14.319, + 19.62, + 21.045, + 35.156, + 49.269, + 43.136, + 33.018, + 18.763, + 4.849, + 1.28, 0.0, 0.0, 0.0, @@ -92438,18 +92296,18 @@ 0.0, -0.0, 0.0, - -0.0, 0.0, - 4.531, - 7.898, - 9.521, - 14.36, - 26.223, - 22.474, - 17.1, - 9.786, - 2.466, - 0.648, + 3.669, + 13.449, + 20.14, + 23.269, + 37.038, + 51.032, + 43.692, + 32.655, + 18.555, + 5.009, + 1.194, 0.0, 0.0, 0.0, @@ -92460,20 +92318,20 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, -0.0, - 4.138, - 7.479, - 9.097, - 13.343, - 26.037, - 22.357, - 17.025, - 9.792, - 2.483, - 0.643, + 4.961, + 15.199, + 22.015, + 25.207, + 38.888, + 52.773, + 45.119, + 34.148, + 19.4, + 4.734, + 1.246, 0.0, 0.0, 0.0, @@ -92487,18 +92345,17 @@ -0.0, -0.0, -0.0, - 0.0, - 3.897, - 6.577, - 8.48, - 12.698, - 25.796, - 22.232, - 16.504, - 9.419, - 2.502, - 0.599, - 0.0, + 4.787, + 14.407, + 20.21, + 22.296, + 36.099, + 50.012, + 43.327, + 33.147, + 19.03, + 4.928, + 1.335, 0.0, 0.0, 0.0, @@ -92512,17 +92369,17 @@ -0.0, -0.0, -0.0, - 3.804, - 7.052, - 8.332, - 9.138, - 22.427, - 19.926, - 14.855, - 8.079, - 2.665, - 0.646, - 0.0, + 4.725, + 14.006, + 19.284, + 27.672, + 52.741, + 49.575, + 43.106, + 32.965, + 18.864, + 5.052, + 1.33, 0.0, 0.0, 0.0, @@ -92532,22 +92389,21 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, - -0.0, - 2.696, - 7.709, - 8.493, - 18.795, - 25.899, - 22.793, - 17.369, - 10.027, - 2.53, - 0.622, 0.0, 0.0, + -0.0, + 3.576, + 12.886, + 19.272, + 22.487, + 36.769, + 50.452, + 42.884, + 32.765, + 18.712, + 4.987, + 1.287, 0.0, 0.0, 0.0, @@ -92560,17 +92416,18 @@ 0.0, -0.0, -0.0, - 2.821, - 6.087, - 7.702, - 9.961, - 24.534, - 13.505, - 7.974, - 9.203, - 2.662, - 0.684, - 0.0, + -0.0, + 3.658, + 12.923, + 19.025, + 21.558, + 34.905, + 49.985, + 42.955, + 32.721, + 18.678, + 4.9, + 1.234, 0.0, 0.0, 0.0, @@ -92584,18 +92441,17 @@ 0.0, 0.0, -0.0, - 3.418, - 6.803, - 8.424, - 11.481, - 25.478, - 21.915, - 16.682, - 9.635, - 2.657, - 0.672, - 0.0, - 0.0, + 4.179, + 13.953, + 20.553, + 23.733, + 36.972, + 51.396, + 44.049, + 33.516, + 19.181, + 4.834, + 1.269, 0.0, 0.0, 0.0, @@ -92608,18 +92464,18 @@ 0.0, -0.0, 0.0, - 5.132, - 8.85, - 10.58, - 15.484, - 27.129, - 23.254, - 17.66, - 10.195, - 2.606, - 0.641, - 0.0, - 0.0, + -0.0, + 3.643, + 13.183, + 19.73, + 22.901, + 35.515, + 51.032, + 43.82, + 33.368, + 19.193, + 4.867, + 1.261, 0.0, 0.0, 0.0, @@ -92631,18 +92487,19 @@ 0.0, 0.0, 0.0, - 0.045, - 4.843, - 7.695, - 9.109, - 14.863, - 26.319, - 22.898, - 17.599, - 10.217, - 2.605, - 0.633, 0.0, + -0.0, + 3.311, + 12.711, + 17.964, + 21.692, + 34.582, + 50.56, + 43.574, + 32.348, + 18.461, + 4.903, + 1.175, 0.0, 0.0, 0.0, @@ -92654,20 +92511,19 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, - 3.888, - 7.244, - 9.063, - 13.192, - 26.311, - 22.74, - 17.405, - 10.171, - 2.485, - 0.483, 0.0, 0.0, + 12.528, + 18.894, + 21.402, + 30.913, + 43.958, + 39.055, + 29.115, + 15.835, + 5.223, + 1.266, 0.0, 0.0, 0.0, @@ -92678,18 +92534,21 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, 0.0, + 0.721, + 10.356, + 20.182, + 24.418, + 52.039, + 50.761, + 44.674, + 34.043, + 19.652, + 4.959, + 1.219, 0.0, - 4.812, - 7.692, - 9.277, - 14.005, - 26.271, - 22.786, - 17.525, - 10.198, - 2.544, - 0.501, 0.0, 0.0, 0.0, @@ -92700,22 +92559,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 0.108, - 5.216, - 8.503, - 10.177, - 23.974, - 26.981, - 23.292, - 17.883, - 10.397, - 2.548, - 0.48, - 0.0, - 0.0, + 1.322, + 10.6, + 17.002, + 20.167, + 31.205, + 48.086, + 26.47, + 15.629, + 18.039, + 5.217, + 1.341, 0.0, 0.0, 0.0, @@ -92727,17 +92583,19 @@ 0.0, 0.0, -0.0, + -0.0, 0.0, - 4.286, - 7.068, - 8.464, - 13.048, - 25.534, - 22.166, - 17.148, - 9.983, - 2.447, - 0.446, + 2.386, + 11.771, + 18.406, + 21.583, + 33.123, + 49.936, + 42.954, + 32.697, + 18.885, + 5.208, + 1.316, 0.0, 0.0, 0.0, @@ -92748,20 +92606,20 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - -0.0, - 2.956, - 6.041, - 2.755, - 11.0, - 24.083, - 20.801, - 15.856, - 9.548, - 2.798, - 0.639, + 0.0, + 4.704, + 15.131, + 22.418, + 25.81, + 38.65, + 53.173, + 45.579, + 34.613, + 19.982, + 5.108, + 1.257, 0.0, 0.0, 0.0, @@ -92772,22 +92630,20 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, -0.0, - 2.719, - 5.929, - 7.445, - 18.415, - 21.832, - 21.416, - 16.395, - 9.471, - 2.744, - 0.656, - 0.0, - 0.0, + 5.161, + 14.565, + 20.155, + 22.926, + 37.064, + 51.586, + 44.879, + 34.493, + 20.025, + 5.105, + 1.24, 0.0, 0.0, 0.0, @@ -92796,22 +92652,22 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - -0.0, 0.0, - 2.639, - 5.946, - 7.689, - 6.351, - 21.695, - 21.368, - 16.325, - 9.549, - 2.925, - 0.728, 0.0, 0.0, + -0.0, + 3.537, + 12.693, + 19.271, + 22.836, + 35.324, + 51.569, + 44.571, + 34.115, + 19.935, + 4.871, + 0.946, 0.0, 0.0, 0.0, @@ -92824,19 +92680,18 @@ 0.0, -0.0, -0.0, - 3.948, - 7.485, - 9.193, - 12.149, - 26.32, - 22.697, - 17.354, - 10.067, - 2.543, - 0.504, - 0.0, - 0.0, 0.0, + 4.91, + 14.503, + 20.148, + 23.256, + 35.544, + 51.492, + 44.661, + 34.348, + 19.988, + 4.986, + 0.982, 0.0, 0.0, 0.0, @@ -92847,17 +92702,20 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, 0.0, - 4.645, - 8.165, - 9.906, - 13.381, - 26.794, - 23.059, - 17.699, - 10.385, - 2.685, - 0.489, + 5.283, + 15.295, + 21.738, + 29.159, + 56.631, + 52.882, + 45.652, + 35.05, + 20.379, + 4.994, + 0.941, 0.0, 0.0, 0.0, @@ -92869,21 +92727,19 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, 0.0, - 3.749, - 7.122, - 8.883, - 20.817, - 25.944, - 22.365, - 16.896, - 9.957, - 3.108, - 0.735, - 0.0, - 0.0, + 4.633, + 13.472, + 18.925, + 21.661, + 33.945, + 50.046, + 43.446, + 33.611, + 19.566, + 4.796, + 0.875, 0.0, 0.0, 0.0, @@ -92892,21 +92748,22 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, -0.0, - 0.616, - 1.592, -0.0, - 1.048, - 7.902, - 10.24, - 13.221, - 8.538, - 2.924, - 0.649, 0.0, + 2.837, + 10.866, + 16.911, + 10.472, + 31.729, + 47.203, + 40.77, + 31.077, + 18.714, + 5.485, + 1.253, 0.0, 0.0, 0.0, @@ -92916,21 +92773,21 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, -0.0, - 4.825, - 8.789, - 10.571, - 14.477, - 27.36, - 23.679, - 18.171, - 10.602, - 2.733, - 0.472, + -0.0, 0.0, + 1.165, + 10.401, + 16.693, + 21.95, + 51.266, + 42.79, + 41.975, + 32.135, + 18.563, + 5.379, + 1.285, 0.0, 0.0, 0.0, @@ -92940,22 +92797,21 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, 0.0, - 4.645, - 8.049, - 9.757, - 13.544, - 26.767, - 23.188, - 17.823, - 10.361, - 2.637, - 0.441, - 0.0, 0.0, + 0.863, + 10.245, + 16.726, + 20.143, + 24.59, + 42.523, + 41.881, + 31.998, + 18.717, + 5.734, + 1.427, 0.0, 0.0, 0.0, @@ -92967,19 +92823,19 @@ 0.0, 0.0, -0.0, + -0.0, 0.0, - 4.258, - 7.475, - 9.215, - 12.488, - 26.174, - 22.627, - 17.362, - 10.121, - 2.619, - 0.48, - 0.0, - 0.0, + 2.839, + 12.81, + 19.742, + 23.09, + 33.978, + 51.587, + 44.486, + 34.014, + 19.731, + 4.984, + 0.988, 0.0, 0.0, 0.0, @@ -92989,21 +92845,21 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, 0.0, 0.0, -0.0, -0.0, - 0.0, - 16.544, - 16.032, - 9.748, - 2.764, - 0.518, - 0.0, - 0.0, + 3.894, + 14.177, + 21.076, + 24.488, + 35.337, + 52.516, + 45.196, + 34.69, + 20.355, + 5.262, + 0.959, 0.0, 0.0, 0.0, @@ -93016,16 +92872,18 @@ 0.0, 0.0, 0.0, - 2.96, - 6.425, - 8.114, - 8.881, - 25.099, - 21.789, - 16.639, - 9.667, - 2.812, - 0.517, + -0.0, + 2.85, + 12.421, + 19.031, + 25.046, + 54.254, + 50.85, + 43.836, + 33.117, + 19.515, + 6.092, + 1.441, 0.0, 0.0, 0.0, @@ -93037,19 +92895,19 @@ 0.0, 0.0, -0.0, + -0.0, 0.0, 0.0, - -0.0, - 3.7, - 7.199, - 8.955, - 19.936, - 26.038, - 22.499, - 17.291, - 10.15, - 2.648, - 0.459, + 6.28, + 8.192, + 4.037, + 7.126, + 24.456, + 20.07, + 25.914, + 16.734, + 5.732, + 1.272, 0.0, 0.0, 0.0, @@ -93062,18 +92920,18 @@ 0.0, 0.0, -0.0, - -0.0, 0.0, - 4.348, - 7.734, - 9.471, - 12.5, - 26.372, - 22.785, - 17.508, - 10.269, - 2.699, - 0.461, + 3.899, + 14.529, + 22.298, + 25.79, + 37.482, + 53.625, + 46.411, + 35.615, + 20.781, + 5.357, + 0.924, 0.0, 0.0, 0.0, @@ -93086,18 +92944,20 @@ 0.0, -0.0, 0.0, + -0.0, + 4.214, + 14.177, + 20.847, + 24.196, + 35.338, + 52.463, + 45.448, + 34.934, + 20.308, + 5.168, + 0.864, 0.0, 0.0, - 4.733, - 8.253, - 10.064, - 13.364, - 26.903, - 23.165, - 17.717, - 10.368, - 2.608, - 0.388, 0.0, 0.0, 0.0, @@ -93106,22 +92966,21 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, - -0.0, - 4.551, - 8.263, - 10.137, - 13.144, - 27.131, - 23.473, - 18.056, - 10.634, - 2.637, - 0.388, + 3.828, + 13.418, + 19.724, + 23.133, + 33.654, + 51.301, + 44.348, + 34.03, + 19.837, + 5.133, + 0.941, + 0.0, 0.0, 0.0, 0.0, @@ -93133,22 +92992,18 @@ 0.0, 0.0, -0.0, - -0.0, - -0.0, - -0.0, - 4.629, - 8.287, - 10.084, - 13.2, - 27.092, - 23.312, - 17.87, - 10.505, - 2.685, - 0.387, 0.0, 0.0, + 1.236, + -0.0, + -0.0, 0.0, + 18.847, + 40.562, + 31.423, + 19.106, + 5.418, + 1.015, 0.0, 0.0, 0.0, @@ -93160,17 +93015,19 @@ 0.0, 0.0, 0.0, - 4.315, - 7.851, - 9.571, - 12.208, - 26.52, - 22.82, - 17.444, - 10.19, - 2.677, - 0.427, 0.0, + -0.0, + 1.259, + 10.874, + 17.664, + 20.976, + 29.153, + 49.194, + 42.706, + 32.613, + 18.947, + 5.512, + 1.013, 0.0, 0.0, 0.0, @@ -93184,17 +93041,17 @@ 0.0, -0.0, -0.0, - 3.261, - 6.704, - 8.455, - 9.834, - 25.379, - 21.887, - 16.597, - 9.689, - 2.649, - 0.273, - 0.0, + 2.337, + 12.323, + 19.181, + 23.778, + 54.379, + 51.035, + 44.098, + 33.89, + 19.893, + 5.19, + 0.899, 0.0, 0.0, 0.0, @@ -93206,18 +93063,19 @@ 0.0, 0.0, -0.0, - -0.0, - -0.0, 0.0, - 2.968, - 3.107, - 7.035, -0.0, - -0.0, - 5.279, - 0.666, - 2.822, - 0.477, + 3.661, + 13.594, + 20.23, + 23.636, + 33.843, + 51.689, + 44.66, + 34.316, + 20.127, + 5.29, + 0.904, 0.0, 0.0, 0.0, @@ -93229,19 +93087,19 @@ 0.0, 0.0, -0.0, - -0.0, 0.0, 0.0, - 3.09, - 6.702, - 8.523, - 9.638, - 25.657, - 22.203, - 17.045, - 10.0, - 2.684, - 0.395, + 4.079, + 14.348, + 21.249, + 24.797, + 35.119, + 52.73, + 45.402, + 34.726, + 20.321, + 5.111, + 0.761, 0.0, 0.0, 0.0, @@ -93253,19 +93111,19 @@ 0.0, 0.0, -0.0, + 0.0, -0.0, - -0.0, - -0.0, - 3.932, - 7.51, - 9.318, - 11.27, - 26.455, - 22.794, - 17.458, - 10.113, - 2.709, - 0.395, + 3.725, + 13.991, + 21.268, + 24.94, + 35.042, + 53.177, + 46.006, + 35.389, + 20.842, + 5.169, + 0.761, 0.0, 0.0, 0.0, @@ -93279,17 +93137,17 @@ 0.0, -0.0, 0.0, - 0.0, - 3.95, - 7.333, - 9.111, - 11.28, - 26.29, - 22.748, - 17.51, - 10.209, - 2.7, - 0.365, + 3.852, + 14.145, + 21.314, + 24.837, + 35.024, + 53.1, + 45.692, + 35.025, + 20.589, + 5.263, + 0.758, 0.0, 0.0, 0.0, @@ -93303,17 +93161,17 @@ -0.0, -0.0, -0.0, - -0.0, - 3.543, - 7.125, - 8.89, - 10.411, - 26.044, - 22.442, - 17.162, - 9.999, - 2.674, - 0.336, + 3.401, + 13.529, + 20.459, + 23.83, + 33.531, + 51.979, + 44.726, + 34.189, + 19.972, + 5.248, + 0.838, 0.0, 0.0, 0.0, @@ -93325,21 +93183,19 @@ 0.0, 0.0, -0.0, - -0.0, - -0.0, - 0.0, - 3.768, - 7.227, - 8.94, - 10.901, - 26.089, - 22.535, - 17.261, - 10.035, - 2.664, - 0.332, 0.0, 0.0, + 1.771, + 11.464, + 18.211, + 21.644, + 30.508, + 49.743, + 42.898, + 32.53, + 18.99, + 5.193, + 0.535, 0.0, 0.0, 0.0, @@ -93348,25 +93204,22 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - -0.0, 0.0, - 3.854, - 7.198, - 8.953, - 10.911, - 25.761, - 22.292, - 17.144, - 10.055, - 2.606, - 0.28, 0.0, 0.0, 0.0, + -0.0, + -0.0, + 10.888, + 11.162, + 18.86, 0.0, 0.0, + 10.346, + 1.306, + 5.53, + 0.936, 0.0, 0.0, 0.0, @@ -93376,18 +93229,21 @@ 0.0, 0.0, 0.0, - 3.713, - 7.172, - 8.937, - 15.793, - 26.172, - 22.547, - 17.257, - 10.064, - 2.65, - 0.272, 0.0, + -0.0, + -0.0, 0.0, + 1.295, + 11.128, + 18.209, + 21.777, + 30.601, + 50.287, + 43.517, + 33.408, + 19.6, + 5.261, + 0.774, 0.0, 0.0, 0.0, @@ -93400,19 +93256,18 @@ 0.0, -0.0, -0.0, - 3.443, - 6.895, - 8.6, - 10.158, - 25.545, - 21.887, - 16.611, - 9.79, - 2.774, - 0.238, - 0.0, - 0.0, 0.0, + 2.72, + 12.778, + 19.792, + 23.335, + 32.374, + 51.851, + 44.677, + 34.218, + 19.821, + 5.31, + 0.774, 0.0, 0.0, 0.0, @@ -93424,18 +93279,19 @@ 0.0, 0.0, -0.0, - 3.745, - 4.138, - 5.349, - 5.661, - 12.568, - 22.394, - 17.029, - 9.95, - 2.689, - 0.229, 0.0, 0.0, + 2.8, + 12.813, + 19.445, + 22.93, + 32.315, + 51.529, + 44.587, + 34.32, + 20.01, + 5.292, + 0.715, 0.0, 0.0, 0.0, @@ -93444,21 +93300,22 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, 0.0, - 3.521, - 7.083, - 9.034, - 10.818, - 26.123, - 22.704, - 17.344, - 10.207, - 2.613, - 0.211, + -0.0, 0.0, + -0.0, + 2.138, + 12.016, + 19.038, + 22.496, + 31.273, + 51.046, + 43.987, + 33.637, + 19.598, + 5.241, + 0.659, 0.0, 0.0, 0.0, @@ -93472,18 +93329,17 @@ 0.0, -0.0, -0.0, - 3.869, - 7.309, - 8.905, - 11.16, - 26.102, - 22.562, - 17.26, - 10.039, - 2.578, - 0.191, - 0.0, - 0.0, + 2.491, + 12.456, + 19.237, + 22.595, + 31.879, + 51.135, + 44.168, + 33.831, + 19.669, + 5.222, + 0.651, 0.0, 0.0, 0.0, @@ -93496,17 +93352,18 @@ 0.0, -0.0, 0.0, - 3.884, - 7.278, - 9.067, - 11.005, - 20.08, - 22.292, - 16.921, - 9.901, - 2.808, - 0.181, 0.0, + 2.691, + 12.625, + 19.18, + 22.62, + 31.699, + 50.491, + 43.693, + 33.603, + 19.708, + 5.108, + 0.548, 0.0, 0.0, 0.0, @@ -93516,20 +93373,21 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, + 0.0, -0.0, - 4.253, - 7.942, - 9.891, - 12.478, - 26.883, - 23.273, - 17.714, - 10.436, - 2.685, - 0.187, + 2.555, + 12.348, + 19.129, + 22.588, + 51.187, + 51.297, + 44.192, + 33.823, + 19.725, + 5.194, + 0.533, 0.0, 0.0, 0.0, @@ -93540,20 +93398,22 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + -0.0, + 2.188, + 11.82, + 18.587, + 21.928, + 30.727, + 50.068, + 42.899, + 32.558, + 19.188, + 5.436, + 0.467, 0.0, 0.0, - 0.406, - 6.019, - 9.941, - 11.791, - 16.871, - 28.444, - 24.427, - 18.584, - 10.752, - 2.616, - 0.131, 0.0, 0.0, 0.0, @@ -93566,18 +93426,17 @@ 0.0, 0.0, -0.0, - -0.0, - 0.119, - 5.553, - 9.168, - 11.068, - 15.044, - 27.82, - 23.92, - 18.244, - 10.604, - 2.564, - 0.131, + 12.412, + 13.183, + 15.556, + 16.167, + 32.568, + 43.892, + 33.377, + 19.503, + 5.271, + 0.449, + 0.0, 0.0, 0.0, 0.0, @@ -93589,19 +93448,18 @@ 0.0, 0.0, -0.0, - -0.0, - -0.0, - 0.124, - 5.39, - 8.777, - 10.721, - 14.981, - 27.778, - 23.971, - 18.349, - 10.694, - 2.55, - 0.11, + 0.0, + 2.201, + 11.974, + 18.955, + 22.778, + 32.006, + 51.2, + 44.501, + 33.995, + 20.006, + 5.122, + 0.413, 0.0, 0.0, 0.0, @@ -93613,19 +93471,19 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, - 0.048, - 5.434, - 9.076, - 11.007, - 15.11, - 27.923, - 24.105, - 18.393, - 10.716, - 2.598, - 0.113, + -0.0, + 2.947, + 12.654, + 19.397, + 22.525, + 31.932, + 51.161, + 44.221, + 33.83, + 19.677, + 5.054, + 0.374, 0.0, 0.0, 0.0, @@ -93637,19 +93495,21 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + 2.65, + 12.686, + 19.338, + 22.843, + 31.923, + 39.356, + 43.692, + 33.165, + 19.405, + 5.504, + 0.355, 0.0, 0.0, - -0.0, - 5.252, - 8.907, - 10.827, - 14.717, - 27.785, - 23.981, - 18.33, - 10.633, - 2.492, - 0.126, 0.0, 0.0, 0.0, @@ -93660,20 +93520,18 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, - 0.031, - 5.646, - 9.367, - 11.225, - 15.011, - 27.992, - 24.029, - 18.282, - 10.552, - 2.453, - 0.106, + 2.863, + 13.407, + 20.638, + 24.459, + 34.598, + 52.69, + 45.615, + 34.72, + 20.455, + 5.263, + 0.366, 0.0, 0.0, 0.0, @@ -93684,20 +93542,21 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, -0.0, - 4.551, - 8.055, - 9.718, - 12.342, - 26.569, - 22.7, - 17.24, - 9.984, - 2.298, - 0.082, + 5.867, + 16.87, + 24.556, + 28.183, + 54.556, + 55.75, + 47.876, + 36.424, + 21.073, + 5.128, + 0.256, + 0.0, 0.0, 0.0, 0.0, @@ -93709,20 +93568,18 @@ 0.0, 0.0, -0.0, - -0.0, - -0.0, - -0.0, - 4.214, - 7.714, - 9.512, - 12.833, - 26.556, - 22.842, - 17.388, - 9.949, - 2.264, - 0.062, 0.0, + 5.304, + 15.956, + 23.041, + 26.764, + 37.419, + 54.527, + 46.883, + 35.758, + 20.784, + 5.026, + 0.257, 0.0, 0.0, 0.0, @@ -93732,21 +93589,21 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, -0.0, - 3.144, - 2.321, - 9.398, - 11.337, - 22.009, - 16.667, - 15.035, - 9.062, - 2.259, - 0.022, 0.0, + 5.314, + 15.637, + 22.276, + 26.085, + 37.297, + 54.446, + 46.984, + 35.965, + 20.961, + 4.999, + 0.216, 0.0, 0.0, 0.0, @@ -93757,20 +93614,20 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, - 4.009, - 7.343, - 9.089, - 11.213, - 26.031, - 22.447, - 16.868, - 9.388, - 2.472, 0.0, + -0.0, 0.0, + 5.166, + 15.723, + 22.861, + 26.646, + 37.549, + 54.728, + 47.246, + 36.049, + 21.004, + 5.092, + 0.221, 0.0, 0.0, 0.0, @@ -93782,18 +93639,19 @@ 0.0, 0.0, -0.0, - -0.0, - 0.0, - 3.723, - 6.91, - 8.632, - 10.541, - 25.515, - 21.87, - 16.333, - 9.135, - 2.395, 0.0, + -0.0, + 4.822, + 15.366, + 22.529, + 26.292, + 37.029, + 54.458, + 47.003, + 35.926, + 20.841, + 4.885, + 0.247, 0.0, 0.0, 0.0, @@ -93807,16 +93665,17 @@ -0.0, -0.0, 0.0, - -0.0, - 3.845, - 7.498, - 9.253, - 11.202, - 26.294, - 22.634, - 17.019, - 9.568, - 2.321, + 5.132, + 16.139, + 23.431, + 27.073, + 37.354, + 54.864, + 47.096, + 35.832, + 20.683, + 4.809, + 0.208, 0.0, 0.0, 0.0, @@ -93829,22 +93688,18 @@ 0.0, 0.0, -0.0, - -0.0, - -0.0, - 0.0, - 4.635, - 8.324, - 10.156, - 12.963, - 27.013, - 23.146, - 17.594, - 9.979, - 2.182, - 0.0, - 0.0, - 0.0, 0.0, + 3.69, + 13.992, + 20.86, + 24.119, + 33.506, + 52.076, + 44.491, + 33.791, + 19.569, + 4.504, + 0.162, 0.0, 0.0, 0.0, @@ -93855,17 +93710,20 @@ 0.0, 0.0, 0.0, - 0.025, - 2.983, - 9.184, - 8.237, - 14.681, - 27.671, - 23.654, - 17.89, - 10.121, - 2.148, + -0.0, + -0.0, 0.0, + 3.429, + 13.332, + 20.191, + 23.716, + 48.398, + 52.05, + 44.771, + 34.08, + 19.5, + 4.438, + 0.121, 0.0, 0.0, 0.0, @@ -93879,18 +93737,17 @@ -0.0, -0.0, -0.0, - 0.267, - 5.519, - 8.964, - 10.785, - 15.136, - 27.474, - 23.551, - 17.778, - 9.988, - 2.093, - 0.0, - 0.0, + 2.89, + 11.235, + 9.62, + 23.492, + 32.335, + 43.138, + 32.668, + 29.469, + 17.761, + 4.427, + 0.044, 0.0, 0.0, 0.0, @@ -93902,19 +93759,18 @@ 0.0, 0.0, -0.0, - 0.0, - 0.0, - 5.162, - 8.544, - 10.14, - 13.889, - 26.847, - 22.932, - 17.314, - 9.634, - 2.125, - 0.0, - 0.0, + -0.0, + -0.0, + 2.98, + 12.93, + 19.465, + 22.887, + 32.002, + 51.021, + 43.996, + 33.062, + 18.401, + 4.846, 0.0, 0.0, 0.0, @@ -93927,19 +93783,18 @@ 0.0, 0.0, -0.0, - -0.0, - 5.26, - 8.8, - 10.458, - 13.966, - 27.069, - 23.037, - 17.267, - 9.667, - 2.046, - 0.0, - 0.0, 0.0, + -0.0, + 2.664, + 12.369, + 18.615, + 21.991, + 31.002, + 50.008, + 42.866, + 32.014, + 17.905, + 4.693, 0.0, 0.0, 0.0, @@ -93948,22 +93803,22 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, 0.0, - 0.572, - 6.146, - 9.755, - 11.584, - 15.793, - 28.009, - 23.917, - 18.049, - 10.109, - 2.046, 0.0, 0.0, 0.0, + -0.0, + 2.702, + 12.609, + 19.768, + 23.207, + 32.258, + 51.535, + 44.363, + 33.357, + 18.753, + 4.55, 0.0, 0.0, 0.0, @@ -93976,16 +93831,18 @@ 0.0, 0.0, -0.0, - 5.271, - 8.857, - 10.588, - 14.533, - 27.328, - 23.299, - 17.518, - 9.766, - 1.98, + -0.0, 0.0, + 3.833, + 14.156, + 21.387, + 24.977, + 34.578, + 52.946, + 45.366, + 34.484, + 19.559, + 4.277, 0.0, 0.0, 0.0, @@ -93997,20 +93854,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 4.575, - 8.197, - 9.983, - 12.382, - 22.821, - 19.432, - 14.341, - 9.036, - 1.954, - 0.0, - 0.0, + -0.0, + 5.122, + 10.919, + 23.073, + 21.217, + 36.709, + 54.235, + 46.362, + 35.065, + 19.837, + 4.21, 0.0, 0.0, 0.0, @@ -94023,16 +93879,18 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 1.668, - 7.67, - 5.352, - 4.048, - 22.341, - 5.666, - 3.439, - 7.983, - 1.962, + 5.596, + 15.89, + 22.642, + 26.211, + 49.038, + 53.85, + 46.161, + 34.846, + 19.577, + 4.102, 0.0, 0.0, 0.0, @@ -94047,16 +93905,16 @@ 0.0, -0.0, 0.0, - -0.0, - 4.24, - 7.951, - 9.738, - 11.874, - 26.511, - 22.699, - 16.86, - 9.24, - 1.784, + 4.892, + 15.189, + 21.818, + 24.946, + 35.336, + 52.62, + 44.947, + 33.935, + 18.883, + 4.165, 0.0, 0.0, 0.0, @@ -94069,20 +93927,18 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, - 3.998, - 7.526, - 9.332, - 11.962, - 26.218, - 22.358, - 16.783, - 9.15, - 1.689, 0.0, 0.0, + 4.95, + 15.382, + 22.321, + 25.569, + 35.428, + 53.055, + 45.153, + 33.843, + 18.947, + 4.011, 0.0, 0.0, 0.0, @@ -94094,17 +93950,19 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, -0.0, - 3.503, - 6.664, - 8.069, - 10.223, - 25.081, - 14.828, - 9.248, - 8.0, - 1.742, + 6.193, + 17.118, + 24.192, + 27.776, + 38.887, + 54.897, + 46.877, + 35.375, + 19.814, + 4.01, 0.0, 0.0, 0.0, @@ -94119,17 +93977,16 @@ 0.0, 0.0, -0.0, - -0.0, - 4.138, - 7.881, - 9.673, - 10.188, - 11.884, - 1.13, - 16.406, - 2.072, - 0.0, - 0.0, + 4.956, + 15.403, + 22.433, + 25.824, + 36.533, + 53.562, + 45.666, + 34.336, + 19.141, + 3.881, 0.0, 0.0, 0.0, @@ -94144,15 +94001,16 @@ 0.0, 0.0, -0.0, - 3.126, - 6.866, - 8.393, - 9.375, - 25.291, - 18.784, - 13.78, - 9.199, - 1.665, + 3.512, + 14.04, + 21.138, + 24.639, + 33.763, + 44.73, + 38.087, + 28.109, + 17.711, + 3.829, 0.0, 0.0, 0.0, @@ -94165,18 +94023,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 5.033, - 8.546, - 10.348, - 14.453, - 27.078, - 23.037, - 17.121, - 9.159, - 1.617, + -0.0, + 8.342, + 20.105, + 15.563, + 20.939, + 43.789, + 11.106, + 6.74, + 15.646, + 3.846, 0.0, 0.0, 0.0, @@ -94191,17 +94049,16 @@ 0.0, 0.0, -0.0, - -0.0, - 4.224, - 7.799, - 9.516, - -0.0, - -0.0, - 0.0, - 16.8, - 8.952, - 1.548, - 0.0, + 3.206, + 13.382, + 20.655, + 24.159, + 40.699, + 51.962, + 44.49, + 33.046, + 18.11, + 3.497, 0.0, 0.0, 0.0, @@ -94216,15 +94073,16 @@ 0.0, -0.0, 0.0, - 4.964, - 8.421, - 10.01, - 13.523, - 9.003, - 7.226, - 1.664, - 6.103, - 1.563, + 3.317, + 12.908, + 19.823, + 23.363, + 33.134, + 51.387, + 43.821, + 32.894, + 17.934, + 3.311, 0.0, 0.0, 0.0, @@ -94237,18 +94095,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, -0.0, - 4.817, - 8.206, - 9.65, - 13.1, - 25.935, - 21.911, - 16.143, - 8.429, - 1.498, + 2.647, + 11.938, + 18.134, + 20.888, + 30.397, + 49.16, + 29.063, + 18.127, + 15.679, + 3.414, 0.0, 0.0, 0.0, @@ -94263,16 +94121,15 @@ 0.0, -0.0, 0.0, - -0.0, - 4.409, - 7.735, - 9.121, - 12.037, - 25.417, - 21.548, - 5.78, - 8.296, - 0.654, + 3.169, + 13.182, + 20.518, + 24.03, + 29.806, + 23.293, + 2.215, + 32.155, + 4.061, 0.0, 0.0, 0.0, @@ -94288,15 +94145,16 @@ 0.0, 0.0, 0.0, - 4.652, - 8.251, - 9.904, - 13.187, - 26.479, - 22.416, - 16.38, - 8.513, - 1.339, + 1.608, + 11.198, + 18.529, + 21.523, + 29.773, + 49.571, + 36.817, + 27.009, + 18.03, + 3.263, 0.0, 0.0, 0.0, @@ -94310,17 +94168,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 4.892, - 8.515, - 10.188, - 13.767, - 26.828, - 22.426, - 16.142, - 8.299, - 1.286, + 4.658, + 14.937, + 21.822, + 25.354, + 36.675, + 53.074, + 45.153, + 33.557, + 17.951, + 3.17, 0.0, 0.0, 0.0, @@ -94333,18 +94191,18 @@ 0.0, 0.0, 0.0, + -0.0, + 0.0, + 4.47, + 13.351, + 20.358, + 23.724, + 0.0, 0.0, -0.0, - 1.337, - 6.82, - 10.451, - 12.019, - 16.892, - 28.335, - 23.891, - 17.608, - 8.975, - 1.326, + 32.928, + 17.546, + 3.034, 0.0, 0.0, 0.0, @@ -94358,17 +94216,18 @@ 0.0, 0.0, -0.0, + -0.0, + 4.559, + 14.8, + 21.577, + 24.692, + 34.951, + 17.646, + 14.164, + 3.262, + 11.961, + 3.064, 0.0, - 1.672, - 7.251, - 10.919, - 12.592, - 17.594, - 28.457, - 23.98, - 17.616, - 9.04, - 1.257, 0.0, 0.0, 0.0, @@ -94382,17 +94241,16 @@ 0.0, 0.0, -0.0, - -0.0, - 0.655, - 5.997, - 9.84, - 11.613, - 16.379, - 27.859, - 23.597, - 17.43, - 8.92, - 1.172, + 4.346, + 14.514, + 21.155, + 23.987, + 38.147, + 50.832, + 42.945, + 31.641, + 16.52, + 2.936, 0.0, 0.0, 0.0, @@ -94407,16 +94265,16 @@ 0.0, 0.0, 0.0, - 0.702, - 5.897, - 9.281, - 10.514, - 14.807, - 25.885, - 21.673, - 16.091, - 8.304, - 1.061, + 4.007, + 13.715, + 20.232, + 22.949, + 32.59, + 49.817, + 42.235, + 11.33, + 16.261, + 1.282, 0.0, 0.0, 0.0, @@ -94431,16 +94289,16 @@ 0.0, 0.0, -0.0, - 0.285, - 5.235, - 8.499, - 9.716, - 13.677, - 25.127, - 21.245, - 15.672, - 7.996, - 1.038, + 4.29, + 14.191, + 21.243, + 24.484, + 34.561, + 51.9, + 43.936, + 32.105, + 16.685, + 2.624, 0.0, 0.0, 0.0, @@ -94453,20 +94311,19 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 0.054, - 5.208, - 8.588, - 10.215, - 14.431, - 26.544, - 22.047, - 15.718, - 7.192, - 0.821, 0.0, 0.0, + 4.469, + 14.661, + 21.761, + 25.041, + 35.52, + 52.583, + 43.955, + 31.639, + 16.266, + 2.521, + 0.0, 0.0, 0.0, 0.0, @@ -94479,17 +94336,17 @@ 0.0, 0.0, 0.0, - -0.0, - 4.807, - 9.285, - 10.805, - 12.627, - 26.986, - 22.124, - 15.275, - 7.902, - 0.933, 0.0, + 7.692, + 18.439, + 25.556, + 28.628, + 41.04, + 55.536, + 46.825, + 34.511, + 17.592, + 2.6, 0.0, 0.0, 0.0, @@ -94503,17 +94360,17 @@ 0.0, 0.0, -0.0, - 2.481, - 8.512, - 12.712, - 14.337, - 19.804, - 29.968, - 24.968, - 18.092, - 9.011, - 0.932, - 0.0, + -0.0, + 8.349, + 19.284, + 26.474, + 29.752, + 42.418, + 55.775, + 47.001, + 34.528, + 17.718, + 2.464, 0.0, 0.0, 0.0, @@ -94527,16 +94384,18 @@ 0.0, 0.0, -0.0, - 3.125, - 9.243, - 13.05, - 14.337, - 20.986, - 29.924, - 25.034, - 18.287, - 9.057, - 0.88, + 0.0, + 6.355, + 16.826, + 24.358, + 27.833, + 40.036, + 54.604, + 46.25, + 34.163, + 17.484, + 2.297, + 0.0, 0.0, 0.0, 0.0, @@ -94550,17 +94409,17 @@ 0.0, 0.0, -0.0, + 6.448, + 16.63, + 23.262, + 25.68, + 36.955, + 50.734, + 42.48, + 31.538, + 16.276, + 2.08, 0.0, - 2.77, - 8.518, - 12.231, - 13.679, - 19.586, - 28.92, - 24.177, - 17.585, - 8.78, - 0.747, 0.0, 0.0, 0.0, @@ -94574,17 +94433,17 @@ 0.0, 0.0, 0.0, + 5.631, + 15.332, + 21.731, + 24.116, + 34.74, + 49.249, + 41.64, + 30.716, + 15.672, + 2.034, 0.0, - 1.76, - 7.029, - 10.271, - 11.511, - 17.003, - 26.97, - 22.79, - 16.74, - 8.261, - 0.626, 0.0, 0.0, 0.0, @@ -94598,17 +94457,16 @@ 0.0, 0.0, -0.0, - -0.0, - 1.202, - 7.09, - 10.991, - 12.652, - 17.315, - 28.513, - 23.986, - 17.157, - 8.244, - 0.528, + 5.177, + 15.28, + 21.904, + 25.094, + 36.219, + 52.026, + 43.213, + 30.807, + 14.097, + 1.609, 0.0, 0.0, 0.0, @@ -94622,18 +94480,17 @@ 0.0, 0.0, -0.0, - -0.0, - 2.358, - 7.796, - 11.1, - 12.279, - 17.86, - 27.447, - 22.957, - 16.619, - 8.167, - 0.472, 0.0, + 3.301, + 14.493, + 23.27, + 26.25, + 34.453, + 52.892, + 43.364, + 29.939, + 15.488, + 1.828, 0.0, 0.0, 0.0, @@ -94647,16 +94504,18 @@ 0.0, 0.0, 0.0, - 1.438, - 7.02, - 10.58, - 12.163, - 17.497, - 27.657, - 23.009, - 16.334, - 7.676, - 0.411, + -0.0, + 9.936, + 21.756, + 29.988, + 33.173, + 46.749, + 58.737, + 48.937, + 35.461, + 17.661, + 1.827, + 0.0, 0.0, 0.0, 0.0, @@ -94670,17 +94529,16 @@ 0.0, 0.0, -0.0, - -0.0, - 0.248, - 6.33, - 11.093, - 12.95, - 16.551, - 28.686, - 23.994, - 17.33, - 8.214, - 0.421, + 11.197, + 23.189, + 30.651, + 33.173, + 49.066, + 58.651, + 49.066, + 35.842, + 17.752, + 1.724, 0.0, 0.0, 0.0, @@ -94695,16 +94553,16 @@ 0.0, -0.0, 0.0, - 3.038, - 8.93, - 12.608, - 14.076, - 20.174, - 29.218, - 24.261, - 17.344, - 8.106, - 0.359, + 10.501, + 21.767, + 29.044, + 31.882, + 46.321, + 56.684, + 47.386, + 34.467, + 17.208, + 1.465, 0.0, 0.0, 0.0, @@ -94718,18 +94576,17 @@ 0.0, 0.0, -0.0, - 0.0, - 2.626, - 8.277, - 11.707, - 12.99, - 18.731, - 28.007, - 23.191, - 16.632, - 7.794, - 0.295, - 0.0, + -0.0, + 8.522, + 18.85, + 25.203, + 27.633, + 41.258, + 52.86, + 44.668, + 32.809, + 16.191, + 1.228, 0.0, 0.0, 0.0, @@ -94743,16 +94600,17 @@ 0.0, 0.0, -0.0, - 2.347, - 7.842, - 11.317, - 12.56, - 18.122, - 27.547, - 22.922, - 16.444, - 7.644, - 0.232, + -0.0, + 7.428, + 18.968, + 26.614, + 29.869, + 41.872, + 55.885, + 47.012, + 33.628, + 16.158, + 1.036, 0.0, 0.0, 0.0, @@ -94766,18 +94624,17 @@ 0.0, 0.0, -0.0, - -0.0, - 1.051, - 6.381, - 10.107, - 11.685, - 16.554, - 27.668, - 23.085, - 16.507, - 7.532, - 0.191, 0.0, + 9.695, + 20.352, + 26.828, + 29.139, + 42.938, + 53.796, + 44.996, + 32.574, + 16.007, + 0.924, 0.0, 0.0, 0.0, @@ -94789,19 +94646,19 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 1.739, - 7.071, - 10.395, - 11.706, - 17.267, - 27.271, - 22.779, - 16.298, - 7.431, - 0.146, + -0.0, 0.0, + 7.891, + 18.831, + 25.809, + 28.911, + 42.229, + 54.208, + 45.098, + 32.014, + 15.045, + 0.806, 0.0, 0.0, 0.0, @@ -94814,18 +94671,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 7.103, - 6.671, - 4.935, - 6.782, - 16.885, - 7.559, - 16.424, - 7.411, - 0.102, 0.0, + 5.558, + 17.478, + 26.815, + 30.453, + 40.374, + 56.224, + 47.029, + 33.967, + 16.1, + 0.824, 0.0, 0.0, 0.0, @@ -94839,15 +94696,17 @@ 0.0, 0.0, -0.0, - 0.674, - 5.836, - 6.922, - 8.121, - 12.004, - 22.18, - 16.079, - 10.641, - 3.208, + -0.0, + 11.026, + 22.575, + 29.784, + 32.661, + 47.474, + 57.267, + 47.551, + 33.995, + 15.888, + 0.704, 0.0, 0.0, 0.0, @@ -94862,16 +94721,17 @@ 0.0, 0.0, -0.0, + 10.218, + 21.295, + 28.018, + 30.533, + 44.647, + 54.894, + 45.455, + 32.599, + 15.276, + 0.579, 0.0, - 1.146, - 3.512, - 7.293, - 5.552, - 0.343, - 17.944, - 10.032, - 10.619, - 1.622, 0.0, 0.0, 0.0, @@ -94884,18 +94744,19 @@ 0.0, 0.0, 0.0, + -0.0, + 9.671, + 20.442, + 27.254, + 29.689, + 43.455, + 53.991, + 44.928, + 32.23, + 14.983, + 0.454, 0.0, 0.0, - -0.0, - 0.553, - 5.965, - 9.491, - 11.054, - 15.951, - 26.904, - 22.222, - 15.623, - 6.796, 0.0, 0.0, 0.0, @@ -94906,20 +94767,22 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, + 7.132, + 17.578, + 24.882, + 27.975, + 40.379, + 54.23, + 45.247, + 32.353, + 14.763, + 0.375, 0.0, 0.0, 0.0, 0.0, - 0.86, - 6.111, - 9.627, - 11.141, - 12.539, - 26.944, - 22.219, - 15.614, - 6.755, 0.0, 0.0, 0.0, @@ -94928,6 +94791,21 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + 8.481, + 18.931, + 25.447, + 28.016, + 41.777, + 53.452, + 44.647, + 31.944, + 14.564, + 0.287, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -94935,17 +94813,20 @@ 0.0, 0.0, 0.0, - 1.414, - 6.878, - 10.636, - 12.088, - 16.883, - 27.59, - 22.699, - 15.655, - 6.592, 0.0, 0.0, + -0.0, + 0.0, + 0.121, + 18.993, + 18.147, + 14.745, + 26.176, + 33.094, + 14.815, + 32.192, + 14.525, + 0.199, 0.0, 0.0, 0.0, @@ -94959,16 +94840,16 @@ 0.0, 0.0, -0.0, - 2.126, - 8.137, - 11.741, - 13.227, - 17.763, - 28.516, - 16.741, - 10.728, - 0.392, 0.0, + 6.393, + 16.511, + 18.64, + 20.988, + 31.461, + 43.473, + 31.515, + 20.857, + 6.288, 0.0, 0.0, 0.0, @@ -94981,17 +94862,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - -0.0, - 8.593, 0.0, - 13.737, - 12.948, -0.0, - -0.0, - 16.667, - 0.086, + 7.319, + 11.956, + 19.367, + 15.955, + 8.605, + 35.17, + 19.662, + 20.814, + 3.178, 0.0, 0.0, 0.0, @@ -95006,16 +94888,16 @@ 0.0, 0.0, 0.0, - -0.0, - 3.554, - 9.4, - 12.899, - 14.306, 0.0, - 0.362, - 0.437, - 0.685, - 3.567, + 6.156, + 16.764, + 23.675, + 26.738, + 39.197, + 52.733, + 43.556, + 30.621, + 13.319, 0.0, 0.0, 0.0, @@ -95029,18 +94911,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 3.349, - 8.966, - 12.314, - 13.484, - 19.357, - 28.139, - 23.229, - 15.934, - 6.478, 0.0, + 6.757, + 17.049, + 23.942, + 26.909, + 32.511, + 52.81, + 43.549, + 30.604, + 13.239, 0.0, 0.0, 0.0, @@ -95053,19 +94934,19 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 2.72, - 8.165, - 11.564, - 12.632, - 18.04, - 27.639, - 22.822, - 15.986, - 6.471, 0.0, 0.0, + -0.0, + 7.844, + 18.553, + 25.918, + 28.765, + 41.023, + 54.077, + 44.49, + 30.685, + 12.92, + 0.0, 0.0, 0.0, 0.0, @@ -95079,15 +94960,16 @@ 0.0, 0.0, -0.0, - 2.435, - 7.722, - 10.453, - 11.133, - 16.606, - 26.432, - 21.926, - 15.464, - 6.305, + 0.0, + 9.238, + 21.021, + 28.083, + 30.998, + 42.748, + 55.891, + 32.812, + 21.028, + 0.769, 0.0, 0.0, 0.0, @@ -95103,15 +94985,15 @@ 0.0, 0.0, -0.0, - 1.882, - 7.32, - 5.659, - 6.394, - 16.817, - 26.907, - 21.785, - 14.733, - 5.765, + -0.0, + 21.915, + -0.0, + 31.996, + 30.451, + -0.0, + 0.0, + 32.668, + 0.168, 0.0, 0.0, 0.0, @@ -95127,15 +95009,15 @@ 0.0, -0.0, 0.0, - 2.253, - 7.662, - 10.792, - 11.807, - 16.553, - 26.772, - 21.954, - 15.096, - 5.786, + 12.037, + 23.496, + 30.354, + 33.112, + -0.0, + 8.642, + 0.856, + 1.343, + 6.991, 0.0, 0.0, 0.0, @@ -95151,15 +95033,15 @@ 0.0, 0.0, 0.0, - 2.305, - 7.847, - 11.091, - 12.275, - 17.45, - 27.255, - 22.209, - 15.248, - 5.946, + 11.636, + 22.645, + 29.207, + 31.5, + 45.873, + 55.153, + 45.529, + 31.23, + 12.696, 0.0, 0.0, 0.0, @@ -95173,17 +95055,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 2.099, - 7.299, - 10.186, - 10.849, - 15.468, - 25.499, - 21.219, - 14.82, - 5.757, + -0.0, + 10.403, + 21.075, + 27.737, + 29.83, + 43.294, + 54.173, + 44.731, + 31.333, + 12.684, 0.0, 0.0, 0.0, @@ -95198,16 +95080,16 @@ 0.0, 0.0, -0.0, - -0.0, - 1.283, - 2.304, - 6.177, - 10.167, - 11.38, - 20.402, - 21.47, - 12.589, - 5.156, + 0.0, + 9.845, + 20.208, + 25.56, + 26.893, + 40.482, + 51.807, + 42.975, + 30.31, + 12.358, 0.0, 0.0, 0.0, @@ -95223,15 +95105,15 @@ 0.0, -0.0, -0.0, - 0.258, - 5.94, - 9.151, - 10.444, - 13.075, - 26.362, - 21.533, - 14.398, - 4.84, + 8.76, + 19.418, + 16.164, + 17.604, + 40.894, + 52.737, + 42.698, + 28.876, + 11.299, 0.0, 0.0, 0.0, @@ -95246,16 +95128,17 @@ 0.0, 0.0, -0.0, + -0.0, + 9.488, + 20.09, + 26.225, + 28.214, + 40.378, + 52.474, + 43.029, + 29.587, + 11.34, 0.0, - 1.445, - 6.841, - 10.399, - 11.855, - 15.997, - 27.09, - 22.18, - 14.934, - 5.26, 0.0, 0.0, 0.0, @@ -95269,17 +95152,16 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 2.21, - 7.831, - 11.192, - 12.235, - 16.527, - 26.667, - 21.756, - 14.618, - 5.152, + 0.0, + 9.59, + 20.453, + 26.809, + 29.132, + 42.136, + 53.42, + 43.529, + 29.887, + 11.653, 0.0, 0.0, 0.0, @@ -95295,15 +95177,15 @@ 0.0, -0.0, -0.0, - 2.673, - 8.16, - 11.417, - 12.378, - 16.872, - 26.687, - 21.84, - 14.782, - 5.124, + 9.186, + 19.379, + 25.036, + 26.335, + 38.25, + 49.977, + 41.59, + 29.048, + 11.283, 0.0, 0.0, 0.0, @@ -95317,18 +95199,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 1.988, - 7.008, - 10.517, - 12.002, - 16.525, - 27.199, - 22.224, - 14.864, - 4.638, 0.0, + 7.586, + 9.588, + 17.179, + 24.998, + 30.238, + 39.987, + 42.081, + 24.675, + 10.106, 0.0, 0.0, 0.0, @@ -95341,18 +95222,18 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 1.974, - 7.487, - 10.573, - 11.58, - 15.022, - 26.442, - 21.744, - 14.585, - 4.331, 0.0, + -0.0, + 5.578, + 16.714, + 23.008, + 25.543, + 33.561, + 51.669, + 42.205, + 28.219, + 9.485, 0.0, 0.0, 0.0, @@ -95366,16 +95247,17 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 1.877, - 7.259, - 10.051, - 10.841, - 13.914, - 25.767, - 21.024, - 14.075, - 4.299, + 7.904, + 18.48, + 25.455, + 28.308, + 39.289, + 53.097, + 43.473, + 29.271, + 10.309, 0.0, 0.0, 0.0, @@ -95390,16 +95272,17 @@ 0.0, 0.0, -0.0, + -0.0, + 9.403, + 20.42, + 27.008, + 29.052, + 40.327, + 52.267, + 42.641, + 28.651, + 10.097, 0.0, - 2.192, - 7.679, - 11.07, - 12.249, - 15.525, - 27.04, - 21.981, - 14.558, - 4.783, 0.0, 0.0, 0.0, @@ -95414,16 +95297,15 @@ 0.0, 0.0, -0.0, - 0.0, - 2.249, - 7.538, - 10.734, - 11.753, - 14.796, - 26.407, - 21.471, - 14.248, - 4.416, + 10.312, + 21.065, + 27.448, + 29.334, + 41.002, + 52.306, + 42.806, + 28.973, + 10.042, 0.0, 0.0, 0.0, @@ -95439,16 +95321,15 @@ 0.0, -0.0, -0.0, - 0.755, - 6.399, - 9.97, - 11.101, - 12.446, - 23.08, - 10.905, - 7.856, - 2.016, - 0.0, + 8.968, + 18.807, + 25.685, + 28.596, + 40.323, + 53.31, + 43.558, + 29.134, + 9.09, 0.0, 0.0, 0.0, @@ -95463,16 +95344,16 @@ 0.0, 0.0, -0.0, - 0.742, - 6.763, - 10.232, - 11.531, - 12.475, - 26.022, - 20.14, - 12.344, - 3.126, 0.0, + 8.941, + 19.747, + 25.796, + 27.769, + 37.378, + 51.826, + 42.618, + 28.587, + 8.488, 0.0, 0.0, 0.0, @@ -95487,16 +95368,16 @@ 0.0, 0.0, 0.0, - 1.848, - 8.14, - 11.914, - 13.635, - 15.462, - 28.758, - 23.507, - 15.4, - 4.656, 0.0, + 8.751, + 19.3, + 24.771, + 26.32, + 35.205, + 50.504, + 41.208, + 27.587, + 8.425, 0.0, 0.0, 0.0, @@ -95509,20 +95390,18 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 3.575, - 9.331, - 12.72, - 13.666, - 16.934, - 28.142, - 22.861, - 15.277, - 4.678, 0.0, 0.0, 0.0, + 9.369, + 20.123, + 26.768, + 29.081, + 38.363, + 52.999, + 43.082, + 28.534, + 9.375, 0.0, 0.0, 0.0, @@ -95535,15 +95414,18 @@ 0.0, 0.0, 0.0, - 3.351, - 9.1, - 12.403, - 13.31, - 16.347, - 27.415, - 22.162, - 14.557, - 4.277, + 0.0, + -0.0, + -0.0, + 9.479, + 19.846, + 26.11, + 28.107, + 36.934, + 51.758, + 42.084, + 27.927, + 8.656, 0.0, 0.0, 0.0, @@ -95558,17 +95440,16 @@ 0.0, 0.0, -0.0, - -0.0, - 2.739, - 8.177, - 11.562, - 12.543, - 15.171, - 27.078, - 21.884, - 14.241, - 3.984, 0.0, + 6.552, + 17.615, + 24.614, + 26.829, + 32.329, + 45.237, + 21.373, + 15.397, + 3.951, 0.0, 0.0, 0.0, @@ -95582,16 +95463,17 @@ 0.0, 0.0, 0.0, + -0.0, 0.0, - 2.558, - 7.909, - 10.853, - 11.673, - 13.965, - 17.525, - 19.251, - 10.957, - 3.743, + 6.526, + 18.328, + 25.127, + 27.673, + 32.384, + 51.002, + 39.475, + 24.195, + 6.128, 0.0, 0.0, 0.0, @@ -95607,15 +95489,15 @@ 0.0, 0.0, -0.0, - 2.174, - 0.171, - 9.684, - 10.927, - 13.405, - 26.319, - 21.531, - 13.987, - 1.198, + 8.694, + 21.027, + 28.423, + 31.797, + 38.239, + 56.366, + 46.074, + 30.184, + 9.126, 0.0, 0.0, 0.0, @@ -95629,18 +95511,17 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 2.177, - 8.467, - 7.746, - -0.0, - -0.0, - 22.907, - 15.532, - 12.754, - 2.656, 0.0, + 12.079, + 23.36, + 30.004, + 31.858, + 41.123, + 55.159, + 44.808, + 29.943, + 9.169, 0.0, 0.0, 0.0, @@ -95653,20 +95534,18 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 1.813, - 7.803, - 11.254, - 12.192, - 12.937, - 27.209, - 22.047, - 14.408, - 3.565, 0.0, 0.0, 0.0, + 11.639, + 22.909, + 29.382, + 31.159, + 39.974, + 53.734, + 43.437, + 28.532, + 8.384, 0.0, 0.0, 0.0, @@ -95679,15 +95558,18 @@ 0.0, 0.0, 0.0, - 3.419, - 9.509, - 13.127, - 14.291, - 16.501, - 28.47, - 22.733, - 14.754, - 3.414, + 0.0, + 0.0, + -0.0, + 10.441, + 21.098, + 27.733, + 29.656, + 37.669, + 53.073, + 42.893, + 27.912, + 7.809, 0.0, 0.0, 0.0, @@ -95703,15 +95585,15 @@ 0.0, -0.0, -0.0, - 2.703, - 8.641, - 12.121, - 13.242, - 14.943, - 27.58, - 22.157, - 14.016, - 2.959, + 10.085, + 20.573, + 26.343, + 27.951, + 35.305, + 34.349, + 37.732, + 21.475, + 7.337, 0.0, 0.0, 0.0, @@ -95726,17 +95608,16 @@ 0.0, 0.0, 0.0, - -0.0, - 1.972, - 7.751, - 11.252, - 12.474, - 13.29, - 26.981, - 21.492, - 13.823, - 2.809, 0.0, + 9.334, + 5.407, + 24.053, + 26.489, + 34.208, + 51.585, + 42.2, + 27.414, + 2.347, 0.0, 0.0, 0.0, @@ -95751,16 +95632,16 @@ 0.0, 0.0, -0.0, - 1.688, - 7.246, - 10.464, - 11.315, - 11.775, - 25.955, - 20.964, - 13.725, - 2.74, - 0.0, + -0.0, + 9.339, + 21.668, + 20.253, + 3.182, + 1.2, + 53.521, + 30.443, + 24.998, + 5.205, 0.0, 0.0, 0.0, @@ -95775,15 +95656,17 @@ 0.0, 0.0, -0.0, - 1.443, - 6.709, - 9.703, - 10.919, - 11.678, - 26.005, - 20.906, - 13.499, - 2.624, + 0.0, + 8.626, + 20.365, + 27.129, + 28.968, + 33.291, + 53.33, + 43.212, + 28.24, + 6.986, + 0.0, 0.0, 0.0, 0.0, @@ -95798,16 +95681,18 @@ 0.0, 0.0, -0.0, + 11.772, + 23.71, + 30.802, + 33.082, + 40.276, + 55.8, + 44.556, + 28.918, + 6.692, + 0.0, + 0.0, 0.0, - 1.354, - 6.871, - 10.082, - 11.011, - 10.951, - 25.552, - 20.419, - 12.87, - 2.231, 0.0, 0.0, 0.0, @@ -95820,18 +95705,21 @@ 0.0, 0.0, 0.0, + 10.37, + 22.008, + 28.829, + 31.027, + 37.221, + 54.058, + 43.428, + 27.471, + 5.801, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, - 0.93, - 5.65, - 8.65, - 10.309, - 3.166, - 25.831, - 20.789, - 13.077, - 2.297, 0.0, 0.0, 0.0, @@ -95840,6 +95728,23 @@ 0.0, 0.0, 0.0, + -0.0, + 8.937, + 20.264, + 27.125, + 29.52, + 33.983, + 52.883, + 42.124, + 27.094, + 5.506, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -95847,16 +95752,16 @@ 0.0, 0.0, -0.0, - 1.619, - 7.363, - 11.092, - 12.317, - 12.397, - 26.901, - 21.501, - 13.383, - 2.165, 0.0, + 8.38, + 19.274, + 25.581, + 27.249, + 31.014, + 50.872, + 41.09, + 26.9, + 5.369, 0.0, 0.0, 0.0, @@ -95872,14 +95777,15 @@ 0.0, 0.0, -0.0, - 5.913, - 10.139, - 11.413, - 10.421, - 15.396, - 19.775, - 11.699, - 0.09, + 7.901, + 18.221, + 24.09, + 26.473, + 30.822, + 50.971, + 40.976, + 26.458, + 5.143, 0.0, 0.0, 0.0, @@ -95894,16 +95800,16 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 6.003, - 10.005, - 11.413, - 10.569, - 17.391, - 21.232, - 13.34, - 2.221, + 7.726, + 18.539, + 24.832, + 26.654, + 29.396, + 50.082, + 40.022, + 25.226, + 4.373, 0.0, 0.0, 0.0, @@ -95917,17 +95823,20 @@ 0.0, 0.0, 0.0, + -0.0, + 0.0, + 6.894, + 16.145, + 22.026, + 25.279, + 14.14, + 50.629, + 40.747, + 25.631, + 4.503, 0.0, 0.0, 0.0, - 6.335, - 9.876, - 5.551, - 1.776, - 2.571, - 14.721, - 8.181, - 0.088, 0.0, 0.0, 0.0, @@ -95940,18 +95849,40 @@ 0.0, 0.0, 0.0, + 8.245, + 19.504, + 26.811, + 29.213, + 32.233, + 52.727, + 42.142, + 26.23, + 4.243, + 0.0, 0.0, 0.0, 0.0, - 0.312, 0.0, - 10.418, - 11.951, - 11.186, - 13.779, - 21.617, - 13.37, - 0.531, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 3.615, + 16.662, + 24.945, + 27.441, + 25.496, + 34.494, + 38.758, + 22.93, + 0.177, + 0.0, 0.0, 0.0, 0.0, @@ -95967,15 +95898,15 @@ 0.0, 0.0, -0.0, - 0.499, - 6.773, - 10.481, - 11.898, - 10.969, - 26.066, - 21.073, - 13.015, - 1.775, + 16.838, + 24.682, + 27.441, + 25.787, + 42.019, + 41.615, + 26.146, + 4.354, + 0.0, 0.0, 0.0, 0.0, @@ -95991,15 +95922,14 @@ 0.0, 0.0, -0.0, - 2.861, - 9.366, - 13.063, - 14.252, - 14.304, - 28.531, - 22.922, - 14.293, - 2.143, + 17.489, + 24.43, + 15.951, + 8.554, + 12.973, + 28.853, + 16.034, + 0.172, 0.0, 0.0, 0.0, @@ -96015,16 +95945,15 @@ 0.0, 0.0, 0.0, - 1.808, - 7.927, - 11.654, - 12.844, - 12.372, - 27.197, - 21.788, - 11.094, - 0.292, + 5.683, 0.0, + 25.492, + 28.496, + 26.996, + 34.94, + 42.369, + 26.204, + 1.041, 0.0, 0.0, 0.0, @@ -96040,14 +95969,17 @@ 0.0, 0.0, 0.0, - 7.621, - 3.836, - 6.734, + 6.049, + 18.346, + 25.615, + 28.392, + 28.368, + 52.155, + 41.303, + 25.509, + 3.479, 0.0, - -0.0, 0.0, - 10.884, - 0.245, 0.0, 0.0, 0.0, @@ -96061,17 +95993,39 @@ 0.0, 0.0, 0.0, + 10.68, + 23.429, + 30.675, + 33.006, + 35.97, + 55.921, + 44.926, + 28.015, + 4.2, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, - -0.0, 0.0, - 6.163, - 0.811, - 1.733, 0.0, - 7.688, - 17.19, - 12.892, - 1.319, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.616, + 20.609, + 27.914, + 30.245, + 32.183, + 53.307, + 42.705, + 21.744, + 0.572, 0.0, 0.0, 0.0, @@ -96087,15 +96041,15 @@ 0.0, 0.0, -0.0, - 0.59, - 6.508, - 10.321, - 6.463, - 1.293, - 17.458, - 7.921, - 2.754, - 0.019, + 0.0, + 20.009, + 12.59, + 18.27, + -0.0, + 0.0, + 6.376, + 21.333, + 0.481, 0.0, 0.0, 0.0, @@ -96111,16 +96065,15 @@ 0.0, 0.0, -0.0, - 0.694, - 7.132, - 10.475, - 11.603, - 10.49, - 25.39, - 20.829, - 12.805, - 1.389, 0.0, + 17.152, + 6.661, + 8.469, + -0.0, + 20.38, + 41.388, + 25.269, + 2.585, 0.0, 0.0, 0.0, @@ -96136,14 +96089,15 @@ 0.0, 0.0, -0.0, - -0.0, - 9.738, - 11.297, - 10.421, - 10.006, - 20.894, - 8.382, - 0.247, + 6.228, + 17.828, + 25.302, + 17.74, + 9.811, + 34.875, + 15.526, + 5.397, + 0.037, 0.0, 0.0, 0.0, @@ -96159,15 +96113,15 @@ 0.0, 0.0, 0.0, - 1.682, - 8.025, - 12.014, - 13.452, - 12.36, - 27.348, - 22.136, - 13.819, - 0.273, + 6.433, + 19.05, + 25.603, + 27.813, + 27.054, + 51.205, + 40.825, + 25.097, + 2.723, 0.0, 0.0, 0.0, @@ -96183,15 +96137,15 @@ 0.0, 0.0, 0.0, - 1.145, - 7.39, - 10.97, - 12.469, - 11.631, - 20.09, - 22.116, - 13.838, - 1.63, + 0.0, + 0.536, + 24.159, + 27.215, + 25.496, + 32.08, + 40.953, + 16.43, + 0.485, 0.0, 0.0, 0.0, @@ -96207,15 +96161,15 @@ 0.0, 0.0, -0.0, - 1.098, - 6.787, - 9.914, - 11.514, - 10.801, - 19.231, - 21.136, - 13.308, - 1.56, + 8.368, + 20.8, + 28.619, + 31.437, + 31.162, + 54.6, + 43.386, + 27.085, + 0.534, 0.0, 0.0, 0.0, @@ -96231,15 +96185,15 @@ 0.0, 0.0, 0.0, - 0.779, - 6.508, - 9.793, - 10.535, - 9.494, - 18.685, - 20.679, - 13.254, - 1.677, + 7.316, + 19.555, + 26.573, + 29.512, + 27.868, + 42.239, + 43.347, + 27.122, + 3.194, 0.0, 0.0, 0.0, @@ -96254,17 +96208,16 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - -0.0, - 4.526, - 3.355, - 1.827, - 6.158, - 19.949, - 12.522, - 1.248, 0.0, + 7.224, + 18.375, + 24.503, + 27.639, + 26.241, + 40.556, + 41.426, + 26.084, + 3.058, 0.0, 0.0, 0.0, @@ -96278,18 +96231,17 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 5.598, - 9.751, - 11.564, - 10.869, - 11.455, - 21.509, - 13.681, - 1.682, 0.0, 0.0, + 6.599, + 17.827, + 24.265, + 25.721, + 23.68, + 39.486, + 40.532, + 25.977, + 3.288, 0.0, 0.0, 0.0, @@ -96304,16 +96256,16 @@ 0.0, 0.0, 0.0, - 6.222, - 9.995, - 11.688, - 10.882, - 24.214, - 21.254, - 4.973, - 0.017, 0.0, 0.0, + 1.218, + 13.943, + 11.647, + 8.653, + 23.858, + 39.1, + 24.543, + 2.446, 0.0, 0.0, 0.0, @@ -96330,12 +96282,38 @@ 0.0, -0.0, -0.0, - -0.0, - -0.0, + 16.044, + 24.184, + 27.737, + 26.374, + 30.386, + 42.159, + 26.814, + 3.296, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, -0.0, - 2.116, - 1.331, + 4.877, + 17.267, + 24.662, + 27.98, + 26.4, + 50.518, + 41.658, + 9.746, + 0.033, 0.0, 0.0, 0.0, @@ -96352,16 +96330,14 @@ 0.0, -0.0, -0.0, - 0.288, - 3.605, - 1.863, - 3.611, - 10.895, - 5.574, - 0.679, 0.0, + -0.0, + -0.0, 0.0, + -0.0, 0.0, + 4.148, + 2.609, 0.0, 0.0, 0.0, @@ -96375,15 +96351,18 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, 0.0, - -0.0, 0.0, - 0.602, - -0.0, - 12.256, - 0.516, + 3.246, + 5.636, + 12.138, + 8.723, + 12.15, + 26.043, + 10.925, + 1.33, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -96400,14 +96379,14 @@ 0.0, 0.0, -0.0, - 6.308, + 0.0, -0.0, -0.0, - 0.775, + 6.251, -0.0, + 24.022, + 1.01, 0.0, - 13.343, - 0.152, 0.0, 0.0, 0.0, @@ -96422,17 +96401,15 @@ 0.0, 0.0, 0.0, + -0.0, + 17.436, 0.0, - 0.436, - 7.516, - 11.518, - 13.222, - 12.421, - 24.733, - 22.572, - 13.814, - 0.177, + 2.829, + 6.59, 0.0, + -0.0, + 26.153, + 0.298, 0.0, 0.0, 0.0, @@ -96447,15 +96424,17 @@ 0.0, 0.0, 0.0, + -0.0, + 5.927, + 19.803, + 27.648, + 30.987, + 29.417, + 51.338, + 44.242, + 27.075, + 0.347, 0.0, - 6.146, - 9.946, - 11.702, - 4.702, - 23.353, - 14.339, - 9.608, - 1.117, 0.0, 0.0, 0.0, @@ -96469,17 +96448,19 @@ 0.0, 0.0, 0.0, + -0.0, + 4.591, + 17.117, + 24.567, + 28.009, + 14.288, + 49.117, + 28.104, + 18.831, + 2.189, 0.0, 0.0, 0.0, - 6.585, - 10.488, - 12.11, - 11.263, - 14.121, - 21.552, - 13.378, - 1.266, 0.0, 0.0, 0.0, @@ -96492,18 +96473,18 @@ 0.0, 0.0, 0.0, + 4.817, + 17.979, + 25.628, + 28.807, + 27.147, + 30.793, + 42.241, + 26.221, + 2.482, 0.0, 0.0, 0.0, - 0.347, - 7.095, - 11.348, - 13.019, - 12.1, - 23.977, - 22.256, - 13.674, - 1.282, 0.0, 0.0, 0.0, @@ -96516,18 +96497,18 @@ 0.0, 0.0, 0.0, + 5.753, + 18.978, + 27.314, + 30.589, + 28.788, + 49.857, + 43.622, + 26.801, + 2.512, 0.0, 0.0, 0.0, - 0.513, - 7.32, - 8.972, - 8.763, - 11.748, - 18.124, - 22.058, - 14.0, - 1.46, 0.0, 0.0, 0.0, @@ -96539,19 +96520,22 @@ 0.0, 0.0, 0.0, + -0.0, + 6.077, + 19.418, + 22.656, + 22.248, + 28.098, + 38.385, + 43.233, + 27.44, + 2.862, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, - -0.0, - -0.0, - 6.271, - 10.428, - 12.433, - 12.116, - 4.016, - 5.992, - 13.643, - 1.244, 0.0, 0.0, 0.0, @@ -96561,6 +96545,23 @@ 0.0, 0.0, 0.0, + 4.119, + 17.364, + 25.511, + 29.44, + 28.819, + 11.688, + 11.743, + 26.74, + 2.438, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -96568,14 +96569,15 @@ 0.0, 0.0, -0.0, - 0.238, - -0.0, - 12.018, + 3.946, + 5.538, -0.0, + 28.626, 0.0, -0.0, - 6.13, - 0.883, + -0.0, + 12.014, + 1.73, 0.0, 0.0, 0.0, @@ -96590,16 +96592,16 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 7.053, - 11.395, - 13.295, - 12.551, - 23.434, - 22.504, - 14.263, - 1.523, + 4.875, + 18.895, + 27.406, + 31.13, + 29.671, + 48.99, + 44.107, + 27.955, + 2.984, 0.0, 0.0, 0.0, @@ -96615,15 +96617,15 @@ 0.0, 0.0, 0.0, - 0.195, - 7.092, - 11.375, - 13.036, - 12.196, - 23.38, - 22.416, - 14.23, - 1.655, + 5.455, + 18.972, + 27.367, + 30.623, + 28.976, + 48.686, + 43.936, + 27.891, + 3.245, 0.0, 0.0, 0.0, @@ -96640,14 +96642,14 @@ 0.0, 0.0, 0.0, - 5.959, - 9.674, - 10.762, - 10.382, - 11.033, - 21.565, - 13.68, - 1.514, + 16.751, + 24.032, + 26.165, + 25.421, + 29.559, + 42.267, + 26.814, + 2.967, 0.0, 0.0, 0.0, @@ -96662,16 +96664,16 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 6.195, - 1.67, - 1.375, - 0.003, -0.0, - 2.883, - 13.902, - 0.223, + 17.215, + 8.345, + 7.767, + 5.078, + -0.0, + 13.585, + 27.248, + 0.436, 0.0, 0.0, 0.0, @@ -96686,16 +96688,16 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 7.069, - 11.634, - 13.64, - 13.066, - 23.53, - 23.336, - 15.02, - 2.166, + 4.847, + 18.927, + 27.874, + 31.806, + 30.681, + 49.205, + 45.738, + 29.44, + 4.245, 0.0, 0.0, 0.0, @@ -96711,16 +96713,15 @@ 0.0, 0.0, -0.0, - -0.0, - 6.645, - 10.693, - 12.269, - 11.509, - 22.337, - 22.336, - 14.507, - 0.263, - 0.0, + 4.856, + 18.095, + 26.031, + 29.119, + 27.63, + 46.857, + 43.779, + 28.434, + 0.515, 0.0, 0.0, 0.0, @@ -96736,15 +96737,15 @@ 0.0, 0.0, -0.0, - 5.573, - 3.983, - 4.025, - 11.157, - 6.066, - 18.045, - 14.284, - 2.086, - 0.0, + -0.0, + 15.995, + 12.879, + 12.961, + 26.939, + 16.962, + 38.23, + 27.997, + 4.088, 0.0, 0.0, 0.0, @@ -96760,14 +96761,15 @@ 0.0, 0.0, 0.0, - 6.513, - 10.626, - 12.197, - 11.463, - 21.523, - 22.365, - 14.52, - 2.018, + 4.455, + 17.837, + 25.9, + 28.978, + 27.539, + 45.665, + 43.835, + 28.459, + 3.956, 0.0, 0.0, 0.0, @@ -96783,15 +96785,15 @@ 0.0, 0.0, -0.0, - -0.0, - 5.841, - 9.016, - 10.304, - 10.104, - 19.766, - 21.41, - 13.67, - 1.6, + 3.274, + 16.52, + 22.742, + 25.267, + 24.875, + 43.403, + 41.963, + 26.794, + 3.136, 0.0, 0.0, 0.0, @@ -96808,15 +96810,14 @@ 0.0, -0.0, 0.0, - -0.0, - 5.278, - 11.696, - 4.043, - 9.46, - 15.509, - 14.924, - 1.582, 0.0, + 15.416, + 27.996, + 12.996, + 23.613, + 38.332, + 29.251, + 3.1, 0.0, 0.0, 0.0, @@ -96832,14 +96833,15 @@ 0.0, 0.0, -0.0, - 5.42, - 9.6, - 3.333, - 11.222, - 18.98, - 22.203, - 14.202, - 2.034, + 1.14, + 15.696, + 23.887, + 11.604, + 27.066, + 43.995, + 43.518, + 27.835, + 3.986, 0.0, 0.0, 0.0, @@ -96854,16 +96856,16 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - 5.463, - 9.739, - 11.628, - 11.058, - 6.954, - 18.052, - 4.433, - 0.108, + 2.178, + 15.78, + 24.16, + 27.863, + 26.746, + 19.386, + 35.382, + 8.688, + 0.211, 0.0, 0.0, 0.0, @@ -96879,15 +96881,16 @@ 0.0, 0.0, -0.0, + 1.356, + 15.997, + 24.09, + 27.865, + 26.878, + 43.893, + 38.632, + 27.822, + 0.957, 0.0, - 5.574, - 9.703, - 11.629, - 11.125, - 19.038, - 19.71, - 14.195, - 0.489, 0.0, 0.0, 0.0, @@ -96902,16 +96905,15 @@ 0.0, 0.0, 0.0, - -0.0, - -0.0, - 7.058, - 11.567, - 13.287, - 6.068, - 12.213, - 15.085, - 6.1, - 0.204, + 4.736, + 18.906, + 27.744, + 31.115, + 16.966, + 27.135, + 29.567, + 11.956, + 0.401, 0.0, 0.0, 0.0, @@ -96927,16 +96929,15 @@ 0.0, 0.0, -0.0, - -0.0, - 6.75, - 11.007, - 7.196, - 8.671, - 21.755, - 23.123, - 15.549, - 3.118, - 0.0, + 4.307, + 18.302, + 26.646, + 19.176, + 22.067, + 46.266, + 45.32, + 30.476, + 6.111, 0.0, 0.0, 0.0, @@ -96952,14 +96953,16 @@ 0.0, 0.0, -0.0, - 5.469, - 2.743, - 4.151, - 2.203, - 9.306, - 13.051, - 6.175, - 0.223, + 2.236, + 15.792, + 10.449, + 13.207, + 9.39, + 23.939, + 25.58, + 12.103, + 0.437, + 0.0, 0.0, 0.0, 0.0, @@ -96977,13 +96980,13 @@ 0.0, -0.0, -0.0, + 8.358, + 15.162, + -0.0, -0.0, - 1.676, - 5.148, + 28.319, + 1.342, 0.0, - -0.0, - 14.448, - 0.684, 0.0, 0.0, 0.0, @@ -96998,16 +97001,15 @@ 0.0, 0.0, 0.0, - -0.0, 0.0, - -0.0, + 1.699, -0.0, 0.0, -0.0, - 0.0, -0.0, - 3.285, - 0.115, + -0.0, + 6.439, + 0.226, 0.0, 0.0, 0.0, @@ -97023,17 +97025,15 @@ 0.0, 0.0, -0.0, - 0.0, -0.0, 0.0, - -0.0, 0.0, -0.0, - -0.0, - 2.042, - 2.476, 0.0, 0.0, + -0.0, + 4.003, + 4.854, 0.0, 0.0, 0.0, @@ -97049,13 +97049,15 @@ 0.0, 0.0, -0.0, - -0.0, 0.0, 0.0, - -0.0, 0.0, - 3.266, - 0.155, + -0.0, + -0.0, + -0.0, + -0.0, + 6.401, + 0.304, 0.0, 0.0, 0.0, @@ -97072,14 +97074,14 @@ 0.0, -0.0, -0.0, - 4.491, - 9.598, - 11.705, - 3.188, - 8.616, - 22.893, - 10.54, - 4.098, + 13.874, + 23.884, + 28.014, + 11.32, + 24.822, + 44.869, + 20.658, + 8.033, 0.0, 0.0, 0.0, @@ -97088,10 +97090,12 @@ 0.0, 0.0 ], - "size_kw": 41.6667, + "size_kw": 81.6667, + "lifecycle_om_cost_after_tax_bau": 6256.0, "name": "ground", - "annual_energy_produced_kwh": 74441.1, - "year_one_energy_produced_kwh": 77882.0, + "annual_energy_produced_kwh": 145904.83, + "year_one_energy_produced_kwh_bau": 74767.0, + "year_one_energy_produced_kwh": 152649.0, "annual_energy_exported_kwh": 0.0, "electric_to_storage_series_kw": [ 0.0, @@ -97101,11 +97105,11 @@ 0.0, 0.0, 0.0, - 1.139, - 17.944, - 18.851, - 18.851, - 8.774, + 2.232, + 31.876, + 31.876, + 31.876, + 12.998, 0.0, 0.0, 0.0, @@ -97125,13 +97129,13 @@ 0.0, 0.0, 0.0, - 1.122, - 18.222, - 18.851, - 18.851, - 18.851, - 18.851, - 10.148, + 2.198, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 15.795, 0.0, 0.0, 0.0, @@ -97149,14 +97153,14 @@ 0.0, 0.0, 0.0, - 1.117, - 7.922, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 1.601, + 2.189, + 15.527, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.276, 0.0, 0.0, 0.0, @@ -97173,13 +97177,17 @@ 0.0, 0.0, 0.0, - 4.062, - 18.342, - 18.851, - 18.851, - 18.851, - 18.851, - 7.087, + 7.961, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.032, + 0.0, + 0.0, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -97217,18 +97225,61 @@ 0.0, 0.0, 0.0, + 2.677, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 15.316, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.353, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.64, + 0.0, + 0.0, + 0.0, + 0.0, + 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.366, - 17.493, - 18.851, - 18.851, - 18.736, - 18.851, - 10.747, 0.0, + 7.795, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.198, 0.0, 0.0, 0.0, @@ -97245,14 +97296,14 @@ 0.0, 0.0, 0.0, - 3.752, - 16.871, - 18.851, - 18.851, - 18.851, - 18.851, - 8.868, 0.0, + 2.067, + 16.044, + 31.876, + 31.876, + 31.876, + 31.876, + 31.759, 0.0, 0.0, 0.0, @@ -97269,14 +97320,14 @@ 0.0, 0.0, 0.0, - 3.977, - 17.996, - 18.851, - 18.851, - 18.851, - 18.851, - 7.518, 0.0, + 3.136, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.856, 0.0, 0.0, 0.0, @@ -97293,15 +97344,15 @@ 0.0, 0.0, 0.0, - 1.054, - 8.186, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 1.4, 0.0, + 0.306, + 2.02, + 13.174, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -97317,14 +97368,14 @@ 0.0, 0.0, 0.0, - 1.6, - 17.487, - 18.851, - 18.851, - 18.851, - 18.851, - 10.404, 0.0, + 7.043, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.95, 0.0, 0.0, 0.0, @@ -97341,15 +97392,14 @@ 0.0, 0.0, 0.0, - 0.156, - 1.03, - 6.721, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, + 7.369, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.624, 0.0, 0.0, 0.0, @@ -97365,15 +97415,15 @@ 0.0, 0.0, 0.0, - 3.593, - 16.798, - 18.851, - 18.851, - 18.851, - 18.851, - 9.099, 0.0, 0.0, + 8.034, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.959, 0.0, 0.0, 0.0, @@ -97389,15 +97439,15 @@ 0.0, 0.0, 0.0, - 3.76, - 16.932, - 18.851, - 18.851, - 18.851, - 18.851, - 8.8, 0.0, 0.0, + 3.461, + 31.876, + 31.876, + 31.876, + 31.876, + 26.914, + 19.495, 0.0, 0.0, 0.0, @@ -97413,15 +97463,15 @@ 0.0, 0.0, 0.0, - 4.099, - 17.658, - 18.851, - 18.851, - 18.851, - 18.851, - 7.735, 0.0, 0.0, + 7.146, + 31.225, + 31.876, + 31.876, + 31.876, + 31.876, + 11.498, 0.0, 0.0, 0.0, @@ -97437,15 +97487,15 @@ 0.0, 0.0, 0.0, - 1.766, - 16.267, - 18.851, - 18.851, - 18.851, - 13.732, - 16.578, 0.0, 0.0, + 7.53, + 31.529, + 31.876, + 31.876, + 31.876, + 31.876, + 10.81, 0.0, 0.0, 0.0, @@ -97461,15 +97511,15 @@ 0.0, 0.0, 0.0, - 3.646, - 15.931, - 18.851, - 18.851, - 18.851, - 18.851, - 9.914, 0.0, 0.0, + 5.699, + 23.467, + 25.713, + 31.876, + 31.876, + 31.876, + 26.866, 0.0, 0.0, 0.0, @@ -97485,15 +97535,16 @@ 0.0, 0.0, 0.0, - 3.842, - 16.086, - 18.851, - 18.851, - 18.851, - 18.851, - 9.563, 0.0, 0.0, + 6.222, + 3.098, + 14.268, + 24.046, + 21.599, + 31.876, + 31.876, + 26.254, 0.0, 0.0, 0.0, @@ -97509,15 +97560,15 @@ 0.0, 0.0, 0.0, - 2.908, - 11.973, - 13.119, - 18.851, - 18.851, - 18.851, - 14.971, - 5.372, 0.0, + 7.654, + 31.876, + 31.876, + 31.876, + 31.876, + 23.103, + 4.172, + 6.109, 0.0, 0.0, 0.0, @@ -97533,15 +97584,15 @@ 0.0, 0.0, 0.0, - 3.174, - 1.581, - 7.28, - 12.268, - 11.02, - 18.851, - 18.851, - 13.395, 0.0, + 2.695, + 13.218, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.08, 0.0, 0.0, 0.0, @@ -97557,15 +97608,14 @@ 0.0, 0.0, 0.0, - 3.905, - 16.308, - 18.851, - 18.851, - 18.851, - 11.787, - 2.128, - 3.117, 0.0, + 8.909, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.084, 0.0, 0.0, 0.0, @@ -97581,16 +97631,15 @@ 0.0, 0.0, 0.0, - 1.375, - 6.744, - 17.714, - 18.851, - 18.851, - 18.851, - 18.19, - 4.32, 0.0, 0.0, + 8.463, + 31.812, + 31.876, + 31.876, + 31.876, + 31.876, + 9.595, 0.0, 0.0, 0.0, @@ -97605,16 +97654,17 @@ 0.0, 0.0, 0.0, - 4.545, - 17.05, - 18.851, - 18.851, - 18.851, - 18.851, - 7.896, 0.0, 0.0, 0.0, + 1.306, + 12.259, + 13.412, + 20.428, + 20.384, + 21.601, + 17.878, + 5.975, 0.0, 0.0, 0.0, @@ -97629,16 +97679,16 @@ 0.0, 0.0, 0.0, - 4.318, - 16.231, - 18.851, - 18.851, - 18.851, - 18.851, - 8.943, 0.0, 0.0, 0.0, + 3.942, + 11.808, + 7.379, + 12.797, + 0.334, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -97653,16 +97703,16 @@ 0.0, 0.0, 0.0, - 0.666, - 6.255, - 6.843, - 10.422, - 10.4, - 11.021, - 9.121, - 3.048, 0.0, 0.0, + 7.856, + 18.51, + 31.876, + 1.78, + 31.876, + 31.876, + 31.876, + 0.871, 0.0, 0.0, 0.0, @@ -97678,14 +97728,14 @@ 0.0, 0.0, 0.0, - 2.011, - 6.024, - 3.765, - 6.529, - 0.171, - 18.851, - 18.851, 0.0, + 9.833, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 8.16, 0.0, 0.0, 0.0, @@ -97701,16 +97751,15 @@ 0.0, 0.0, 0.0, - 4.008, - 9.444, - 17.762, - 0.908, - 18.851, - 18.851, - 17.849, - 0.444, 0.0, 0.0, + 11.689, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 6.303, 0.0, 0.0, 0.0, @@ -97725,16 +97774,16 @@ 0.0, 0.0, 0.0, - 5.017, - 18.008, - 18.851, - 18.851, - 18.851, - 18.851, - 6.466, 0.0, 0.0, 0.0, + 11.653, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 6.34, 0.0, 0.0, 0.0, @@ -97749,16 +97798,16 @@ 0.0, 0.0, 0.0, - 5.964, - 18.587, - 18.851, - 18.851, - 18.851, - 18.851, - 4.94, 0.0, 0.0, 0.0, + 3.503, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 14.49, 0.0, 0.0, 0.0, @@ -97773,17 +97822,17 @@ 0.0, 0.0, 0.0, - 5.945, - 18.252, - 18.851, - 18.851, - 18.851, - 18.851, - 5.294, 0.0, 0.0, 0.0, 0.0, + 1.746, + 20.339, + 31.876, + 31.876, + 31.876, + 31.876, + 27.783, 0.0, 0.0, 0.0, @@ -97797,16 +97846,16 @@ 0.0, 0.0, 0.0, - 1.787, - 17.145, - 18.851, - 18.851, - 18.851, - 18.851, - 10.559, 0.0, 0.0, 0.0, + 8.578, + 30.29, + 31.876, + 31.876, + 31.876, + 31.876, + 11.001, 0.0, 0.0, 0.0, @@ -97822,15 +97871,15 @@ 0.0, 0.0, 0.0, - 0.891, - 10.377, - 17.093, - 18.851, - 18.851, - 18.851, - 18.851, 0.0, 0.0, + 12.345, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 5.648, 0.0, 0.0, 0.0, @@ -97845,16 +97894,16 @@ 0.0, 0.0, 0.0, - 4.376, - 15.454, - 18.851, - 18.851, - 18.851, - 18.851, - 9.661, 0.0, 0.0, 0.0, + 13.545, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 4.448, 0.0, 0.0, 0.0, @@ -97869,16 +97918,16 @@ 0.0, 0.0, 0.0, - 6.298, - 18.368, - 18.851, - 18.851, - 18.851, - 18.851, - 4.825, 0.0, 0.0, 0.0, + 12.879, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 5.114, 0.0, 0.0, 0.0, @@ -97893,16 +97942,17 @@ 0.0, 0.0, 0.0, - 6.911, - 18.44, - 18.851, - 18.851, - 18.851, - 18.851, - 4.14, 0.0, 0.0, 0.0, + 2.82, + 17.011, + 28.428, + 31.876, + 31.876, + 31.876, + 31.876, + 1.611, 0.0, 0.0, 0.0, @@ -97917,15 +97967,15 @@ 0.0, 0.0, 0.0, - 6.571, - 17.708, - 18.851, - 18.851, - 18.851, - 18.851, - 5.212, 0.0, 0.0, + 13.157, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 4.836, 0.0, 0.0, 0.0, @@ -97941,16 +97991,15 @@ 0.0, 0.0, 0.0, - 1.439, - 8.679, - 14.504, - 18.851, - 18.851, - 18.851, - 18.818, - 4.902, 0.0, 0.0, + 6.936, + 24.128, + 31.876, + 31.876, + 31.876, + 31.876, + 18.805, 0.0, 0.0, 0.0, @@ -97965,16 +98014,17 @@ 0.0, 0.0, 0.0, - 6.713, - 17.155, - 18.851, - 18.851, - 18.851, - 18.851, - 5.624, 0.0, 0.0, 0.0, + 6.048, + 14.344, + 28.422, + 28.78, + 23.002, + 31.876, + 31.876, + 13.026, 0.0, 0.0, 0.0, @@ -97989,15 +98039,16 @@ 0.0, 0.0, 0.0, - 3.539, - 12.31, - 17.724, - 18.851, - 18.851, - 18.851, - 14.769, 0.0, 0.0, + 12.045, + 22.708, + 31.876, + 31.876, + 31.876, + 11.601, + 13.034, + 7.213, 0.0, 0.0, 0.0, @@ -98013,15 +98064,15 @@ 0.0, 0.0, 0.0, - 3.086, - 7.319, - 14.501, - 14.684, - 11.736, - 18.851, - 18.851, - 12.815, 0.0, + 1.593, + 13.825, + 6.085, + 14.029, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -98037,16 +98088,14 @@ 0.0, 0.0, 0.0, - 6.146, - 11.586, - 17.337, - 18.174, - 18.851, - 5.919, - 6.65, - 3.68, 0.0, 0.0, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 17.993, 0.0, 0.0, 0.0, @@ -98061,17 +98110,16 @@ 0.0, 0.0, 0.0, - 0.813, - 7.053, - 3.105, - 7.157, - 18.851, - 18.736, - 18.851, - 17.452, 0.0, 0.0, 0.0, + 12.473, + 31.876, + 29.934, + 31.876, + 31.876, + 31.876, + 7.462, 0.0, 0.0, 0.0, @@ -98086,15 +98134,16 @@ 0.0, 0.0, 0.0, - 16.997, - 18.851, - 18.851, - 18.851, - 18.851, - 12.494, 0.0, 0.0, 0.0, + 14.273, + 31.876, + 31.876, + 24.006, + 31.876, + 31.876, + 11.591, 0.0, 0.0, 0.0, @@ -98109,16 +98158,16 @@ 0.0, 0.0, 0.0, - 6.364, - 16.488, - 15.272, - 18.851, - 18.851, - 18.851, - 10.218, 0.0, 0.0, 0.0, + 15.351, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.642, 0.0, 0.0, 0.0, @@ -98133,16 +98182,16 @@ 0.0, 0.0, 0.0, - 7.282, - 17.701, - 18.851, - 12.248, - 18.851, - 18.851, - 11.111, 0.0, 0.0, 0.0, + 4.993, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 13.0, 0.0, 0.0, 0.0, @@ -98157,16 +98206,16 @@ 0.0, 0.0, 0.0, - 7.832, - 18.392, - 18.851, - 18.851, - 18.851, - 18.851, - 3.268, 0.0, 0.0, 0.0, + 15.838, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.155, 0.0, 0.0, 0.0, @@ -98181,16 +98230,16 @@ 0.0, 0.0, 0.0, - 2.547, - 18.655, - 18.851, - 18.851, - 18.851, - 18.851, - 8.288, 0.0, 0.0, 0.0, + 15.432, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.561, 0.0, 0.0, 0.0, @@ -98205,16 +98254,17 @@ 0.0, 0.0, 0.0, - 8.08, - 17.898, - 18.851, - 18.851, - 18.851, - 18.851, - 3.513, 0.0, 0.0, 0.0, + 4.19, + 21.148, + 26.483, + 31.876, + 29.148, + 16.643, + 31.876, + 16.01, 0.0, 0.0, 0.0, @@ -98229,16 +98279,16 @@ 0.0, 0.0, 0.0, - 7.874, - 17.905, - 18.851, - 18.851, - 18.851, - 18.851, - 3.713, 0.0, 0.0, 0.0, + 1.957, + 1.547, + 2.061, + 7.237, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -98253,16 +98303,15 @@ 0.0, 0.0, 0.0, - 2.138, - 10.79, - 13.512, - 17.96, - 14.871, - 8.491, - 18.507, - 18.625, 0.0, 0.0, + 16.097, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 1.895, 0.0, 0.0, 0.0, @@ -98278,15 +98327,15 @@ 0.0, 0.0, 0.0, - 0.998, - 0.789, - 1.052, - 3.692, - 18.851, - 18.851, - 18.851, 0.0, 0.0, + 15.352, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.641, 0.0, 0.0, 0.0, @@ -98301,16 +98350,17 @@ 0.0, 0.0, 0.0, - 8.213, - 18.032, - 18.851, - 18.851, - 18.851, - 18.851, - 3.246, 0.0, 0.0, 0.0, + 15.225, + 10.512, + 9.869, + 6.742, + 31.876, + 31.876, + 31.876, + 31.876, 0.0, 0.0, 0.0, @@ -98325,15 +98375,14 @@ 0.0, 0.0, 0.0, - 7.833, - 17.419, - 18.851, - 18.851, - 18.851, - 18.851, - 4.24, 0.0, 0.0, + 18.303, + 31.876, + 31.876, + 31.876, + 31.876, + 31.566, 0.0, 0.0, 0.0, @@ -98349,17 +98398,15 @@ 0.0, 0.0, 0.0, - 7.768, - 5.363, - 5.035, - 3.44, - 18.851, - 18.851, - 18.851, - 16.745, 0.0, 0.0, 0.0, + 18.404, + 31.876, + 31.876, + 31.876, + 31.876, + 31.465, 0.0, 0.0, 0.0, @@ -98373,18 +98420,18 @@ 0.0, 0.0, 0.0, - 9.338, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 1.302, 0.0, 0.0, 0.0, 0.0, 0.0, + 17.452, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.541, 0.0, 0.0, 0.0, @@ -98397,18 +98444,18 @@ 0.0, 0.0, 0.0, - 9.39, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 1.251, 0.0, 0.0, 0.0, 0.0, 0.0, + 17.086, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.906, 0.0, 0.0, 0.0, @@ -98421,18 +98468,18 @@ 0.0, 0.0, 0.0, - 8.904, - 18.739, - 18.851, - 18.851, - 18.851, - 18.851, - 1.848, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.293, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 17.7, 0.0, 0.0, 0.0, @@ -98445,18 +98492,17 @@ 0.0, 0.0, 0.0, - 8.718, - 18.6, - 18.851, - 18.851, - 18.851, - 18.851, - 2.173, 0.0, 0.0, 0.0, 0.0, 0.0, + 19.386, + 31.876, + 31.876, + 31.876, + 31.876, + 30.483, 0.0, 0.0, 0.0, @@ -98469,19 +98515,20 @@ 0.0, 0.0, 0.0, - 0.149, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 10.491, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.006, + 22.408, + 17.817, + 24.96, + 31.876, + 5.358, + 31.876, + 22.334, 0.0, 0.0, 0.0, @@ -98493,18 +98540,18 @@ 0.0, 0.0, 0.0, - 9.891, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.75, 0.0, 0.0, 0.0, 0.0, 0.0, + 5.09, + 21.122, + 26.598, + 31.876, + 31.876, + 31.876, + 28.936, 0.0, 0.0, 0.0, @@ -98517,18 +98564,18 @@ 0.0, 0.0, 0.0, - 1.024, - 11.433, - 9.09, - 12.735, - 18.851, - 2.734, - 18.763, - 11.395, 0.0, 0.0, 0.0, 0.0, + 0.049, + 8.037, + 21.429, + 31.876, + 31.876, + 31.876, + 31.876, + 20.354, 0.0, 0.0, 0.0, @@ -98541,18 +98588,17 @@ 0.0, 0.0, 0.0, - 2.597, - 10.776, - 13.57, - 17.305, - 18.851, - 18.729, - 17.524, - 5.543, 0.0, 0.0, 0.0, 0.0, + 0.38, + 18.101, + 31.876, + 31.876, + 31.876, + 31.876, + 31.388, 0.0, 0.0, 0.0, @@ -98564,20 +98610,19 @@ 0.0, 0.0, 0.0, - 0.025, - 4.101, - 10.933, - 17.466, - 18.851, - 18.851, - 18.851, - 15.817, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.5, + 18.603, + 31.876, + 31.876, + 31.876, + 31.876, + 30.766, 0.0, 0.0, 0.0, @@ -98588,14 +98633,6 @@ 0.0, 0.0, 0.0, - 0.194, - 9.235, - 18.633, - 17.497, - 18.851, - 18.851, - 18.851, - 2.784, 0.0, 0.0, 0.0, @@ -98603,6 +98640,14 @@ 0.0, 0.0, 0.0, + 0.181, + 8.624, + 20.991, + 27.189, + 31.876, + 31.876, + 31.876, + 24.76, 0.0, 0.0, 0.0, @@ -98612,14 +98657,6 @@ 0.0, 0.0, 0.0, - 0.255, - 9.491, - 18.671, - 18.851, - 18.851, - 18.851, - 18.851, - 1.074, 0.0, 0.0, 0.0, @@ -98627,6 +98664,13 @@ 0.0, 0.0, 0.0, + 1.132, + 19.436, + 31.876, + 31.876, + 31.876, + 31.876, + 29.301, 0.0, 0.0, 0.0, @@ -98636,15 +98680,6 @@ 0.0, 0.0, 0.0, - 0.093, - 4.4, - 10.71, - 13.872, - 18.851, - 18.851, - 18.851, - 18.851, - 0.417, 0.0, 0.0, 0.0, @@ -98653,6 +98688,13 @@ 0.0, 0.0, 0.0, + 1.615, + 21.032, + 31.876, + 31.876, + 31.876, + 31.876, + 27.223, 0.0, 0.0, 0.0, @@ -98660,14 +98702,6 @@ 0.0, 0.0, 0.0, - 0.578, - 9.916, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.147, 0.0, 0.0, 0.0, @@ -98678,19 +98712,20 @@ 0.0, 0.0, 0.0, + 0.725, + 15.069, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 2.199, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.824, - 10.731, - 18.851, - 18.851, - 18.851, - 18.851, - 17.937, 0.0, 0.0, 0.0, @@ -98701,6 +98736,13 @@ 0.0, 0.0, 0.0, + 1.751, + 20.119, + 28.581, + 31.876, + 31.876, + 31.876, + 31.294, 0.0, 0.0, 0.0, @@ -98708,14 +98750,6 @@ 0.0, 0.0, 0.0, - 0.37, - 7.688, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 2.582, 0.0, 0.0, 0.0, @@ -98726,20 +98760,20 @@ 0.0, 0.0, 0.0, + 1.738, + 12.117, + 26.02, + 31.876, + 31.876, + 31.876, + 31.876, + 9.995, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.893, - 10.265, - 14.582, - 18.851, - 18.851, - 18.851, - 18.851, - 3.751, 0.0, 0.0, 0.0, @@ -98750,20 +98784,19 @@ 0.0, 0.0, 0.0, + 2.123, + 20.777, + 31.876, + 31.876, + 31.876, + 31.876, + 26.969, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.887, - 6.182, - 13.275, - 18.851, - 18.851, - 18.851, - 18.851, - 9.147, 0.0, 0.0, 0.0, @@ -98775,18 +98808,18 @@ 0.0, 0.0, 0.0, + 2.292, + 20.534, + 31.876, + 31.876, + 31.876, + 31.876, + 27.043, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.083, - 10.601, - 18.851, - 18.851, - 18.851, - 18.851, - 17.808, 0.0, 0.0, 0.0, @@ -98799,18 +98832,18 @@ 0.0, 0.0, 0.0, + 2.715, + 21.28, + 31.876, + 31.876, + 31.876, + 31.876, + 25.875, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.169, - 10.477, - 18.851, - 18.851, - 18.851, - 18.851, - 17.845, 0.0, 0.0, 0.0, @@ -98823,18 +98856,18 @@ 0.0, 0.0, 0.0, + 2.883, + 21.31, + 31.876, + 31.876, + 31.876, + 31.876, + 25.676, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.385, - 10.857, - 18.851, - 18.851, - 18.851, - 18.851, - 17.249, 0.0, 0.0, 0.0, @@ -98847,18 +98880,18 @@ 0.0, 0.0, 0.0, + 2.777, + 20.16, + 31.876, + 31.876, + 31.876, + 31.876, + 26.932, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.471, - 10.872, - 18.851, - 18.851, - 18.851, - 18.851, - 17.148, 0.0, 0.0, 0.0, @@ -98871,18 +98904,18 @@ 0.0, 0.0, 0.0, + 3.424, + 22.35, + 31.876, + 31.876, + 31.876, + 31.876, + 24.095, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.417, - 10.286, - 18.851, - 18.851, - 18.851, - 18.851, - 17.789, 0.0, 0.0, 0.0, @@ -98895,18 +98928,18 @@ 0.0, 0.0, 0.0, + 3.638, + 22.832, + 31.876, + 31.876, + 31.876, + 31.876, + 23.4, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.747, - 11.403, - 18.851, - 18.851, - 18.851, - 18.851, - 16.341, 0.0, 0.0, 0.0, @@ -98919,18 +98952,18 @@ 0.0, 0.0, 0.0, + 3.763, + 22.924, + 31.876, + 31.876, + 31.876, + 31.876, + 23.183, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.856, - 11.649, - 18.851, - 18.851, - 18.851, - 18.851, - 15.986, 0.0, 0.0, 0.0, @@ -98943,18 +98976,19 @@ 0.0, 0.0, 0.0, + 1.599, + 12.464, + 23.196, + 31.876, + 31.876, + 31.876, + 31.876, + 12.61, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.92, - 11.696, - 18.851, - 18.851, - 18.851, - 18.851, - 15.876, 0.0, 0.0, 0.0, @@ -98966,20 +99000,19 @@ 0.0, 0.0, 0.0, + 3.79, + 21.307, + 31.876, + 31.876, + 31.876, + 31.876, + 24.773, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.816, - 6.359, - 11.835, - 18.851, - 18.851, - 18.851, - 18.851, - 10.481, 0.0, 0.0, 0.0, @@ -98991,18 +99024,18 @@ 0.0, 0.0, 0.0, + 3.749, + 20.538, + 31.876, + 31.876, + 31.876, + 31.876, + 25.582, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.933, - 10.871, - 18.851, - 18.851, - 18.851, - 18.851, - 16.687, 0.0, 0.0, 0.0, @@ -99015,18 +99048,18 @@ 0.0, 0.0, 0.0, + 4.069, + 21.391, + 28.331, + 31.876, + 31.876, + 31.876, + 27.955, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.913, - 10.478, - 18.851, - 18.851, - 18.851, - 18.851, - 17.1, 0.0, 0.0, 0.0, @@ -99039,19 +99072,18 @@ 0.0, 0.0, 0.0, + 3.942, + 20.637, + 27.404, + 31.876, + 31.876, + 31.876, + 29.763, 0.0, 0.0, 0.0, 0.0, 0.0, - 2.076, - 10.914, - 14.454, - 18.851, - 18.851, - 18.851, - 18.851, - 2.047, 0.0, 0.0, 0.0, @@ -99064,18 +99096,17 @@ 0.0, 0.0, 0.0, + 4.103, + 20.859, + 31.876, + 31.876, + 31.876, + 31.876, + 24.907, 0.0, 0.0, 0.0, 0.0, - 2.011, - 10.529, - 13.981, - 18.851, - 18.851, - 18.851, - 18.851, - 2.97, 0.0, 0.0, 0.0, @@ -99089,16 +99120,17 @@ 0.0, 0.0, 0.0, + 4.654, + 22.665, + 31.876, + 31.876, + 31.876, + 31.876, + 13.049, + 9.502, 0.0, 0.0, 0.0, - 2.093, - 10.642, - 18.851, - 18.851, - 18.851, - 18.851, - 16.755, 0.0, 0.0, 0.0, @@ -99112,18 +99144,17 @@ 0.0, 0.0, 0.0, + 4.656, + 22.754, + 31.876, + 31.876, + 31.876, + 31.876, + 22.46, 0.0, 0.0, 0.0, 0.0, - 2.374, - 11.564, - 18.851, - 18.851, - 18.851, - 18.851, - 6.658, - 8.896, 0.0, 0.0, 0.0, @@ -99137,16 +99168,16 @@ 0.0, 0.0, 0.0, + 4.758, + 21.794, + 31.876, + 31.876, + 31.876, + 31.876, + 23.317, 0.0, 0.0, 0.0, - 2.375, - 11.609, - 18.851, - 18.851, - 18.851, - 18.851, - 15.507, 0.0, 0.0, 0.0, @@ -99161,16 +99192,17 @@ 0.0, 0.0, 0.0, + 4.802, + 12.383, + 26.552, + 31.876, + 31.876, + 31.876, + 31.876, + 6.133, 0.0, 0.0, 0.0, - 2.428, - 11.12, - 18.851, - 18.851, - 18.851, - 18.851, - 15.944, 0.0, 0.0, 0.0, @@ -99184,18 +99216,17 @@ 0.0, 0.0, 0.0, + 5.595, + 25.037, + 31.876, + 31.876, + 31.876, + 31.876, + 19.237, 0.0, 0.0, 0.0, 0.0, - 2.45, - 6.318, - 13.547, - 18.851, - 18.851, - 18.851, - 18.851, - 7.177, 0.0, 0.0, 0.0, @@ -99209,16 +99240,16 @@ 0.0, 0.0, 0.0, + 5.448, + 23.377, + 31.876, + 31.876, + 31.876, + 31.876, + 21.044, 0.0, 0.0, 0.0, - 2.855, - 12.774, - 18.851, - 18.851, - 18.851, - 18.851, - 13.863, 0.0, 0.0, 0.0, @@ -99233,16 +99264,16 @@ 0.0, 0.0, 0.0, + 5.935, + 25.388, + 31.876, + 31.876, + 31.876, + 31.876, + 18.546, 0.0, 0.0, 0.0, - 2.78, - 11.927, - 18.851, - 18.851, - 18.851, - 18.851, - 14.784, 0.0, 0.0, 0.0, @@ -99257,16 +99288,16 @@ 0.0, 0.0, 0.0, + 5.956, + 24.779, + 31.876, + 31.876, + 31.876, + 31.876, + 19.134, 0.0, 0.0, 0.0, - 3.028, - 12.953, - 18.851, - 18.851, - 18.851, - 18.851, - 13.51, 0.0, 0.0, 0.0, @@ -99281,16 +99312,16 @@ 0.0, 0.0, 0.0, + 5.862, + 23.101, + 31.876, + 31.876, + 31.876, + 31.876, + 20.906, 0.0, 0.0, 0.0, - 3.039, - 12.642, - 18.851, - 18.851, - 18.851, - 18.851, - 13.81, 0.0, 0.0, 0.0, @@ -99305,16 +99336,16 @@ 0.0, 0.0, 0.0, + 6.068, + 23.511, + 25.978, + 31.876, + 31.876, + 31.876, + 26.189, 0.0, 0.0, 0.0, - 2.991, - 11.786, - 16.315, - 18.851, - 18.851, - 18.851, - 17.25, 0.0, 0.0, 0.0, @@ -99329,17 +99360,16 @@ 0.0, 0.0, 0.0, + 6.397, + 24.875, + 31.876, + 31.876, + 31.876, + 31.876, + 18.598, 0.0, 0.0, 0.0, - 3.096, - 11.995, - 13.254, - 18.851, - 18.851, - 18.851, - 18.851, - 1.146, 0.0, 0.0, 0.0, @@ -99354,15 +99384,15 @@ 0.0, 0.0, 0.0, + 6.72, + 25.163, + 31.876, + 31.876, + 31.876, + 31.876, + 17.986, 0.0, 0.0, - 3.264, - 12.691, - 18.851, - 18.851, - 18.851, - 18.851, - 13.537, 0.0, 0.0, 0.0, @@ -99378,15 +99408,15 @@ 0.0, 0.0, 0.0, + 6.855, + 25.259, + 31.876, + 31.876, + 31.876, + 31.876, + 17.755, 0.0, 0.0, - 3.428, - 12.838, - 18.851, - 18.851, - 18.851, - 18.851, - 13.224, 0.0, 0.0, 0.0, @@ -99402,15 +99432,15 @@ 0.0, 0.0, 0.0, + 5.075, + 23.983, + 31.876, + 31.876, + 31.876, + 31.876, + 20.812, 0.0, 0.0, - 3.498, - 12.887, - 18.851, - 18.851, - 18.851, - 18.851, - 13.106, 0.0, 0.0, 0.0, @@ -99426,15 +99456,15 @@ 0.0, 0.0, 0.0, + 6.823, + 24.142, + 31.876, + 31.876, + 31.876, + 31.876, + 15.091, 0.0, 0.0, - 2.589, - 12.236, - 18.851, - 18.851, - 18.851, - 18.851, - 14.666, 0.0, 0.0, 0.0, @@ -99450,15 +99480,15 @@ 0.0, 0.0, 0.0, + 7.03, + 25.165, + 31.876, + 31.876, + 31.876, + 31.876, + 17.674, 0.0, 0.0, - 3.481, - 12.317, - 18.851, - 18.851, - 18.851, - 18.851, - 13.693, 0.0, 0.0, 0.0, @@ -99475,14 +99505,14 @@ 0.0, 0.0, 0.0, + 24.845, + 23.148, + 31.876, + 10.299, + 31.876, + 31.876, + 23.453, 0.0, - 3.587, - 12.839, - 18.851, - 18.851, - 18.851, - 18.851, - 13.065, 0.0, 0.0, 0.0, @@ -99498,17 +99528,16 @@ 0.0, 0.0, 0.0, + 7.301, + 24.984, + 23.14, + 31.876, + 31.876, + 31.876, + 26.32, 0.0, 0.0, 0.0, - 12.676, - 11.81, - 18.851, - 5.255, - 16.317, - 18.851, - 18.851, - 2.284, 0.0, 0.0, 0.0, @@ -99524,14 +99553,14 @@ 0.0, 0.0, 0.0, - 3.725, - 12.747, - 11.806, - 18.851, - 18.851, - 18.851, - 18.851, - 1.213, + 24.366, + 31.876, + 11.311, + 1.359, + 4.486, + 2.099, + 8.289, + 8.164, 0.0, 0.0, 0.0, @@ -99547,16 +99576,15 @@ 0.0, 0.0, 0.0, + 5.412, + 26.719, + 31.876, + 31.876, + 31.876, + 31.876, + 17.738, 0.0, 0.0, - 12.431, - 18.851, - 5.771, - 0.693, - 2.289, - 1.071, - 4.229, - 4.165, 0.0, 0.0, 0.0, @@ -99571,14 +99599,15 @@ 0.0, 0.0, 0.0, + 0.096, + 7.472, + 25.061, + 31.876, + 31.876, + 31.876, + 31.876, + 17.24, 0.0, - 2.761, - 13.632, - 18.851, - 18.851, - 18.851, - 18.851, - 13.098, 0.0, 0.0, 0.0, @@ -99594,15 +99623,15 @@ 0.0, 0.0, 0.0, + 0.13, + 7.389, + 24.706, + 31.876, + 31.876, + 31.876, + 31.876, + 13.831, 0.0, - 0.049, - 3.812, - 12.786, - 18.851, - 18.851, - 18.851, - 18.851, - 12.844, 0.0, 0.0, 0.0, @@ -99618,15 +99647,15 @@ 0.0, 0.0, 0.0, + 0.16, + 7.246, + 24.564, + 31.876, + 31.876, + 31.876, + 31.876, + 17.899, 0.0, - 0.066, - 3.77, - 12.605, - 18.851, - 18.851, - 18.851, - 18.851, - 13.05, 0.0, 0.0, 0.0, @@ -99642,15 +99671,15 @@ 0.0, 0.0, 0.0, + 0.326, + 6.195, + 24.389, + 31.876, + 31.876, + 31.876, + 31.876, + 18.96, 0.0, - 0.082, - 3.697, - 12.533, - 18.851, - 18.851, - 18.851, - 18.851, - 13.18, 0.0, 0.0, 0.0, @@ -99666,15 +99695,15 @@ 0.0, 0.0, 0.0, + 0.287, + 7.389, + 24.776, + 31.876, + 31.876, + 31.876, + 31.876, + 17.417, 0.0, - 0.166, - 3.161, - 12.443, - 18.851, - 18.851, - 18.851, - 18.851, - 13.721, 0.0, 0.0, 0.0, @@ -99690,15 +99719,15 @@ 0.0, 0.0, 0.0, + 0.243, + 7.377, + 23.159, + 31.876, + 31.876, + 31.876, + 31.876, + 19.089, 0.0, - 0.147, - 3.77, - 12.641, - 18.851, - 18.851, - 18.851, - 18.851, - 12.934, 0.0, 0.0, 0.0, @@ -99714,15 +99743,15 @@ 0.0, 0.0, 0.0, + 0.287, + 7.444, + 24.4, + 31.876, + 31.876, + 31.876, + 31.876, + 17.739, 0.0, - 0.124, - 3.764, - 11.816, - 18.851, - 18.851, - 18.851, - 18.851, - 13.787, 0.0, 0.0, 0.0, @@ -99738,15 +99767,15 @@ 0.0, 0.0, 0.0, + 0.307, + 7.469, + 23.988, + 31.876, + 31.876, + 31.876, + 31.876, + 18.106, 0.0, - 0.146, - 3.798, - 12.449, - 18.851, - 18.851, - 18.851, - 18.851, - 13.098, 0.0, 0.0, 0.0, @@ -99762,15 +99791,15 @@ 0.0, 0.0, 0.0, + 0.377, + 8.023, + 25.0, + 31.876, + 31.876, + 31.876, + 31.876, + 8.843, 0.0, - 0.157, - 3.811, - 12.239, - 18.851, - 18.851, - 18.851, - 18.851, - 13.285, 0.0, 0.0, 0.0, @@ -99786,15 +99815,15 @@ 0.0, 0.0, 0.0, + 0.509, + 5.223, + 24.572, + 31.876, + 31.876, + 31.876, + 27.822, + 23.619, 0.0, - 0.192, - 4.093, - 12.755, - 18.851, - 18.851, - 18.851, - 18.851, - 12.451, 0.0, 0.0, 0.0, @@ -99811,15 +99840,14 @@ 0.0, 0.0, 0.0, - 0.26, - 2.665, - 12.537, - 18.851, - 18.851, - 18.851, - 14.195, - 16.937, - 1.749, + 6.015, + 17.877, + 23.514, + 28.059, + 13.013, + 31.876, + 31.876, + 25.144, 0.0, 0.0, 0.0, @@ -99835,16 +99863,15 @@ 0.0, 0.0, 0.0, + 0.512, + 7.851, + 25.115, + 31.876, + 31.876, + 31.876, + 31.876, + 16.392, 0.0, - 3.069, - 9.121, - 11.997, - 14.316, - 6.639, - 18.123, - 18.851, - 18.851, - 3.928, 0.0, 0.0, 0.0, @@ -99859,15 +99886,15 @@ 0.0, 0.0, 0.0, - 0.261, - 4.006, - 12.814, - 18.851, - 18.851, - 18.851, - 18.851, - 12.411, 0.0, + 0.645, + 8.327, + 25.919, + 31.876, + 31.876, + 31.876, + 31.876, + 14.979, 0.0, 0.0, 0.0, @@ -99883,15 +99910,15 @@ 0.0, 0.0, 0.0, - 0.329, - 4.248, - 13.224, - 18.851, - 18.851, - 18.851, - 18.851, - 11.69, 0.0, + 0.701, + 8.372, + 25.077, + 31.876, + 31.876, + 31.876, + 31.876, + 15.719, 0.0, 0.0, 0.0, @@ -99907,15 +99934,15 @@ 0.0, 0.0, 0.0, - 0.357, - 4.272, - 12.795, - 18.851, - 18.851, - 18.851, - 18.851, - 12.068, 0.0, + 0.803, + 8.431, + 24.847, + 31.876, + 31.876, + 31.876, + 31.876, + 15.788, 0.0, 0.0, 0.0, @@ -99931,15 +99958,15 @@ 0.0, 0.0, 0.0, - 0.41, - 4.301, - 12.677, - 18.851, - 18.851, - 18.851, - 18.851, - 12.103, 0.0, + 0.817, + 8.272, + 24.202, + 31.876, + 31.876, + 31.876, + 31.876, + 5.139, 0.0, 0.0, 0.0, @@ -99955,15 +99982,15 @@ 0.0, 0.0, 0.0, - 0.417, - 4.22, - 12.348, - 18.851, - 18.851, - 18.851, - 18.851, - 12.506, 0.0, + 0.8, + 8.17, + 25.352, + 31.876, + 31.876, + 31.876, + 31.876, + 15.547, 0.0, 0.0, 0.0, @@ -99979,15 +100006,15 @@ 0.0, 0.0, 0.0, - 0.408, - 4.168, - 12.935, - 18.851, - 18.851, - 18.851, - 18.851, - 11.98, 0.0, + 0.897, + 8.139, + 24.64, + 31.876, + 31.876, + 31.876, + 31.876, + 16.192, 0.0, 0.0, 0.0, @@ -100003,15 +100030,15 @@ 0.0, 0.0, 0.0, - 0.458, - 4.153, - 12.572, - 18.851, - 18.851, - 18.851, - 18.851, - 12.309, 0.0, + 0.843, + 7.871, + 24.024, + 31.876, + 31.876, + 31.876, + 31.876, + 17.131, 0.0, 0.0, 0.0, @@ -100027,15 +100054,15 @@ 0.0, 0.0, 0.0, - 0.43, - 4.016, - 12.257, - 18.851, - 18.851, - 18.851, - 18.851, - 12.788, 0.0, + 0.972, + 8.019, + 23.336, + 31.876, + 31.876, + 31.876, + 31.876, + 17.541, 0.0, 0.0, 0.0, @@ -100051,15 +100078,15 @@ 0.0, 0.0, 0.0, - 0.496, - 4.092, - 11.906, - 18.439, - 18.851, - 18.851, - 18.851, - 13.409, 0.0, + 1.043, + 8.38, + 24.639, + 31.876, + 31.876, + 31.876, + 31.876, + 15.807, 0.0, 0.0, 0.0, @@ -100075,15 +100102,15 @@ 0.0, 0.0, 0.0, - 0.532, - 4.276, - 12.571, - 18.851, - 18.851, - 18.851, - 18.851, - 12.112, 0.0, + 1.387, + 8.949, + 21.047, + 31.876, + 31.876, + 31.876, + 31.876, + 18.486, 0.0, 0.0, 0.0, @@ -100099,16 +100126,15 @@ 0.0, 0.0, 0.0, - 0.708, - 4.566, - 10.738, - 18.134, - 18.851, - 18.851, - 18.851, - 10.369, - 3.827, 0.0, + 1.644, + 9.392, + 25.499, + 19.465, + 31.876, + 31.876, + 31.876, + 14.243, 0.0, 0.0, 0.0, @@ -100123,17 +100149,16 @@ 0.0, 0.0, 0.0, - 0.839, - 4.792, - 13.01, - 9.931, - 18.851, - 18.851, - 18.851, - 18.851, - 0.92, 0.0, 0.0, + 1.278, + 8.91, + 26.08, + 31.876, + 31.876, + 31.876, + 31.876, + 13.601, 0.0, 0.0, 0.0, @@ -100147,17 +100172,17 @@ 0.0, 0.0, 0.0, - 0.652, - 4.546, - 13.306, - 18.851, - 18.334, - 18.851, - 18.851, - 11.504, 0.0, 0.0, 0.0, + 1.397, + 8.673, + 23.823, + 31.876, + 31.876, + 31.876, + 31.876, + 15.976, 0.0, 0.0, 0.0, @@ -100171,17 +100196,17 @@ 0.0, 0.0, 0.0, - 0.713, - 4.425, - 12.155, - 18.851, - 18.851, - 18.851, - 18.851, - 12.199, 0.0, 0.0, 0.0, + 1.758, + 9.278, + 24.153, + 31.876, + 31.876, + 31.876, + 31.876, + 14.68, 0.0, 0.0, 0.0, @@ -100195,17 +100220,17 @@ 0.0, 0.0, 0.0, - 0.897, - 4.734, - 12.323, - 18.851, - 18.851, - 18.851, - 18.851, - 11.537, 0.0, 0.0, 0.0, + 1.63, + 9.039, + 24.641, + 31.876, + 31.876, + 31.876, + 31.876, + 14.559, 0.0, 0.0, 0.0, @@ -100219,17 +100244,17 @@ 0.0, 0.0, 0.0, - 0.832, - 4.612, - 12.572, - 18.851, - 18.851, - 18.851, - 18.851, - 11.476, 0.0, 0.0, 0.0, + 1.409, + 8.882, + 25.172, + 31.876, + 31.876, + 31.876, + 31.876, + 14.406, 0.0, 0.0, 0.0, @@ -100243,17 +100268,17 @@ 0.0, 0.0, 0.0, - 0.719, - 4.532, - 12.843, - 18.851, - 18.851, - 18.851, - 18.851, - 11.398, 0.0, 0.0, 0.0, + 1.377, + 9.286, + 27.434, + 31.876, + 31.876, + 31.876, + 31.876, + 11.772, 0.0, 0.0, 0.0, @@ -100267,17 +100292,16 @@ 0.0, 0.0, 0.0, - 0.703, - 4.738, - 13.997, - 18.851, - 18.851, - 18.851, - 18.851, - 10.054, 0.0, 0.0, 0.0, + 1.672, + 9.2, + 26.069, + 31.876, + 31.876, + 31.876, + 29.378, 0.0, 0.0, 0.0, @@ -100291,18 +100315,18 @@ 0.0, 0.0, 0.0, - 0.853, - 4.694, - 13.3, - 18.851, - 18.851, - 18.851, - 18.851, - 9.706, 0.0, 0.0, 0.0, 0.0, + 2.021, + 9.471, + 25.601, + 31.876, + 31.876, + 31.876, + 31.876, + 12.777, 0.0, 0.0, 0.0, @@ -100315,18 +100339,18 @@ 0.0, 0.0, 0.0, - 1.031, - 4.832, - 13.062, - 18.851, - 18.851, - 18.851, - 18.851, - 10.566, 0.0, 0.0, 0.0, 0.0, + 1.901, + 9.117, + 24.912, + 31.876, + 31.876, + 31.876, + 31.876, + 13.939, 0.0, 0.0, 0.0, @@ -100339,18 +100363,18 @@ 0.0, 0.0, 0.0, - 0.97, - 4.652, - 12.71, - 18.851, - 18.851, - 18.851, - 18.851, - 11.16, 0.0, 0.0, 0.0, 0.0, + 1.8, + 9.007, + 24.846, + 31.876, + 31.876, + 31.876, + 31.876, + 14.216, 0.0, 0.0, 0.0, @@ -100363,18 +100387,18 @@ 0.0, 0.0, 0.0, - 0.918, - 4.595, - 12.677, - 18.851, - 18.851, - 18.851, - 18.851, - 11.301, 0.0, 0.0, 0.0, 0.0, + 1.446, + 8.692, + 25.407, + 31.876, + 31.876, + 31.876, + 31.876, + 14.324, 0.0, 0.0, 0.0, @@ -100387,18 +100411,18 @@ 0.0, 0.0, 0.0, - 0.738, - 4.435, - 12.963, - 18.851, - 18.851, - 18.851, - 18.851, - 11.356, 0.0, 0.0, 0.0, 0.0, + 1.421, + 8.653, + 25.472, + 31.876, + 31.876, + 31.876, + 31.876, + 14.322, 0.0, 0.0, 0.0, @@ -100411,18 +100435,18 @@ 0.0, 0.0, 0.0, - 0.725, - 4.415, - 12.996, - 18.851, - 18.851, - 18.851, - 18.851, - 11.355, 0.0, 0.0, 0.0, 0.0, + 1.454, + 8.428, + 24.594, + 31.876, + 31.876, + 31.876, + 31.876, + 15.393, 0.0, 0.0, 0.0, @@ -100435,18 +100459,18 @@ 0.0, 0.0, 0.0, - 0.742, - 4.3, - 12.548, - 18.851, - 18.851, - 18.851, - 18.851, - 11.902, 0.0, 0.0, 0.0, 0.0, + 1.433, + 8.233, + 23.663, + 31.876, + 31.876, + 31.876, + 31.876, + 1.054, 0.0, 0.0, 0.0, @@ -100459,18 +100483,18 @@ 0.0, 0.0, 0.0, - 0.731, - 4.201, - 12.073, - 18.687, - 18.851, - 18.851, - 18.851, - 11.649, 0.0, 0.0, 0.0, 0.0, + 1.329, + 8.248, + 24.209, + 31.876, + 31.876, + 31.876, + 31.876, + 16.083, 0.0, 0.0, 0.0, @@ -100483,18 +100507,18 @@ 0.0, 0.0, 0.0, - 0.678, - 4.208, - 12.352, - 18.851, - 18.851, - 18.851, - 18.851, - 12.254, 0.0, 0.0, 0.0, 0.0, + 1.567, + 8.136, + 23.24, + 31.876, + 31.876, + 31.876, + 31.876, + 16.926, 0.0, 0.0, 0.0, @@ -100507,18 +100531,18 @@ 0.0, 0.0, 0.0, - 0.8, - 4.151, - 11.857, - 18.566, - 18.851, - 18.851, - 18.851, - 12.968, 0.0, 0.0, 0.0, 0.0, + 1.374, + 8.252, + 18.628, + 31.876, + 31.876, + 31.876, + 31.876, + 21.614, 0.0, 0.0, 0.0, @@ -100531,18 +100555,18 @@ 0.0, 0.0, 0.0, - 0.701, - 4.21, - 9.504, - 18.851, - 18.851, - 18.851, - 18.851, - 15.076, 0.0, 0.0, 0.0, 0.0, + 1.752, + 8.668, + 25.064, + 31.876, + 31.876, + 31.876, + 31.876, + 14.386, 0.0, 0.0, 0.0, @@ -100555,18 +100579,18 @@ 0.0, 0.0, 0.0, - 0.894, - 4.422, - 12.788, - 18.851, - 18.851, - 18.851, - 18.851, - 11.388, 0.0, 0.0, 0.0, 0.0, + 2.075, + 9.131, + 24.968, + 31.876, + 31.876, + 31.876, + 31.876, + 13.695, 0.0, 0.0, 0.0, @@ -100579,18 +100603,18 @@ 0.0, 0.0, 0.0, - 1.059, - 4.659, - 12.739, - 18.851, - 18.851, - 18.851, - 18.851, - 11.035, 0.0, 0.0, 0.0, 0.0, + 2.016, + 8.887, + 24.177, + 31.876, + 31.876, + 31.876, + 31.876, + 14.789, 0.0, 0.0, 0.0, @@ -100603,18 +100627,17 @@ 0.0, 0.0, 0.0, - 1.029, - 4.534, - 12.335, - 18.851, - 18.851, - 18.851, - 18.851, - 11.593, 0.0, 0.0, 0.0, 0.0, + 1.706, + 8.381, + 23.799, + 31.876, + 31.876, + 31.876, + 28.394, 0.0, 0.0, 0.0, @@ -100627,19 +100650,18 @@ 0.0, 0.0, 0.0, - 0.871, - 4.276, - 12.142, - 18.851, - 18.851, - 18.851, - 18.851, - 7.215, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.783, + 8.456, + 23.233, + 31.876, + 31.876, + 31.876, + 28.8, 0.0, 0.0, 0.0, @@ -100651,20 +100673,20 @@ 0.0, 0.0, 0.0, - 0.91, - 4.314, - 11.853, - 18.536, - 18.851, - 18.851, - 18.851, - 7.735, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.114, + 7.928, + 23.488, + 31.876, + 31.876, + 31.876, + 31.876, + 16.339, 0.0, 0.0, 0.0, @@ -100675,20 +100697,21 @@ 0.0, 0.0, 0.0, - 1.079, - 4.045, - 11.983, - 18.734, - 18.851, - 18.851, - 18.851, - 12.501, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.088, + 7.76, + 17.531, + 19.113, + 31.876, + 31.876, + 31.876, + 26.615, + 8.639, 0.0, 0.0, 0.0, @@ -100699,21 +100722,19 @@ 0.0, 0.0, 0.0, - 1.065, - 3.959, - 8.944, - 9.751, - 18.851, - 18.851, - 18.851, - 13.579, - 4.51, - 6.532, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.908, + 8.034, + 22.545, + 31.876, + 31.876, + 31.876, + 31.876, + 17.383, 0.0, 0.0, 0.0, @@ -100723,14 +100744,6 @@ 0.0, 0.0, 0.0, - 0.974, - 4.099, - 11.502, - 18.741, - 18.851, - 18.851, - 18.851, - 13.027, 0.0, 0.0, 0.0, @@ -100738,6 +100751,15 @@ 0.0, 0.0, 0.0, + 1.757, + 7.45, + 18.194, + 16.361, + 31.876, + 31.876, + 31.876, + 31.876, + 6.108, 0.0, 0.0, 0.0, @@ -100747,21 +100769,20 @@ 0.0, 0.0, 0.0, - 0.896, - 3.801, - 9.283, - 8.347, - 18.227, - 18.851, - 18.851, - 18.851, - 7.787, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.88, + 8.182, + 22.565, + 31.876, + 31.876, + 31.876, + 31.876, + 17.242, 0.0, 0.0, 0.0, @@ -100771,14 +100792,6 @@ 0.0, 0.0, 0.0, - 0.959, - 4.175, - 11.513, - 18.163, - 18.851, - 18.851, - 18.851, - 13.532, 0.0, 0.0, 0.0, @@ -100786,6 +100799,13 @@ 0.0, 0.0, 0.0, + 1.751, + 7.799, + 22.52, + 31.876, + 31.876, + 31.876, + 29.998, 0.0, 0.0, 0.0, @@ -100795,14 +100815,6 @@ 0.0, 0.0, 0.0, - 0.893, - 3.979, - 11.49, - 18.117, - 18.851, - 18.851, - 18.851, - 8.657, 0.0, 0.0, 0.0, @@ -100811,6 +100823,16 @@ 0.0, 0.0, 0.0, + 1.493, + 4.87, + 13.008, + 9.85, + 12.102, + 31.876, + 31.876, + 31.876, + 31.876, + 8.546, 0.0, 0.0, 0.0, @@ -100819,22 +100841,20 @@ 0.0, 0.0, 0.0, - 0.762, - 2.485, - 6.637, - 5.026, - 6.175, - 18.851, - 18.851, - 18.851, - 18.851, - 8.408, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 1.963, + 8.124, + 23.639, + 31.876, + 31.876, + 31.876, + 31.876, + 16.144, 0.0, 0.0, 0.0, @@ -100843,14 +100863,6 @@ 0.0, 0.0, 0.0, - 1.001, - 4.145, - 12.061, - 18.851, - 18.851, - 18.851, - 18.851, - 12.284, 0.0, 0.0, 0.0, @@ -100859,6 +100871,14 @@ 0.0, 0.0, 0.0, + 1.803, + 8.419, + 25.374, + 31.876, + 31.876, + 31.876, + 31.876, + 14.274, 0.0, 0.0, 0.0, @@ -100867,14 +100887,6 @@ 0.0, 0.0, 0.0, - 0.92, - 4.295, - 12.946, - 18.851, - 18.851, - 18.851, - 18.851, - 11.33, 0.0, 0.0, 0.0, @@ -100883,6 +100895,14 @@ 0.0, 0.0, 0.0, + 1.632, + 8.42, + 25.707, + 31.876, + 31.876, + 31.876, + 31.876, + 14.11, 0.0, 0.0, 0.0, @@ -100891,14 +100911,6 @@ 0.0, 0.0, 0.0, - 0.833, - 4.296, - 13.116, - 18.851, - 18.851, - 18.851, - 18.851, - 11.247, 0.0, 0.0, 0.0, @@ -100907,6 +100919,14 @@ 0.0, 0.0, 0.0, + 1.584, + 8.055, + 24.262, + 31.876, + 31.876, + 31.876, + 31.876, + 15.968, 0.0, 0.0, 0.0, @@ -100915,14 +100935,6 @@ 0.0, 0.0, 0.0, - 0.808, - 4.11, - 12.378, - 18.851, - 18.851, - 18.851, - 18.851, - 12.195, 0.0, 0.0, 0.0, @@ -100931,6 +100943,14 @@ 0.0, 0.0, 0.0, + 1.716, + 7.809, + 23.518, + 31.876, + 31.876, + 31.876, + 31.876, + 16.825, 0.0, 0.0, 0.0, @@ -100939,14 +100959,6 @@ 0.0, 0.0, 0.0, - 0.876, - 3.984, - 11.999, - 18.851, - 18.851, - 18.851, - 18.851, - 12.632, 0.0, 0.0, 0.0, @@ -100955,6 +100967,13 @@ 0.0, 0.0, 0.0, + 1.632, + 7.557, + 22.759, + 31.876, + 31.876, + 31.876, + 30.064, 0.0, 0.0, 0.0, @@ -100963,14 +100982,6 @@ 0.0, 0.0, 0.0, - 0.833, - 3.855, - 11.612, - 18.544, - 18.851, - 18.851, - 18.851, - 8.232, 0.0, 0.0, 0.0, @@ -100980,6 +100991,14 @@ 0.0, 0.0, 0.0, + 1.638, + 8.096, + 23.515, + 31.876, + 31.876, + 31.876, + 31.876, + 16.621, 0.0, 0.0, 0.0, @@ -100987,14 +101006,6 @@ 0.0, 0.0, 0.0, - 0.835, - 4.13, - 11.997, - 18.851, - 18.851, - 18.851, - 18.851, - 12.528, 0.0, 0.0, 0.0, @@ -101004,6 +101015,14 @@ 0.0, 0.0, 0.0, + 1.927, + 7.924, + 23.9, + 31.876, + 31.876, + 31.876, + 31.876, + 16.118, 0.0, 0.0, 0.0, @@ -101011,14 +101030,6 @@ 0.0, 0.0, 0.0, - 0.983, - 4.043, - 12.194, - 18.851, - 18.851, - 18.851, - 18.851, - 12.271, 0.0, 0.0, 0.0, @@ -101028,6 +101039,14 @@ 0.0, 0.0, 0.0, + 1.771, + 7.774, + 23.496, + 31.876, + 31.876, + 31.876, + 31.876, + 16.828, 0.0, 0.0, 0.0, @@ -101035,14 +101054,6 @@ 0.0, 0.0, 0.0, - 0.904, - 3.966, - 11.988, - 18.851, - 18.851, - 18.851, - 18.851, - 12.634, 0.0, 0.0, 0.0, @@ -101052,6 +101063,14 @@ 0.0, 0.0, 0.0, + 1.85, + 7.594, + 22.606, + 31.876, + 31.876, + 31.876, + 31.876, + 17.819, 0.0, 0.0, 0.0, @@ -101059,14 +101078,6 @@ 0.0, 0.0, 0.0, - 0.944, - 3.875, - 11.534, - 18.135, - 18.851, - 18.851, - 18.851, - 13.854, 0.0, 0.0, 0.0, @@ -101076,6 +101087,14 @@ 0.0, 0.0, 0.0, + 1.747, + 7.409, + 22.853, + 31.876, + 31.876, + 31.876, + 31.876, + 17.86, 0.0, 0.0, 0.0, @@ -101083,14 +101102,6 @@ 0.0, 0.0, 0.0, - 0.891, - 3.78, - 11.66, - 18.794, - 18.851, - 18.851, - 18.851, - 13.217, 0.0, 0.0, 0.0, @@ -101100,6 +101111,14 @@ 0.0, 0.0, 0.0, + 1.909, + 7.67, + 22.98, + 31.876, + 31.876, + 31.876, + 31.876, + 17.311, 0.0, 0.0, 0.0, @@ -101107,14 +101126,6 @@ 0.0, 0.0, 0.0, - 0.974, - 3.913, - 11.724, - 18.706, - 18.851, - 18.851, - 18.851, - 13.025, 0.0, 0.0, 0.0, @@ -101124,6 +101135,13 @@ 0.0, 0.0, 0.0, + 1.844, + 7.558, + 22.93, + 31.876, + 31.876, + 31.876, + 25.696, 0.0, 0.0, 0.0, @@ -101131,14 +101149,6 @@ 0.0, 0.0, 0.0, - 0.941, - 3.856, - 11.699, - 18.674, - 18.851, - 18.851, - 18.851, - 3.917, 0.0, 0.0, 0.0, @@ -101149,20 +101159,20 @@ 0.0, 0.0, 0.0, + 2.203, + 7.935, + 22.315, + 31.876, + 31.876, + 31.876, + 31.876, + 17.416, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 1.124, - 4.048, - 11.385, - 18.088, - 18.851, - 18.851, - 18.851, - 13.697, 0.0, 0.0, 0.0, @@ -101173,20 +101183,20 @@ 0.0, 0.0, 0.0, + 1.841, + 7.529, + 22.154, + 31.876, + 31.876, + 31.876, + 31.876, + 18.346, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.939, - 3.841, - 11.303, - 18.129, - 18.851, - 18.851, - 18.851, - 14.129, 0.0, 0.0, 0.0, @@ -101197,20 +101207,20 @@ 0.0, 0.0, 0.0, + 1.796, + 7.315, + 22.481, + 31.876, + 31.876, + 31.876, + 31.876, + 18.276, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.917, - 3.732, - 11.47, - 18.395, - 18.851, - 18.851, - 18.851, - 13.828, 0.0, 0.0, 0.0, @@ -101221,20 +101231,20 @@ 0.0, 0.0, 0.0, + 1.621, + 6.98, + 22.15, + 31.876, + 31.876, + 31.876, + 31.876, + 19.119, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.827, - 3.561, - 11.301, - 18.122, - 18.851, - 18.851, - 18.851, - 14.531, 0.0, 0.0, 0.0, @@ -101245,20 +101255,20 @@ 0.0, 0.0, 0.0, + 1.558, + 6.924, + 21.959, + 31.876, + 31.876, + 31.876, + 31.876, + 19.428, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.795, - 3.533, - 11.204, - 17.952, - 18.851, - 18.851, - 18.851, - 14.858, 0.0, 0.0, 0.0, @@ -101269,20 +101279,20 @@ 0.0, 0.0, 0.0, + 1.702, + 6.879, + 19.296, + 31.724, + 31.876, + 31.876, + 31.876, + 22.145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.868, - 3.51, - 9.845, - 16.186, - 18.851, - 18.851, - 18.851, - 17.933, 0.0, 0.0, 0.0, @@ -101293,20 +101303,19 @@ 0.0, 0.0, 0.0, + 1.719, + 7.15, + 20.02, + 31.876, + 31.876, + 31.876, + 29.176, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.877, - 3.648, - 10.214, - 16.631, - 18.851, - 18.851, - 18.851, - 7.755, 0.0, 0.0, 0.0, @@ -101318,19 +101327,19 @@ 0.0, 0.0, 0.0, + 1.664, + 6.797, + 20.874, + 31.876, + 31.876, + 31.876, + 31.876, + 20.534, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.849, - 3.468, - 10.65, - 16.938, - 18.851, - 18.851, - 18.851, - 16.437, 0.0, 0.0, 0.0, @@ -101342,19 +101351,19 @@ 0.0, 0.0, 0.0, + 1.618, + 6.902, + 21.027, + 31.876, + 31.876, + 31.876, + 31.876, + 20.323, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.825, - 3.521, - 10.728, - 17.481, - 18.851, - 18.851, - 18.851, - 15.787, 0.0, 0.0, 0.0, @@ -101366,19 +101375,19 @@ 0.0, 0.0, 0.0, + 1.704, + 7.16, + 22.42, + 31.876, + 31.876, + 31.876, + 31.876, + 18.584, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.869, - 3.653, - 11.439, - 18.663, - 18.851, - 18.851, - 18.851, - 13.717, 0.0, 0.0, 0.0, @@ -101390,19 +101399,19 @@ 0.0, 0.0, 0.0, + 1.831, + 7.265, + 23.056, + 31.876, + 31.876, + 31.876, + 31.876, + 17.717, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.934, - 3.706, - 11.763, - 18.851, - 18.851, - 18.851, - 18.851, - 13.087, 0.0, 0.0, 0.0, @@ -101414,19 +101423,19 @@ 0.0, 0.0, 0.0, + 1.504, + 6.7, + 22.049, + 31.876, + 31.876, + 31.876, + 31.876, + 19.616, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.767, - 3.419, - 11.249, - 18.068, - 18.851, - 18.851, - 18.851, - 14.839, 0.0, 0.0, 0.0, @@ -101438,19 +101447,19 @@ 0.0, 0.0, 0.0, + 1.212, + 6.487, + 22.695, + 31.876, + 31.876, + 31.876, + 31.876, + 19.476, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.618, - 3.309, - 11.579, - 18.768, - 18.851, - 18.851, - 18.851, - 14.067, 0.0, 0.0, 0.0, @@ -101462,19 +101471,18 @@ 0.0, 0.0, 0.0, + 1.207, + 6.535, + 22.814, + 31.876, + 31.876, + 31.876, + 27.736, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.616, - 3.334, - 11.64, - 18.851, - 18.851, - 18.851, - 18.851, - 4.92, 0.0, 0.0, 0.0, @@ -101487,18 +101495,18 @@ 0.0, 0.0, 0.0, + 1.165, + 6.6, + 22.665, + 31.876, + 31.876, + 31.876, + 31.876, + 19.439, 0.0, 0.0, 0.0, 0.0, - 0.594, - 3.367, - 11.564, - 18.627, - 18.851, - 18.851, - 18.851, - 14.189, 0.0, 0.0, 0.0, @@ -101511,18 +101519,18 @@ 0.0, 0.0, 0.0, + 1.152, + 6.486, + 21.85, + 31.876, + 31.876, + 31.876, + 31.876, + 20.382, 0.0, 0.0, 0.0, 0.0, - 0.588, - 3.309, - 11.148, - 17.711, - 18.851, - 18.851, - 18.851, - 15.587, 0.0, 0.0, 0.0, @@ -101535,18 +101543,17 @@ 0.0, 0.0, 0.0, + 1.558, + 6.661, + 20.26, + 31.876, + 31.876, + 31.876, + 29.589, 0.0, 0.0, 0.0, 0.0, - 0.795, - 3.398, - 10.337, - 16.858, - 18.851, - 18.851, - 18.851, - 7.741, 0.0, 0.0, 0.0, @@ -101560,17 +101567,17 @@ 0.0, 0.0, 0.0, + 1.975, + 7.552, + 19.96, + 31.876, + 31.876, + 31.876, + 31.876, + 20.382, 0.0, 0.0, 0.0, - 1.008, - 3.853, - 10.184, - 16.703, - 18.851, - 18.851, - 18.851, - 16.594, 0.0, 0.0, 0.0, @@ -101584,17 +101591,17 @@ 0.0, 0.0, 0.0, + 1.496, + 6.561, + 20.993, + 31.876, + 31.876, + 31.876, + 31.876, + 20.82, 0.0, 0.0, 0.0, - 0.763, - 3.347, - 10.711, - 17.712, - 18.851, - 18.851, - 18.851, - 15.809, 0.0, 0.0, 0.0, @@ -101608,17 +101615,17 @@ 0.0, 0.0, 0.0, + 1.217, + 6.214, + 21.535, + 31.876, + 31.876, + 31.876, + 31.876, + 20.904, 0.0, 0.0, 0.0, - 0.621, - 3.17, - 10.987, - 18.25, - 18.851, - 18.851, - 18.851, - 15.313, 0.0, 0.0, 0.0, @@ -101632,17 +101639,16 @@ 0.0, 0.0, 0.0, + 1.397, + 6.445, + 21.148, + 31.876, + 31.876, + 31.876, + 29.312, 0.0, 0.0, 0.0, - 0.713, - 3.288, - 10.79, - 17.717, - 18.851, - 18.851, - 18.851, - 6.863, 0.0, 0.0, 0.0, @@ -101657,17 +101663,17 @@ 0.0, 0.0, 0.0, + 1.436, + 5.334, + 17.213, + 13.688, + 31.876, + 31.876, + 31.876, + 31.876, + 12.198, 0.0, 0.0, - 0.733, - 2.721, - 8.782, - 6.984, - 18.851, - 18.851, - 18.323, - 18.851, - 10.799, 0.0, 0.0, 0.0, @@ -101681,16 +101687,16 @@ 0.0, 0.0, 0.0, + 1.687, + 7.026, + 21.413, + 31.876, + 31.876, + 31.876, + 31.876, + 19.743, 0.0, 0.0, - 0.861, - 3.585, - 10.925, - 18.253, - 18.851, - 18.851, - 18.851, - 14.719, 0.0, 0.0, 0.0, @@ -101705,16 +101711,16 @@ 0.0, 0.0, 0.0, + 1.146, + 6.292, + 21.875, + 31.876, + 31.876, + 31.876, + 31.876, + 20.556, 0.0, 0.0, - 0.585, - 3.21, - 11.161, - 18.413, - 18.851, - 18.851, - 18.851, - 14.973, 0.0, 0.0, 0.0, @@ -101729,16 +101735,16 @@ 0.0, 0.0, 0.0, + 1.059, + 6.008, + 21.7, + 31.876, + 31.876, + 31.876, + 31.876, + 21.102, 0.0, 0.0, - 0.54, - 3.065, - 11.072, - 18.216, - 18.851, - 18.851, - 18.851, - 15.449, 0.0, 0.0, 0.0, @@ -101753,18 +101759,17 @@ 0.0, 0.0, 0.0, + 0.361, + 4.818, + 16.861, + 25.918, + 31.876, + 22.631, + 29.625, + 29.76, + 15.524, 0.0, 0.0, - 0.184, - 2.458, - 8.603, - 13.224, - 16.894, - 11.546, - 15.115, - 15.184, - 17.536, - 4.151, 0.0, 0.0, 0.0, @@ -101778,15 +101783,15 @@ 0.0, 0.0, 0.0, + 0.51, + 5.761, + 19.947, + 31.876, + 31.876, + 31.876, + 31.876, + 23.651, 0.0, - 0.26, - 2.939, - 10.177, - 16.905, - 18.851, - 18.851, - 18.851, - 18.06, 0.0, 0.0, 0.0, @@ -101802,15 +101807,14 @@ 0.0, 0.0, 0.0, + 1.13, + 5.861, + 20.52, + 31.876, + 31.876, + 31.876, + 30.723, 0.0, - 0.577, - 2.99, - 10.469, - 17.456, - 18.851, - 18.851, - 18.851, - 7.808, 0.0, 0.0, 0.0, @@ -101827,14 +101831,14 @@ 0.0, 0.0, 0.0, - 0.504, - 3.041, - 10.933, - 18.131, - 18.851, - 18.851, - 18.851, - 15.733, + 0.989, + 5.959, + 21.428, + 31.876, + 31.876, + 31.876, + 31.876, + 21.493, 0.0, 0.0, 0.0, @@ -101851,14 +101855,14 @@ 0.0, 0.0, 0.0, - 0.483, - 3.042, - 11.046, - 18.344, - 18.851, - 18.851, - 18.851, - 15.426, + 0.947, + 5.963, + 21.65, + 31.876, + 31.876, + 31.876, + 31.876, + 21.309, 0.0, 0.0, 0.0, @@ -101875,14 +101879,14 @@ 0.0, 0.0, 0.0, - 0.458, - 2.996, - 10.919, - 18.164, - 18.851, - 18.851, - 18.851, - 15.806, + 0.898, + 5.871, + 21.401, + 31.876, + 31.876, + 31.876, + 31.876, + 21.7, 0.0, 0.0, 0.0, @@ -101899,14 +101903,14 @@ 0.0, 0.0, 0.0, - 0.46, - 2.968, - 11.028, - 18.229, - 18.851, - 18.851, - 18.851, - 15.658, + 0.901, + 5.817, + 21.614, + 31.876, + 31.876, + 31.876, + 31.876, + 21.537, 0.0, 0.0, 0.0, @@ -101923,14 +101927,14 @@ 0.0, 0.0, 0.0, - 0.479, - 3.048, - 10.808, - 17.998, - 18.851, - 18.851, - 18.851, - 16.008, + 0.939, + 5.975, + 21.184, + 31.876, + 31.876, + 31.876, + 31.876, + 21.772, 0.0, 0.0, 0.0, @@ -101947,14 +101951,14 @@ 0.0, 0.0, 0.0, - 0.525, - 2.99, - 10.346, - 17.167, - 18.851, - 18.851, - 18.851, - 17.314, + 1.03, + 5.86, + 20.277, + 31.876, + 31.876, + 31.876, + 31.876, + 22.701, 0.0, 0.0, 0.0, @@ -101972,15 +101976,15 @@ 0.0, 0.0, 0.0, - 0.051, - 2.032, - 2.262, - 2.089, - 18.851, - 18.851, - 18.851, - 1.955, - 6.229, + 0.099, + 3.982, + 4.433, + 4.095, + 31.876, + 31.876, + 31.876, + 3.831, + 12.208, 0.0, 0.0, 0.0, @@ -101995,14 +101999,14 @@ 0.0, 0.0, 0.0, - 0.485, - 2.996, - 10.186, - 16.924, - 18.851, - 18.851, - 18.851, - 17.751, + 0.95, + 5.872, + 19.965, + 31.876, + 31.876, + 31.876, + 31.876, + 23.082, 0.0, 0.0, 0.0, @@ -102019,14 +102023,14 @@ 0.0, 0.0, 0.0, - 0.42, - 2.869, - 10.567, - 17.651, - 18.851, - 18.851, - 18.851, - 16.836, + 0.823, + 5.623, + 20.71, + 31.876, + 31.876, + 31.876, + 31.876, + 22.713, 0.0, 0.0, 0.0, @@ -102043,14 +102047,14 @@ 0.0, 0.0, 0.0, - 0.415, - 2.886, - 10.599, - 17.692, - 18.851, - 18.851, - 18.851, - 16.75, + 0.814, + 5.656, + 20.774, + 31.876, + 31.876, + 31.876, + 31.876, + 22.625, 0.0, 0.0, 0.0, @@ -102067,14 +102071,14 @@ 0.0, 0.0, 0.0, - 0.435, - 2.912, - 10.39, - 17.354, - 18.851, - 18.851, - 18.851, - 17.252, + 0.852, + 5.707, + 20.364, + 31.876, + 31.876, + 31.876, + 31.876, + 22.946, 0.0, 0.0, 0.0, @@ -102091,14 +102095,14 @@ 0.0, 0.0, 0.0, - 0.438, - 2.994, - 10.517, - 17.534, - 18.851, - 18.851, - 18.851, - 16.859, + 0.858, + 5.868, + 20.613, + 31.876, + 31.876, + 31.876, + 31.876, + 22.53, 0.0, 0.0, 0.0, @@ -102115,14 +102119,14 @@ 0.0, 0.0, 0.0, - 0.388, - 2.947, - 10.569, - 17.636, - 18.851, - 18.851, - 18.851, - 16.802, + 0.76, + 5.776, + 20.715, + 31.876, + 31.876, + 31.876, + 31.876, + 22.618, 0.0, 0.0, 0.0, @@ -102139,14 +102143,14 @@ 0.0, 0.0, 0.0, - 0.383, - 2.984, - 10.556, - 17.567, - 18.851, - 18.851, - 18.851, - 11.956, + 0.752, + 5.849, + 20.691, + 31.876, + 31.876, + 31.876, + 31.876, + 3.201, 0.0, 0.0, 0.0, @@ -102163,14 +102167,14 @@ 0.0, 0.0, 0.0, - 0.356, - 3.002, - 10.412, - 17.38, - 18.851, - 18.851, - 18.851, - 17.192, + 0.699, + 5.884, + 20.407, + 31.876, + 31.876, + 31.876, + 31.876, + 22.879, 0.0, 0.0, 0.0, @@ -102188,14 +102192,14 @@ 0.0, 0.0, 0.0, - 1.7, - 0.264, - 14.266, - 18.851, - 18.851, - 18.851, - 18.851, - 13.261, + 3.332, + 0.518, + 27.961, + 31.876, + 31.876, + 31.876, + 31.876, + 18.058, 0.0, 0.0, 0.0, @@ -102211,14 +102215,14 @@ 0.0, 0.0, 0.0, - 0.335, - 3.059, - 10.443, - 17.386, - 18.851, - 18.851, - 18.851, - 17.119, + 0.656, + 5.995, + 20.468, + 31.876, + 31.876, + 31.876, + 31.876, + 22.75, 0.0, 0.0, 0.0, @@ -102235,14 +102239,14 @@ 0.0, 0.0, 0.0, - 0.283, - 2.945, - 10.754, - 17.767, - 18.851, - 18.851, - 18.851, - 16.593, + 0.555, + 5.773, + 21.078, + 31.876, + 31.876, + 31.876, + 31.876, + 22.464, 0.0, 0.0, 0.0, @@ -102259,14 +102263,14 @@ 0.0, 0.0, 0.0, - 0.273, - 3.101, - 10.593, - 17.615, - 18.851, - 18.851, - 18.851, - 16.759, + 0.535, + 6.079, + 20.762, + 31.876, + 31.876, + 31.876, + 31.876, + 22.494, 0.0, 0.0, 0.0, @@ -102283,14 +102287,14 @@ 0.0, 0.0, 0.0, - 0.263, - 3.373, - 10.615, - 17.724, - 18.851, - 18.851, - 18.851, - 16.367, + 0.515, + 6.611, + 20.805, + 31.876, + 31.876, + 31.876, + 31.876, + 21.938, 0.0, 0.0, 0.0, @@ -102307,14 +102311,14 @@ 0.0, 0.0, 0.0, - 0.276, - 3.187, - 11.514, - 18.851, - 18.851, - 18.851, - 18.851, - 13.543, + 0.541, + 6.247, + 22.568, + 31.876, + 31.876, + 31.876, + 31.876, + 5.056, 0.0, 0.0, 0.0, @@ -102331,14 +102335,14 @@ 0.0, 0.0, 0.0, - 0.194, - 3.064, - 11.434, - 18.851, - 18.851, - 18.851, - 18.851, - 14.799, + 0.381, + 6.005, + 22.41, + 31.876, + 31.876, + 31.876, + 31.876, + 21.073, 0.0, 0.0, 0.0, @@ -102355,14 +102359,14 @@ 0.0, 0.0, 0.0, - 0.193, - 3.102, - 11.534, - 18.851, - 18.851, - 18.851, - 18.851, - 14.663, + 0.378, + 6.08, + 22.606, + 31.876, + 31.876, + 31.876, + 31.876, + 20.805, 0.0, 0.0, 0.0, @@ -102379,14 +102383,14 @@ 0.0, 0.0, 0.0, - 0.172, - 3.067, - 11.45, - 18.851, - 18.851, - 18.851, - 18.851, - 14.802, + 0.337, + 6.012, + 22.441, + 31.876, + 31.876, + 31.876, + 31.876, + 21.079, 0.0, 0.0, 0.0, @@ -102403,14 +102407,14 @@ 0.0, 0.0, 0.0, - 0.151, - 3.062, - 11.39, - 18.724, - 18.851, - 18.851, - 18.851, - 15.014, + 0.297, + 6.002, + 22.325, + 31.876, + 31.876, + 31.876, + 31.876, + 21.245, 0.0, 0.0, 0.0, @@ -102427,14 +102431,14 @@ 0.0, 0.0, 0.0, - 0.174, - 3.089, - 11.35, - 18.851, - 18.851, - 18.851, - 18.851, - 14.878, + 0.341, + 6.054, + 22.246, + 31.876, + 31.876, + 31.876, + 31.876, + 21.228, 0.0, 0.0, 0.0, @@ -102451,14 +102455,14 @@ 0.0, 0.0, 0.0, - 0.153, - 2.996, - 10.972, - 18.146, - 18.851, - 18.851, - 18.851, - 16.076, + 0.299, + 5.873, + 21.504, + 31.876, + 31.876, + 31.876, + 31.876, + 22.193, 0.0, 0.0, 0.0, @@ -102475,14 +102479,14 @@ 0.0, 0.0, 0.0, - 0.15, - 2.975, - 10.873, - 18.013, - 18.851, - 18.851, - 18.851, - 15.476, + 0.294, + 5.831, + 21.31, + 31.876, + 31.876, + 31.876, + 31.876, + 7.087, 0.0, 0.0, 0.0, @@ -102499,14 +102503,14 @@ 0.0, 0.0, 0.0, - 0.131, - 2.953, - 10.766, - 17.738, - 18.851, - 18.851, - 18.851, - 16.754, + 0.257, + 5.788, + 21.102, + 31.876, + 31.876, + 31.876, + 31.876, + 22.723, 0.0, 0.0, 0.0, @@ -102523,14 +102527,14 @@ 0.0, 0.0, 0.0, - 0.101, - 3.053, - 10.738, - 17.784, - 18.851, - 18.851, - 18.851, - 16.666, + 0.199, + 5.984, + 21.046, + 31.876, + 31.876, + 31.876, + 31.876, + 22.641, 0.0, 0.0, 0.0, @@ -102547,14 +102551,14 @@ 0.0, 0.0, 0.0, - 0.087, - 3.09, - 10.684, - 17.622, - 18.851, - 18.851, - 18.851, - 16.859, + 0.171, + 6.056, + 20.941, + 31.876, + 31.876, + 31.876, + 31.876, + 22.702, 0.0, 0.0, 0.0, @@ -102571,14 +102575,14 @@ 0.0, 0.0, 0.0, - 0.109, - 3.055, - 10.648, - 17.642, - 18.851, - 18.851, - 18.851, - 16.888, + 0.213, + 5.987, + 20.871, + 31.876, + 31.876, + 31.876, + 31.876, + 22.798, 0.0, 0.0, 0.0, @@ -102595,14 +102599,14 @@ 0.0, 0.0, 0.0, - 0.109, - 3.03, - 10.963, - 18.219, - 18.851, - 18.851, - 18.851, - 16.021, + 0.213, + 5.939, + 21.487, + 31.876, + 31.876, + 31.876, + 31.876, + 22.23, 0.0, 0.0, 0.0, @@ -102619,14 +102623,14 @@ 0.0, 0.0, 0.0, - 0.13, - 2.94, - 11.425, - 18.851, - 18.851, - 18.851, - 18.851, - 14.995, + 0.255, + 5.763, + 22.394, + 31.876, + 31.876, + 31.876, + 31.876, + 21.457, 0.0, 0.0, 0.0, @@ -102643,14 +102647,14 @@ 0.0, 0.0, 0.0, - 0.093, - 3.198, - 11.724, - 18.851, - 18.851, - 18.851, - 18.851, - 14.477, + 0.181, + 6.268, + 22.978, + 31.876, + 31.876, + 31.876, + 31.876, + 9.003, 0.0, 0.0, 0.0, @@ -102667,14 +102671,14 @@ 0.0, 0.0, 0.0, - 0.07, - 3.145, - 11.434, - 18.759, - 18.851, - 18.851, - 18.851, - 14.934, + 0.137, + 6.164, + 22.411, + 31.876, + 31.876, + 31.876, + 31.876, + 21.157, 0.0, 0.0, 0.0, @@ -102691,14 +102695,14 @@ 0.0, 0.0, 0.0, - 0.051, - 3.097, - 11.407, - 18.789, - 18.851, - 18.851, - 18.851, - 14.998, + 0.1, + 6.071, + 22.357, + 31.876, + 31.876, + 31.876, + 31.876, + 21.341, 0.0, 0.0, 0.0, @@ -102715,14 +102719,14 @@ 0.0, 0.0, 0.0, - 0.055, - 3.245, - 11.803, - 18.851, - 18.851, - 18.851, - 18.851, - 14.388, + 0.107, + 6.36, + 23.135, + 31.876, + 31.876, + 31.876, + 31.876, + 20.267, 0.0, 0.0, 0.0, @@ -102739,14 +102743,14 @@ 0.0, 0.0, 0.0, - 0.034, - 3.225, - 11.593, - 18.792, - 18.851, - 18.851, - 18.851, - 14.697, + 0.067, + 6.321, + 22.723, + 31.876, + 31.876, + 31.876, + 31.876, + 20.758, 0.0, 0.0, 0.0, @@ -102763,14 +102767,14 @@ 0.0, 0.0, 0.0, - 0.011, - 3.076, - 10.822, - 18.055, - 18.851, - 18.851, - 18.851, - 16.378, + 0.022, + 6.028, + 21.212, + 31.876, + 31.876, + 31.876, + 31.876, + 22.607, 0.0, 0.0, 0.0, @@ -102788,13 +102792,13 @@ 0.0, 0.0, 0.0, - 3.079, - 10.546, - 16.231, - 18.851, - 18.851, - 18.851, - 18.485, + 6.035, + 20.671, + 31.814, + 31.876, + 31.876, + 31.876, + 23.226, 0.0, 0.0, 0.0, @@ -102812,13 +102816,13 @@ 0.0, 0.0, 0.0, - 3.037, - 10.848, - 17.899, - 18.851, - 18.851, - 18.851, - 16.558, + 5.952, + 21.263, + 31.876, + 31.876, + 31.876, + 31.876, + 15.028, 0.0, 0.0, 0.0, @@ -102836,13 +102840,13 @@ 0.0, 0.0, 0.0, - 3.058, - 11.181, - 17.956, - 18.851, - 18.851, - 18.851, - 16.148, + 5.993, + 21.914, + 31.876, + 31.876, + 31.876, + 31.876, + 21.962, 0.0, 0.0, 0.0, @@ -102860,13 +102864,13 @@ 0.0, 0.0, 0.0, - 3.082, - 11.1, - 17.614, - 18.851, - 18.851, - 18.851, - 16.546, + 6.041, + 21.757, + 31.876, + 31.876, + 31.876, + 31.876, + 22.071, 0.0, 0.0, 0.0, @@ -102884,13 +102888,13 @@ 0.0, 0.0, 0.0, - 1.373, - 10.935, - 17.88, - 18.851, - 18.851, - 18.851, - 18.154, + 2.692, + 21.432, + 31.876, + 31.876, + 31.876, + 31.876, + 25.745, 0.0, 0.0, 0.0, @@ -102908,13 +102912,13 @@ 0.0, 0.0, 0.0, - 3.051, - 10.487, - 17.084, - 18.851, - 18.851, - 18.851, - 17.72, + 5.98, + 20.555, + 31.876, + 31.876, + 31.876, + 31.876, + 23.333, 0.0, 0.0, 0.0, @@ -102932,13 +102936,13 @@ 0.0, 0.0, 0.0, - 3.303, - 11.722, - 18.64, - 18.851, - 18.851, - 18.851, - 14.677, + 6.473, + 22.975, + 31.876, + 31.876, + 31.876, + 31.876, + 20.421, 0.0, 0.0, 0.0, @@ -102956,15 +102960,15 @@ 0.0, 0.0, 0.0, - 3.325, - 11.856, - 18.544, - 18.851, - 18.851, - 18.851, - 6.703, - 0.695, - 0.537, + 6.518, + 23.237, + 31.876, + 31.876, + 31.876, + 31.876, + 13.137, + 1.361, + 1.053, 0.0, 0.0, 0.0, @@ -102980,13 +102984,13 @@ 0.0, 0.0, 0.0, - 3.232, - 11.502, - 18.589, - 18.851, - 18.851, - 18.851, - 15.018, + 6.336, + 22.544, + 31.876, + 31.876, + 31.876, + 31.876, + 20.99, 0.0, 0.0, 0.0, @@ -103004,13 +103008,13 @@ 0.0, 0.0, 0.0, - 3.25, - 11.596, - 18.481, - 18.851, - 18.851, - 18.851, - 15.015, + 6.369, + 22.729, + 31.876, + 31.876, + 31.876, + 31.876, + 16.958, 0.0, 0.0, 0.0, @@ -103028,13 +103032,13 @@ 0.0, 0.0, 0.0, - 3.202, - 11.296, - 18.308, - 18.851, - 18.851, - 18.851, - 15.536, + 6.275, + 22.14, + 31.876, + 31.876, + 31.876, + 31.876, + 21.453, 0.0, 0.0, 0.0, @@ -103052,13 +103056,13 @@ 0.0, 0.0, 0.0, - 3.219, - 11.286, - 18.452, - 18.851, - 18.851, - 18.851, - 15.384, + 6.309, + 22.121, + 31.876, + 31.876, + 31.876, + 31.876, + 21.439, 0.0, 0.0, 0.0, @@ -103076,13 +103080,13 @@ 0.0, 0.0, 0.0, - 3.268, - 11.445, - 18.543, - 18.851, - 18.851, - 18.851, - 15.086, + 6.405, + 22.431, + 31.876, + 31.876, + 31.876, + 31.876, + 21.032, 0.0, 0.0, 0.0, @@ -103100,13 +103104,13 @@ 0.0, 0.0, 0.0, - 3.498, - 12.424, - 18.851, - 18.851, - 18.851, - 18.851, - 13.569, + 6.856, + 24.35, + 31.876, + 31.876, + 31.876, + 31.876, + 18.663, 0.0, 0.0, 0.0, @@ -103124,13 +103128,13 @@ 0.0, 0.0, 0.0, - 3.583, - 12.626, - 18.851, - 18.851, - 18.851, - 18.851, - 13.282, + 7.023, + 24.748, + 31.876, + 31.876, + 31.876, + 31.876, + 18.099, 0.0, 0.0, 0.0, @@ -103148,13 +103152,13 @@ 0.0, 0.0, 0.0, - 3.506, - 12.191, - 18.851, - 18.851, - 18.851, - 18.851, - 13.795, + 6.871, + 23.893, + 31.876, + 31.876, + 31.876, + 31.876, + 19.105, 0.0, 0.0, 0.0, @@ -103172,13 +103176,13 @@ 0.0, 0.0, 0.0, - 3.454, - 12.302, - 18.851, - 18.851, - 18.851, - 18.851, - 13.734, + 6.77, + 24.113, + 31.876, + 31.876, + 31.876, + 31.876, + 18.986, 0.0, 0.0, 0.0, @@ -103196,13 +103200,13 @@ 0.0, 0.0, 0.0, - 3.346, - 11.993, - 18.851, - 18.851, - 18.851, - 18.851, - 14.152, + 6.558, + 23.506, + 31.876, + 31.876, + 31.876, + 31.876, + 19.805, 0.0, 0.0, 0.0, @@ -103220,13 +103224,13 @@ 0.0, 0.0, 0.0, - 3.234, - 11.72, - 18.851, - 18.851, - 18.851, - 18.851, - 14.538, + 6.338, + 22.971, + 31.876, + 31.876, + 31.876, + 31.876, + 20.56, 0.0, 0.0, 0.0, @@ -103244,13 +103248,13 @@ 0.0, 0.0, 0.0, - 3.034, - 10.708, - 17.948, - 18.851, - 18.851, - 18.851, - 16.652, + 5.947, + 20.988, + 31.876, + 31.876, + 31.876, + 31.876, + 22.934, 0.0, 0.0, 0.0, @@ -103268,13 +103272,13 @@ 0.0, 0.0, 0.0, - 3.645, - 13.021, - 18.851, - 18.851, - 18.851, - 18.851, - 12.825, + 7.144, + 25.521, + 31.876, + 31.876, + 31.876, + 31.876, + 17.204, 0.0, 0.0, 0.0, @@ -103292,13 +103296,13 @@ 0.0, 0.0, 0.0, - 3.887, - 13.749, - 18.851, - 18.851, - 18.851, - 18.851, - 11.855, + 7.619, + 26.948, + 31.876, + 31.876, + 31.876, + 31.876, + 15.302, 0.0, 0.0, 0.0, @@ -103316,13 +103320,13 @@ 0.0, 0.0, 0.0, - 3.855, - 13.535, - 18.851, - 18.851, - 18.851, - 18.851, - 12.101, + 7.555, + 26.529, + 31.876, + 31.876, + 31.876, + 31.876, + 15.785, 0.0, 0.0, 0.0, @@ -103340,13 +103344,13 @@ 0.0, 0.0, 0.0, - 3.753, - 13.1, - 18.851, - 18.851, - 18.851, - 18.851, - 12.637, + 7.357, + 25.677, + 31.876, + 31.876, + 31.876, + 31.876, + 16.836, 0.0, 0.0, 0.0, @@ -103364,13 +103368,13 @@ 0.0, 0.0, 0.0, - 3.482, - 12.217, - 18.851, - 18.851, - 18.851, - 18.851, - 13.793, + 6.825, + 23.945, + 31.876, + 31.876, + 31.876, + 31.876, + 19.1, 0.0, 0.0, 0.0, @@ -103388,13 +103392,13 @@ 0.0, 0.0, 0.0, - 3.776, - 13.336, - 18.851, - 18.851, - 18.851, - 18.851, - 12.379, + 7.401, + 26.138, + 31.876, + 31.876, + 31.876, + 31.876, + 16.33, 0.0, 0.0, 0.0, @@ -103412,13 +103416,13 @@ 0.0, 0.0, 0.0, - 3.691, - 12.834, - 18.851, - 18.851, - 18.851, - 18.851, - 12.966, + 7.235, + 25.155, + 31.876, + 31.876, + 31.876, + 31.876, + 17.479, 0.0, 0.0, 0.0, @@ -103436,13 +103440,13 @@ 0.0, 0.0, 0.0, - 3.187, - 11.486, - 18.851, - 18.851, - 18.851, - 18.851, - 14.818, + 6.246, + 22.512, + 31.876, + 31.876, + 31.876, + 31.876, + 21.11, 0.0, 0.0, 0.0, @@ -103460,13 +103464,13 @@ 0.0, 0.0, 0.0, - 3.852, - 13.695, - 18.851, - 18.851, - 18.851, - 18.851, - 11.944, + 7.55, + 26.843, + 31.876, + 31.876, + 31.876, + 31.876, + 15.477, 0.0, 0.0, 0.0, @@ -103484,13 +103488,13 @@ 0.0, 0.0, 0.0, - 3.834, - 13.504, - 18.851, - 18.851, - 18.851, - 18.851, - 12.153, + 7.514, + 26.469, + 31.876, + 31.876, + 31.876, + 31.876, + 15.886, 0.0, 0.0, 0.0, @@ -103508,13 +103512,13 @@ 0.0, 0.0, 0.0, - 3.748, - 13.416, - 18.851, - 18.851, - 18.851, - 18.851, - 12.328, + 7.346, + 26.295, + 31.876, + 31.876, + 31.876, + 31.876, + 16.228, 0.0, 0.0, 0.0, @@ -103532,13 +103536,13 @@ 0.0, 0.0, 0.0, - 3.484, - 12.516, - 18.851, - 18.851, - 18.851, - 18.851, - 13.491, + 6.829, + 24.531, + 31.876, + 31.876, + 31.876, + 31.876, + 18.509, 0.0, 0.0, 0.0, @@ -103556,13 +103560,13 @@ 0.0, 0.0, 0.0, - 3.77, - 13.175, - 18.851, - 18.851, - 18.851, - 18.851, - 12.546, + 7.389, + 25.824, + 31.876, + 31.876, + 31.876, + 31.876, + 16.657, 0.0, 0.0, 0.0, @@ -103580,13 +103584,13 @@ 0.0, 0.0, 0.0, - 2.755, - 11.338, - 16.325, - 18.851, - 18.851, - 18.851, - 17.923, + 5.401, + 22.222, + 31.876, + 31.876, + 31.876, + 31.876, + 22.246, 0.0, 0.0, 0.0, @@ -103604,13 +103608,13 @@ 0.0, 0.0, 0.0, - 3.337, - 12.282, - 18.851, - 18.851, - 18.851, - 18.851, - 13.872, + 6.541, + 24.072, + 31.876, + 31.876, + 31.876, + 31.876, + 19.256, 0.0, 0.0, 0.0, @@ -103628,13 +103632,13 @@ 0.0, 0.0, 0.0, - 3.378, - 12.45, - 18.851, - 18.851, - 18.851, - 18.851, - 13.663, + 6.62, + 24.403, + 31.876, + 31.876, + 31.876, + 31.876, + 18.846, 0.0, 0.0, 0.0, @@ -103652,13 +103656,13 @@ 0.0, 0.0, 0.0, - 3.48, - 12.447, - 18.851, - 18.851, - 18.851, - 18.851, - 13.564, + 6.821, + 24.395, + 31.876, + 31.876, + 31.876, + 31.876, + 18.653, 0.0, 0.0, 0.0, @@ -103676,13 +103680,13 @@ 0.0, 0.0, 0.0, - 1.556, - 10.935, - 18.851, - 18.851, - 18.851, - 18.851, - 17.0, + 3.05, + 21.433, + 31.876, + 31.876, + 31.876, + 31.876, + 25.386, 0.0, 0.0, 0.0, @@ -103700,13 +103704,13 @@ 0.0, 0.0, 0.0, - 3.367, - 12.545, - 18.851, - 18.851, - 18.851, - 18.851, - 13.578, + 6.6, + 24.589, + 31.876, + 31.876, + 31.876, + 31.876, + 18.68, 0.0, 0.0, 0.0, @@ -103724,13 +103728,13 @@ 0.0, 0.0, 0.0, - 3.149, - 12.729, - 18.851, - 18.851, - 18.851, - 18.851, - 13.613, + 6.173, + 24.948, + 31.876, + 31.876, + 31.876, + 31.876, + 18.748, 0.0, 0.0, 0.0, @@ -103748,15 +103752,15 @@ 0.0, 0.0, 0.0, - 2.778, - 1.847, - 8.435, - 18.851, - 13.645, - 18.851, - 18.851, - 5.174, - 7.898, + 5.444, + 3.621, + 16.532, + 31.876, + 26.745, + 31.876, + 31.876, + 10.141, + 15.479, 0.0, 0.0, 0.0, @@ -103772,14 +103776,14 @@ 0.0, 0.0, 0.0, - 3.677, - 14.074, - 18.851, - 18.851, - 18.851, - 18.851, - 3.482, - 8.258, + 7.207, + 27.584, + 31.876, + 31.876, + 31.876, + 31.876, + 6.826, + 8.252, 0.0, 0.0, 0.0, @@ -103796,13 +103800,13 @@ 0.0, 0.0, 0.0, - 3.711, - 13.85, - 18.851, - 18.851, - 18.851, - 18.851, - 11.93, + 7.273, + 27.146, + 31.876, + 31.876, + 31.876, + 31.876, + 15.45, 0.0, 0.0, 0.0, @@ -103820,13 +103824,13 @@ 0.0, 0.0, 0.0, - 3.531, - 13.45, - 18.851, - 18.851, - 18.851, - 18.851, - 12.511, + 6.92, + 26.362, + 31.876, + 31.876, + 31.876, + 31.876, + 16.587, 0.0, 0.0, 0.0, @@ -103844,13 +103848,13 @@ 0.0, 0.0, 0.0, - 3.52, - 13.506, - 18.851, - 18.851, - 18.851, - 18.851, - 12.465, + 6.9, + 26.471, + 31.876, + 31.876, + 31.876, + 31.876, + 16.498, 0.0, 0.0, 0.0, @@ -103868,13 +103872,13 @@ 0.0, 0.0, 0.0, - 3.33, - 13.067, - 18.851, - 18.851, - 18.851, - 18.851, - 13.094, + 6.528, + 25.611, + 31.876, + 31.876, + 31.876, + 31.876, + 17.731, 0.0, 0.0, 0.0, @@ -103892,13 +103896,13 @@ 0.0, 0.0, 0.0, - 3.268, - 13.056, - 18.851, - 18.851, - 18.851, - 18.851, - 13.168, + 6.405, + 25.59, + 31.876, + 31.876, + 31.876, + 31.876, + 17.875, 0.0, 0.0, 0.0, @@ -103916,13 +103920,13 @@ 0.0, 0.0, 0.0, - 3.36, - 13.327, - 18.851, - 18.851, - 18.851, - 18.851, - 12.804, + 6.586, + 26.121, + 31.876, + 31.876, + 31.876, + 31.876, + 17.162, 0.0, 0.0, 0.0, @@ -103940,13 +103944,13 @@ 0.0, 0.0, 0.0, - 3.319, - 13.269, - 18.851, - 18.851, - 18.851, - 18.851, - 12.903, + 6.505, + 26.008, + 31.876, + 31.876, + 31.876, + 31.876, + 17.357, 0.0, 0.0, 0.0, @@ -103964,13 +103968,13 @@ 0.0, 0.0, 0.0, - 3.239, - 12.822, - 18.851, - 18.851, - 18.851, - 18.851, - 13.431, + 6.348, + 25.13, + 31.876, + 31.876, + 31.876, + 31.876, + 18.391, 0.0, 0.0, 0.0, @@ -103988,13 +103992,13 @@ 0.0, 0.0, 0.0, - 2.779, - 11.229, - 18.851, - 18.851, - 18.851, - 18.851, - 15.484, + 5.446, + 22.009, + 31.876, + 31.876, + 31.876, + 31.876, + 22.414, 0.0, 0.0, 0.0, @@ -104012,13 +104016,13 @@ 0.0, 0.0, 0.0, - 2.947, - 12.59, - 18.851, - 18.851, - 18.851, - 18.851, - 13.954, + 5.776, + 24.677, + 31.876, + 31.876, + 31.876, + 31.876, + 19.416, 0.0, 0.0, 0.0, @@ -104036,13 +104040,13 @@ 0.0, 0.0, 0.0, - 2.99, - 13.139, - 18.851, - 18.851, - 18.851, - 18.851, - 13.363, + 5.86, + 25.752, + 31.876, + 31.876, + 31.876, + 31.876, + 18.258, 0.0, 0.0, 0.0, @@ -104060,13 +104064,13 @@ 0.0, 0.0, 0.0, - 3.025, - 13.33, - 18.851, - 18.851, - 18.851, - 18.851, - 13.137, + 5.928, + 26.126, + 31.876, + 31.876, + 31.876, + 31.876, + 17.815, 0.0, 0.0, 0.0, @@ -104084,13 +104088,13 @@ 0.0, 0.0, 0.0, - 2.705, - 13.08, - 18.851, - 18.851, - 18.851, - 18.851, - 13.706, + 5.302, + 25.638, + 31.876, + 31.876, + 31.876, + 31.876, + 18.93, 0.0, 0.0, 0.0, @@ -104108,13 +104112,13 @@ 0.0, 0.0, 0.0, - 2.399, - 12.819, - 18.851, - 18.851, - 18.851, - 18.851, - 14.273, + 4.702, + 25.126, + 31.876, + 31.876, + 31.876, + 31.876, + 20.041, 0.0, 0.0, 0.0, @@ -104132,13 +104136,13 @@ 0.0, 0.0, 0.0, - 2.198, - 12.689, - 18.851, - 18.851, - 18.851, - 18.851, - 14.604, + 4.308, + 24.871, + 31.876, + 31.876, + 31.876, + 31.876, + 20.69, 0.0, 0.0, 0.0, @@ -104156,13 +104160,13 @@ 0.0, 0.0, 0.0, - 2.06, - 12.858, - 18.851, - 18.851, - 18.851, - 18.851, - 14.573, + 4.037, + 25.202, + 31.876, + 31.876, + 31.876, + 31.876, + 20.629, 0.0, 0.0, 0.0, @@ -104180,13 +104184,13 @@ 0.0, 0.0, 0.0, - 1.987, - 12.871, - 18.851, - 18.851, - 18.851, - 18.851, - 14.633, + 3.894, + 25.228, + 31.876, + 31.876, + 31.876, + 31.876, + 20.748, 0.0, 0.0, 0.0, @@ -104204,13 +104208,13 @@ 0.0, 0.0, 0.0, - 1.475, - 11.555, - 18.851, - 18.851, - 18.851, - 18.851, - 16.462, + 2.891, + 22.647, + 31.876, + 31.876, + 31.876, + 31.876, + 24.331, 0.0, 0.0, 0.0, @@ -104228,13 +104232,13 @@ 0.0, 0.0, 0.0, - 1.351, - 11.402, - 18.851, - 18.851, - 18.851, - 18.851, - 16.738, + 2.649, + 22.347, + 31.876, + 31.876, + 31.876, + 31.876, + 24.873, 0.0, 0.0, 0.0, @@ -104252,13 +104256,13 @@ 0.0, 0.0, 0.0, - 1.324, - 11.784, - 18.851, - 18.851, - 18.851, - 18.851, - 16.383, + 2.595, + 23.098, + 31.876, + 31.876, + 31.876, + 31.876, + 24.176, 0.0, 0.0, 0.0, @@ -104276,13 +104280,13 @@ 0.0, 0.0, 0.0, - 1.601, - 13.573, - 18.851, - 18.851, - 18.851, - 18.851, - 14.318, + 3.137, + 26.602, + 31.876, + 31.876, + 31.876, + 31.876, + 20.13, 0.0, 0.0, 0.0, @@ -104300,13 +104304,13 @@ 0.0, 0.0, 0.0, - 1.49, - 13.482, - 18.851, - 18.851, - 18.851, - 18.851, - 14.519, + 2.921, + 26.425, + 31.876, + 31.876, + 31.876, + 31.876, + 20.523, 0.0, 0.0, 0.0, @@ -104324,13 +104328,13 @@ 0.0, 0.0, 0.0, - 1.308, - 13.061, - 18.851, - 18.851, - 18.851, - 18.851, - 15.123, + 2.563, + 25.599, + 31.876, + 31.876, + 31.876, + 31.876, + 21.707, 0.0, 0.0, 0.0, @@ -104348,13 +104352,13 @@ 0.0, 0.0, 0.0, - 1.209, - 12.94, - 18.851, - 18.851, - 18.851, - 18.851, - 15.342, + 2.37, + 25.363, + 31.876, + 31.876, + 31.876, + 31.876, + 22.137, 0.0, 0.0, 0.0, @@ -104372,13 +104376,13 @@ 0.0, 0.0, 0.0, - 1.133, - 12.7, - 18.851, - 18.851, - 18.851, - 18.851, - 15.658, + 2.221, + 24.891, + 31.876, + 31.876, + 31.876, + 31.876, + 22.756, 0.0, 0.0, 0.0, @@ -104396,14 +104400,13 @@ 0.0, 0.0, 0.0, - 0.963, - 12.431, - 18.851, - 18.851, - 18.851, - 17.887, - 12.662, - 4.4, + 1.887, + 24.365, + 31.876, + 31.876, + 31.876, + 31.876, + 23.617, 0.0, 0.0, 0.0, @@ -104420,14 +104423,14 @@ 0.0, 0.0, 0.0, - 0.551, - 11.897, - 18.851, - 18.851, - 18.851, - 18.851, - 17.044, 0.0, + 1.08, + 23.317, + 31.876, + 31.876, + 31.876, + 31.876, + 25.472, 0.0, 0.0, 0.0, @@ -104444,14 +104447,14 @@ 0.0, 0.0, 0.0, - 0.725, - 13.392, - 18.851, - 18.851, - 18.851, - 18.851, - 15.374, 0.0, + 1.421, + 26.249, + 31.876, + 31.876, + 31.876, + 31.876, + 22.199, 0.0, 0.0, 0.0, @@ -104468,14 +104471,14 @@ 0.0, 0.0, 0.0, - 0.601, - 12.924, - 18.851, - 18.851, - 18.851, - 18.851, - 15.967, 0.0, + 1.177, + 25.33, + 31.876, + 31.876, + 31.876, + 31.876, + 23.362, 0.0, 0.0, 0.0, @@ -104492,14 +104495,14 @@ 0.0, 0.0, 0.0, - 0.43, - 12.183, - 18.851, - 18.851, - 18.851, - 18.851, - 16.878, 0.0, + 0.843, + 23.879, + 31.876, + 31.876, + 31.876, + 31.876, + 25.147, 0.0, 0.0, 0.0, @@ -104516,14 +104519,14 @@ 0.0, 0.0, 0.0, - 0.345, - 11.922, - 18.851, - 18.851, - 18.851, - 18.851, - 17.225, 0.0, + 0.677, + 23.366, + 31.876, + 31.876, + 31.876, + 31.876, + 25.826, 0.0, 0.0, 0.0, @@ -104540,14 +104543,14 @@ 0.0, 0.0, 0.0, - 0.317, - 11.959, - 18.851, - 18.851, - 18.851, - 18.851, - 17.215, 0.0, + 0.622, + 23.439, + 31.876, + 31.876, + 31.876, + 31.876, + 25.808, 0.0, 0.0, 0.0, @@ -104564,14 +104567,14 @@ 0.0, 0.0, 0.0, - 0.123, - 11.7, - 18.851, - 18.851, - 18.851, - 18.851, - 17.668, 0.0, + 0.24, + 22.932, + 31.876, + 31.876, + 31.876, + 31.876, + 26.697, 0.0, 0.0, 0.0, @@ -104588,14 +104591,14 @@ 0.0, 0.0, 0.0, - 0.168, - 11.396, - 18.851, - 18.851, - 18.851, - 18.851, - 17.927, 0.0, + 0.33, + 22.336, + 31.876, + 31.876, + 31.876, + 31.876, + 27.203, 0.0, 0.0, 0.0, @@ -104613,13 +104616,13 @@ 0.0, 0.0, 0.0, - 11.7, - 18.851, - 18.851, - 18.851, - 18.851, - 17.792, 0.0, + 22.931, + 31.876, + 31.876, + 31.876, + 31.876, + 26.938, 0.0, 0.0, 0.0, @@ -104637,14 +104640,14 @@ 0.0, 0.0, 0.0, - 9.132, - 18.108, - 18.851, - 18.851, - 18.851, - 18.851, - 2.251, 0.0, + 17.899, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 0.094, 0.0, 0.0, 0.0, @@ -104661,14 +104664,14 @@ 0.0, 0.0, 0.0, - 9.236, - 11.188, - 18.851, - 18.851, - 18.851, - 18.851, - 9.067, 0.0, + 18.102, + 21.929, + 31.876, + 31.876, + 31.876, + 31.876, + 9.838, 0.0, 0.0, 0.0, @@ -104685,14 +104688,14 @@ 0.0, 0.0, 0.0, - 3.999, - 11.465, - 18.851, - 18.851, - 18.851, - 18.851, - 14.027, 0.0, + 7.838, + 22.472, + 31.876, + 31.876, + 31.876, + 31.876, + 19.559, 0.0, 0.0, 0.0, @@ -104709,14 +104712,14 @@ 0.0, 0.0, 0.0, - 0.81, - 18.851, - 15.467, - 18.851, - 18.851, - 18.851, - 13.214, 0.0, + 1.588, + 31.876, + 30.315, + 31.876, + 31.876, + 31.876, + 17.966, 0.0, 0.0, 0.0, @@ -104733,14 +104736,13 @@ 0.0, 0.0, 0.0, - 10.097, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.544, 0.0, + 19.789, + 31.876, + 31.876, + 31.876, + 31.876, + 30.08, 0.0, 0.0, 0.0, @@ -104757,14 +104759,14 @@ 0.0, 0.0, 0.0, - 11.955, - 18.851, - 18.851, - 18.851, - 18.851, - 17.537, 0.0, 0.0, + 23.431, + 31.876, + 31.876, + 31.876, + 31.876, + 26.438, 0.0, 0.0, 0.0, @@ -104781,14 +104783,14 @@ 0.0, 0.0, 0.0, - 11.253, - 18.851, - 18.851, - 18.851, - 18.851, - 18.238, 0.0, 0.0, + 22.056, + 31.876, + 31.876, + 31.876, + 31.876, + 27.813, 0.0, 0.0, 0.0, @@ -104805,16 +104807,16 @@ 0.0, 0.0, 0.0, - 3.951, - 12.688, - 18.851, - 18.851, - 18.851, - 14.259, - 10.074, - 3.987, 0.0, 0.0, + 7.745, + 24.869, + 31.876, + 31.876, + 31.876, + 27.948, + 19.744, + 1.439, 0.0, 0.0, 0.0, @@ -104829,16 +104831,15 @@ 0.0, 0.0, 0.0, - 9.8, - 9.084, - 18.851, - 18.851, - 18.851, - 6.681, - 18.851, - 3.926, 0.0, 0.0, + 19.208, + 17.805, + 31.876, + 31.876, + 31.876, + 13.095, + 31.637, 0.0, 0.0, 0.0, @@ -104853,16 +104854,15 @@ 0.0, 0.0, 0.0, - 10.305, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.336, 0.0, 0.0, 0.0, + 20.198, + 31.876, + 31.876, + 31.876, + 31.876, + 29.671, 0.0, 0.0, 0.0, @@ -104877,17 +104877,16 @@ 0.0, 0.0, 0.0, - 9.906, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.735, 0.0, 0.0, 0.0, 0.0, + 19.415, + 31.876, + 31.876, + 31.876, + 31.876, + 30.454, 0.0, 0.0, 0.0, @@ -104901,18 +104900,18 @@ 0.0, 0.0, 0.0, - 3.234, - 12.32, - 16.537, - 18.851, - 18.851, - 18.851, - 16.251, 0.0, 0.0, 0.0, 0.0, 0.0, + 6.339, + 24.146, + 31.876, + 31.876, + 31.876, + 31.876, + 19.383, 0.0, 0.0, 0.0, @@ -104925,18 +104924,17 @@ 0.0, 0.0, 0.0, - 10.131, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 0.509, 0.0, 0.0, 0.0, 0.0, 0.0, + 19.857, + 31.876, + 31.876, + 31.876, + 31.876, + 30.012, 0.0, 0.0, 0.0, @@ -104949,19 +104947,19 @@ 0.0, 0.0, 0.0, - 3.266, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 7.374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 6.402, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 11.591, 0.0, 0.0, 0.0, @@ -104973,19 +104971,19 @@ 0.0, 0.0, 0.0, - 3.264, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 7.377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 6.397, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 11.596, 0.0, 0.0, 0.0, @@ -104997,19 +104995,19 @@ 0.0, 0.0, 0.0, - 3.596, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 7.044, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 7.048, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 10.944, 0.0, 0.0, 0.0, @@ -105021,19 +105019,19 @@ 0.0, 0.0, 0.0, - 2.633, - 10.687, - 16.885, - 18.851, - 18.851, - 18.851, - 18.138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 5.16, + 20.946, + 31.876, + 31.876, + 31.876, + 31.876, + 23.763, 0.0, 0.0, 0.0, @@ -105045,19 +105043,19 @@ 0.0, 0.0, 0.0, - 2.68, - 11.332, - 18.851, - 18.851, - 18.851, - 18.851, - 15.48, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 5.253, + 22.21, + 31.876, + 31.876, + 31.876, + 31.876, + 22.407, 0.0, 0.0, 0.0, @@ -105069,19 +105067,19 @@ 0.0, 0.0, 0.0, - 8.19, - 18.751, - 18.851, - 18.851, - 18.851, - 18.851, - 2.55, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 16.053, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 1.94, 0.0, 0.0, 0.0, @@ -105093,20 +105091,20 @@ 0.0, 0.0, 0.0, - 0.499, - 5.828, - 8.71, - 0.396, - 2.355, - 0.866, - 1.092, - 3.198, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 0.979, + 11.424, + 17.071, + 0.776, + 4.615, + 1.697, + 2.141, + 6.267, 0.0, 0.0, 0.0, @@ -105117,19 +105115,19 @@ 0.0, 0.0, 0.0, - 7.189, - 17.92, - 18.851, - 18.851, - 18.851, - 18.851, - 4.383, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 14.09, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 3.902, 0.0, 0.0, 0.0, @@ -105141,20 +105139,20 @@ 0.0, 0.0, 0.0, - 1.51, - 3.272, - 2.873, - 4.69, - 16.151, - 15.447, - 18.851, - 14.899, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 2.96, + 6.413, + 5.631, + 9.193, + 31.656, + 30.277, + 31.876, + 29.202, 0.0, 0.0, 0.0, @@ -105165,20 +105163,20 @@ 0.0, 0.0, 0.0, - 6.901, - 0.148, - 18.851, - 14.091, - 17.707, - 18.851, - 8.352, - 0.169, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 13.526, + 0.29, + 31.876, + 27.618, + 31.876, + 31.876, + 16.369, + 0.332, 0.0, 0.0, 0.0, @@ -105189,19 +105187,19 @@ 0.0, 0.0, 0.0, - 7.175, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 3.465, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 14.064, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 3.929, 0.0, 0.0, 0.0, @@ -105213,19 +105211,19 @@ 0.0, 0.0, 0.0, - 7.157, - 18.605, - 18.851, - 18.851, - 18.851, - 18.851, - 3.729, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 14.028, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 3.965, 0.0, 0.0, 0.0, @@ -105237,19 +105235,19 @@ 0.0, 0.0, 0.0, - 6.733, - 18.721, - 18.851, - 18.851, - 18.851, - 18.851, - 4.037, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 13.197, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 4.796, 0.0, 0.0, 0.0, @@ -105261,19 +105259,19 @@ 0.0, 0.0, 0.0, - 6.765, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 3.875, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 13.26, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 4.733, 0.0, 0.0, 0.0, @@ -105285,19 +105283,19 @@ 0.0, 0.0, 0.0, - 6.573, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 4.067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 12.884, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 5.109, 0.0, 0.0, 0.0, @@ -105309,19 +105307,19 @@ 0.0, 0.0, 0.0, - 6.179, - 18.365, - 18.851, - 18.851, - 18.851, - 18.851, - 4.948, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 12.11, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 5.882, 0.0, 0.0, 0.0, @@ -105333,20 +105331,20 @@ 0.0, 0.0, 0.0, - 5.742, - 18.277, - 18.851, - 15.173, - 18.851, - 0.927, - 7.954, - 2.661, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 11.255, + 31.876, + 31.876, + 29.739, + 31.876, + 1.816, + 15.591, + 5.215, 0.0, 0.0, 0.0, @@ -105357,19 +105355,19 @@ 0.0, 0.0, 0.0, - 6.041, - 18.75, - 18.851, - 18.851, - 18.851, - 18.851, - 4.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 11.84, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 6.153, 0.0, 0.0, 0.0, @@ -105381,19 +105379,19 @@ 0.0, 0.0, 0.0, - 6.035, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 4.605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 11.829, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 6.164, 0.0, 0.0, 0.0, @@ -105405,19 +105403,19 @@ 0.0, 0.0, 0.0, - 5.524, - 8.389, - 18.851, - 18.851, - 18.851, - 18.851, - 15.578, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 10.827, + 16.443, + 31.876, + 31.876, + 31.876, + 31.876, + 22.599, 0.0, 0.0, 0.0, @@ -105429,20 +105427,20 @@ 0.0, 0.0, 0.0, - 4.825, - 9.277, - 18.851, - 18.851, - 18.851, - 18.851, - 2.663, - 12.727, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 9.456, + 18.183, + 31.876, + 31.876, + 31.876, + 31.876, + 5.219, + 17.011, 0.0, 0.0, 0.0, @@ -105453,19 +105451,19 @@ 0.0, 0.0, 0.0, - 5.363, - 18.736, - 18.851, - 18.851, - 18.851, - 18.851, - 5.392, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 10.511, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 7.482, 0.0, 0.0, 0.0, @@ -105477,19 +105475,19 @@ 0.0, 0.0, 0.0, - 5.53, - 18.741, - 18.851, - 18.851, - 18.851, - 18.851, - 5.22, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 10.839, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 7.154, 0.0, 0.0, 0.0, @@ -105501,20 +105499,20 @@ 0.0, 0.0, 0.0, - 3.827, - 2.598, - 18.851, - 18.851, - 18.851, - 18.851, - 18.851, - 4.215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 7.502, + 5.092, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 5.4, 0.0, 0.0, 0.0, @@ -105525,19 +105523,19 @@ 0.0, 0.0, 0.0, - 5.081, - 18.536, - 18.851, - 18.851, - 18.851, - 18.851, - 5.874, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 9.959, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 8.034, 0.0, 0.0, 0.0, @@ -105549,19 +105547,19 @@ 0.0, 0.0, 0.0, - 4.814, - 17.934, - 18.851, - 18.851, - 18.851, - 18.851, - 6.744, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 9.435, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 8.558, 0.0, 0.0, 0.0, @@ -105573,20 +105571,20 @@ 0.0, 0.0, 0.0, - 1.534, - 8.021, - 12.313, - 18.851, - 18.851, - 18.851, - 18.851, - 7.623, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 3.006, + 15.722, + 24.133, + 31.876, + 31.876, + 31.876, + 31.876, + 7.008, 0.0, 0.0, 0.0, @@ -105597,19 +105595,19 @@ 0.0, 0.0, 0.0, - 4.269, - 16.845, - 18.851, - 18.851, - 18.851, - 18.851, - 8.377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 8.368, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.625, 0.0, 0.0, 0.0, @@ -105621,19 +105619,19 @@ 0.0, 0.0, 0.0, - 4.358, - 17.374, - 18.851, - 18.851, - 18.851, - 18.851, - 7.759, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 8.541, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.451, 0.0, 0.0, 0.0, @@ -105645,19 +105643,19 @@ 0.0, 0.0, 0.0, - 4.207, - 16.955, - 18.851, - 18.851, - 18.851, - 18.851, - 8.329, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 8.246, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.747, 0.0, 0.0, 0.0, @@ -105669,19 +105667,19 @@ 0.0, 0.0, 0.0, - 4.637, - 18.68, - 18.851, - 18.851, - 18.851, - 18.851, - 6.175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 9.088, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 8.905, 0.0, 0.0, 0.0, @@ -105693,19 +105691,19 @@ 0.0, 0.0, 0.0, - 4.53, - 18.461, - 18.851, - 18.851, - 18.851, - 18.851, - 6.501, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 8.878, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.115, 0.0, 0.0, 0.0, @@ -105717,19 +105715,21 @@ 0.0, 0.0, 0.0, - 4.131, - 17.404, - 18.851, - 18.851, - 18.851, - 18.851, - 7.956, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, + 8.098, + 31.876, + 31.876, + 31.876, + 31.876, + 31.876, + 9.895, + 0.0, + 0.0, 0.0, 0.0, 0.0, @@ -105741,18 +105741,18 @@ 0.0, 0.0, 0.0, - 0.664, - 4.436, - 6.085, - 12.912, - 18.851, - 18.851, - 16.004, - 8.333, 0.0, 0.0, 0.0, 0.0, + 1.302, + 8.694, + 11.926, + 25.307, + 31.876, + 31.876, + 31.369, + 16.333, 0.0, 0.0, 0.0, @@ -105765,18 +105765,18 @@ 0.0, 0.0, 0.0, - 0.261, - 10.678, - 17.13, - 13.035, - 5.549, - 5.104, - 1.413, - 3.449, 0.0, 0.0, 0.0, 0.0, + 0.511, + 20.929, + 31.876, + 25.548, + 10.876, + 10.004, + 2.77, + 6.76, 0.0, 0.0, 0.0, @@ -105789,18 +105789,18 @@ 0.0, 0.0, 0.0, - 0.572, - 0.224, - 6.035, - 2.79, - 4.243, - 1.614, - 3.734, - 15.73, 0.0, 0.0, 0.0, 0.0, + 1.121, + 0.44, + 11.828, + 5.469, + 8.316, + 3.164, + 7.318, + 30.83, 0.0, 0.0, 0.0, @@ -105813,18 +105813,18 @@ 0.0, 0.0, 0.0, - 3.24, - 1.373, - 8.698, - 1.74, - 5.341, - 5.426, - 4.576, - 3.196, 0.0, 0.0, 0.0, 0.0, + 6.351, + 2.691, + 17.047, + 3.41, + 10.469, + 10.636, + 8.969, + 6.265, 0.0, 0.0, 0.0, @@ -105837,13 +105837,17 @@ 0.0, 0.0, 0.0, - 3.309, - 15.807, - 18.851, - 18.851, - 18.851, - 18.851, - 10.376, + 0.0, + 0.0, + 0.0, + 0.0, + 6.485, + 30.981, + 31.876, + 31.876, + 31.876, + 31.876, + 12.403, 0.0, 0.0, 0.0, @@ -114617,8 +114621,8 @@ 0.0, 0.0 ], - "lifecycle_om_cost_after_tax": 6516.0, - "lcoe_per_kwh": 0.0555 + "lifecycle_om_cost_after_tax": 12772.0, + "lcoe_per_kwh": 0.0283 }, { "electric_to_grid_series_kw": [ @@ -202264,159 +202268,159 @@ ], "Financial": { "net_present_cost": 0.0, - "lcc": 2.4262768171e6, - "year_one_om_costs_before_tax": 1306.6667, + "lcc": 2.428401357e6, + "year_one_om_costs_before_tax": 1946.6667, "lifecycle_generation_tech_capital_costs": 45554.4483, "lifecycle_offgrid_other_annual_costs_after_tax": 0.0, - "initial_capital_costs_after_incentives": 84337.6523, + "initial_capital_costs_after_incentives": 111136.229, "lifecycle_MG_upgrade_and_fuel_cost": 0.0, - "lifecycle_elecbill_after_tax": 2.2629262389e6, + "lifecycle_elecbill_after_tax": 2.2304499547e6, "lifecycle_offgrid_other_capital_costs": 0.0, - "om_and_replacement_present_cost_after_tax": 30442.3327, - "replacements_future_cost_after_tax": 53002.3876, + "om_and_replacement_present_cost_after_tax": 48907.9073, + "replacements_future_cost_after_tax": 89626.194, "developer_annual_free_cashflows": [], - "initial_capital_costs": 156372.6302, - "lifecycle_om_costs_after_tax_bau": 4691.7871, + "initial_capital_costs": 207302.2781, + "lifecycle_om_costs_after_tax_bau": 10947.5032, "offtaker_annual_free_cashflows_bau": [ 0.0, - -199051.79, - -203630.71, - -208314.96, - -213106.97, - -218009.22, - -223024.23, - -228154.61, - -233403.01, - -238772.15, - -244264.8, - -249883.8, - -255632.06, - -261512.55, - -267528.32, - -273682.47, - -279978.2, - -286418.75, - -293007.46, - -299747.74, - -306643.08, - -313697.03, - -320913.26, - -328295.48, - -335847.53, - -343573.31 + -200094.22, + -204698.09, + -209407.89, + -214226.05, + -219155.08, + -224197.53, + -229355.99, + -234633.15, + -240031.73, + -245554.53, + -251204.41, + -256984.28, + -262897.15, + -268946.07, + -275134.17, + -281464.66, + -287940.81, + -294565.97, + -301343.57, + -308277.12, + -315370.21, + -322626.51, + -330049.77, + -337643.84, + -345412.65 ], - "lifecycle_capital_costs": 102007.8979, + "lifecycle_capital_costs": 141016.3332, "lifecycle_production_incentive_after_tax": 0.0, - "internal_rate_of_return": 0.22, - "lifecycle_elecbill_after_tax_bau": 2.5149377808e6, + "internal_rate_of_return": 0.19, + "lifecycle_elecbill_after_tax_bau": 2.5219879993e6, "lifecycle_chp_standby_cost_after_tax": 0.0, - "lifecycle_om_costs_before_tax_bau": 6340.2528, - "lifecycle_om_costs_after_tax": 12772.087, - "replacements_present_cost_after_tax": 17670.2456, - "lifecycle_outage_cost": 48626.9251, - "lifecycle_storage_capital_costs": 56453.4496, + "lifecycle_om_costs_before_tax_bau": 14793.9232, + "lifecycle_om_costs_after_tax": 19027.8031, + "replacements_present_cost_after_tax": 29880.1042, + "lifecycle_outage_cost": 38003.691, + "lifecycle_storage_capital_costs": 95461.8849, "offtaker_annual_free_cashflows": [ - -156372.63, - -103968.28, - -183107.98, - -187567.89, - -192060.03, - -196604.88, - -201136.0, - -205770.73, - -210658.07, - -215654.2, - -259838.12, - -225693.32, - -230886.8, - -236199.8, - -241635.06, - -247195.4, - -252883.69, - -258702.89, - -264656.0, - -270746.1, - -276976.35, - -283349.98, - -289870.28, - -296540.62, - -303364.47, - -310345.35 + -207302.28, + -77281.59, + -180429.5, + -184999.06, + -189554.76, + -194129.64, + -198609.75, + -203191.87, + -208126.27, + -213168.04, + -284399.42, + -223093.9, + -228228.84, + -233481.98, + -238856.04, + -244353.8, + -249978.11, + -255731.88, + -261618.1, + -267639.81, + -273800.13, + -280102.26, + -286549.45, + -293145.04, + -299892.46, + -306795.2 ], - "year_one_om_costs_before_tax_bau": 480.0, - "lifecycle_emissions_cost_health_bau": 58230.94, + "year_one_om_costs_before_tax_bau": 1120.0, + "lifecycle_emissions_cost_health_bau": 58407.13, "lifecycle_fuel_costs_after_tax_bau": 0.0, - "developer_om_and_replacement_present_cost_after_tax": 30442.3327, + "developer_om_and_replacement_present_cost_after_tax": 48907.9073, "offtaker_discounted_annual_free_cashflows": [ - -156372.63, - -96000.26, - -156117.06, - -147663.49, - -139612.13, - -131962.95, - -124657.69, - -117756.37, - -111314.17, - -105220.85, - -117062.64, - -93887.05, - -88686.52, - -83774.07, - -79133.72, - -74750.4, - -70609.89, - -66698.72, - -63004.2, - -59514.33, - -56217.76, - -53103.8, - -50162.32, - -47383.78, - -44759.14, - -42279.89 + -207302.28, + -71358.81, + -153833.4, + -145641.17, + -137791.01, + -130301.55, + -123092.0, + -116280.56, + -109976.34, + -104007.82, + -128128.03, + -92805.7, + -87665.57, + -82810.12, + -78223.61, + -73891.12, + -69798.59, + -65932.74, + -62281.0, + -58831.52, + -55573.09, + -52495.13, + -49587.65, + -46841.2, + -44246.87, + -41796.23 ], - "lifecycle_emissions_cost_climate_bau": 349351.91, - "lcc_bau": 2.5855444392e6, - "lifecycle_capital_costs_plus_om_after_tax": 114779.9849, - "lifecycle_emissions_cost_health": 53193.98, - "lifecycle_om_costs_before_tax": 17259.5771, + "lifecycle_emissions_cost_climate_bau": 350494.22, + "lcc_bau": 2.5988503738e6, + "lifecycle_capital_costs_plus_om_after_tax": 160044.1364, + "lifecycle_emissions_cost_health": 53261.03, + "lifecycle_om_costs_before_tax": 25713.2475, "annualized_payment_to_third_party": 0.0, - "lifecycle_emissions_cost_climate": 318712.32, + "lifecycle_emissions_cost_climate": 320479.13, "lifecycle_fuel_costs_after_tax": 0.0, "lifecycle_chp_standby_cost_after_tax_bau": 0.0, "lifecycle_production_incentive_after_tax_bau": 0.0, "offtaker_discounted_annual_free_cashflows_bau": [ 0.0, - -183796.67, - -173614.65, - -163996.7, - -154911.56, - -146329.73, - -138223.32, - -130565.99, - -123332.86, - -116500.44, - -110046.52, - -103950.14, - -98191.49, - -92751.85, - -87613.57, - -82759.93, - -78175.18, - -73844.42, - -69753.57, - -65889.35, - -62239.2, - -58791.27, - -55534.34, - -52457.84, - -49551.77, - -46806.7 + -184759.21, + -174524.69, + -164857.1, + -155725.04, + -147098.85, + -138950.49, + -131253.5, + -123982.88, + -117115.01, + -110627.57, + -104499.5, + -98710.89, + -93242.94, + -88077.87, + -83198.92, + -78590.23, + -74236.84, + -70124.59, + -66240.14, + -62570.87, + -59104.84, + -55830.82, + -52738.16, + -49816.81, + -47057.28 ], - "npv": 159267.62, + "npv": 170449.02, "lifecycle_MG_upgrade_and_fuel_cost_bau": 0.0, - "simple_payback_years": 3.95, - "year_one_om_costs_after_tax": 966.9333, + "simple_payback_years": 4.45, + "year_one_om_costs_after_tax": 1440.5333, "lifecycle_outage_cost_bau": 65914.3623 } } diff --git a/test/scenarios/ac_dc_pvs.json b/test/scenarios/ac_dc_pvs.json index 153d748ec..3e0a9c8c6 100644 --- a/test/scenarios/ac_dc_pvs.json +++ b/test/scenarios/ac_dc_pvs.json @@ -34,7 +34,7 @@ { "name": "ground", "dc_coupled_with_storage": true, - "existing_kw": 0.0, + "existing_kw": 40.0, "installed_cost_per_kw": 1600.0, "om_cost_per_kw": 16.0, "macrs_option_years": 5, From c7ec875f5f2fa329a7b00c08d453be07c0d8ef1c Mon Sep 17 00:00:00 2001 From: Hallie Dunham <70401017+hdunham@users.noreply.github.com> Date: Wed, 14 Aug 2024 16:52:15 -0600 Subject: [PATCH 8/8] Update ac_dc_pvs_results.json --- test/ac_dc_pvs_results.json | 1044 ++++++++++++++++++----------------- 1 file changed, 523 insertions(+), 521 deletions(-) diff --git a/test/ac_dc_pvs_results.json b/test/ac_dc_pvs_results.json index 33631c1a4..9ebecfc26 100644 --- a/test/ac_dc_pvs_results.json +++ b/test/ac_dc_pvs_results.json @@ -1,51 +1,51 @@ { "Site": { "annual_emissions_from_fuelburn_tonnes_PM25": 0.0, - "lifecycle_emissions_tonnes_CO2_bau": 10653.83, - "annual_emissions_tonnes_CO2_bau": 495.07, - "lifecycle_emissions_reduction_CO2_fraction": 0.08563586991720352, - "lifecycle_emissions_tonnes_PM25": 0.54, - "lifecycle_emissions_tonnes_PM25_bau": 0.6, + "lifecycle_emissions_tonnes_CO2_bau": 911.04, + "annual_emissions_tonnes_CO2_bau": 36.4416, + "lifecycle_emissions_reduction_CO2_fraction": 0.09596724622409548, + "lifecycle_emissions_tonnes_PM25": 0.36, + "lifecycle_emissions_tonnes_PM25_bau": 0.39, "annual_emissions_from_fuelburn_tonnes_NOx_bau": 0.0, - "lifecycle_emissions_tonnes_SO2": 0.63, + "lifecycle_emissions_tonnes_SO2": 0.33, "lifecycle_emissions_from_fuelburn_tonnes_PM25": 0.0, - "annual_emissions_tonnes_SO2_bau": 0.03, + "annual_emissions_tonnes_SO2_bau": 0.0148, "annual_emissions_from_fuelburn_tonnes_NOx": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_SO2_bau": 0.0, - "annual_emissions_tonnes_NOx": 0.13, + "annual_emissions_tonnes_NOx": 0.086, "renewable_electricity_fraction_bau": 0.040913, - "annual_emissions_tonnes_SO2": 0.03, - "annual_emissions_tonnes_PM25": 0.03, + "annual_emissions_tonnes_SO2": 0.0132, + "annual_emissions_tonnes_PM25": 0.0144, "total_renewable_energy_fraction_bau": 0.040913, "lifecycle_emissions_from_fuelburn_tonnes_CO2_bau": 0.0, - "lifecycle_emissions_tonnes_NOx": 2.84, + "lifecycle_emissions_tonnes_NOx": 2.15, "annual_emissions_from_fuelburn_tonnes_CO2": 0.0, "annual_emissions_from_fuelburn_tonnes_CO2_bau": 0.0, - "annual_emissions_tonnes_PM25_bau": 0.03, + "annual_emissions_tonnes_PM25_bau": 0.015600000000000001, "total_renewable_energy_fraction": 0.179195, "annual_emissions_from_fuelburn_tonnes_SO2": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_NOx_bau": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_SO2": 0.0, "annual_renewable_electricity_kwh_bau": 45938.78, "renewable_electricity_fraction": 0.179195, - "lifecycle_emissions_tonnes_NOx_bau": 3.11, - "lifecycle_emissions_tonnes_SO2_bau": 0.69, + "lifecycle_emissions_tonnes_NOx_bau": 2.38, + "lifecycle_emissions_tonnes_SO2_bau": 0.37, "lifecycle_emissions_from_fuelburn_tonnes_CO2": 0.0, "annual_emissions_from_fuelburn_tonnes_PM25_bau": 0.0, "annual_emissions_from_fuelburn_tonnes_SO2_bau": 0.0, "lifecycle_emissions_from_fuelburn_tonnes_PM25_bau": 0.0, - "annual_emissions_tonnes_NOx_bau": 0.14, + "annual_emissions_tonnes_NOx_bau": 0.09519999999999999, "lifecycle_emissions_from_fuelburn_tonnes_NOx": 0.0, "annual_renewable_electricity_kwh": 201205.81, - "annual_emissions_tonnes_CO2": 452.67, - "lifecycle_emissions_tonnes_CO2": 9741.48 + "lifecycle_emissions_tonnes_CO2": 823.61, + "annual_emissions_tonnes_CO2": 32.9444 }, "Outages": { - "expected_outage_cost": 38003.69101517182, + "expected_outage_cost": 37487.73833876885, "electric_storage_microgrid_upgraded": true, "unserved_load_per_outage_kwh": [ [ - 2934.9 + 2895.06 ] ], "pv_microgrid_size_kw": 121.6667, @@ -1015,32 +1015,32 @@ ], "pv_microgrid_upgrade_cost": 0.0, "max_outage_cost_per_outage_duration": [ - 38003.69101517182 + 37487.73833876885 ], "unserved_load_series_kw": [ [ [ - 16.553543950349997 + 8.029132914089132e-13 ] ], [ [ - 16.553543950349997 + 8.029132914089132e-13 ] ], [ [ - 16.553543950349997 + 8.029132914089132e-13 ] ], [ [ - 35.7032525087 + 3.8269466130999987 ] ], [ [ - 4.4985749249905425 + 4.498574924990535 ] ], [ @@ -1050,32 +1050,32 @@ ], [ [ - 38.954240578951485 + 7.0779346833514865 ] ], [ [ - 25.215782278447378 + 0.0 ] ], [ [ - 18.46897149460871 + 16.224439984163155 ] ], [ [ - 18.526527228529417 + 18.526527228529428 ] ], [ [ - 38.47081039497125 + 38.47081039497126 ] ], [ [ - 57.809153953554144 + 57.80915395355413 ] ], [ @@ -1105,7 +1105,7 @@ ], [ [ - 43.99892355189999 + 75.87522944749999 ] ], [ @@ -1165,12 +1165,12 @@ ], [ [ - 8.992402886784191 + 8.99240288678419 ] ], [ [ - 15.780079410714663 + 15.780079410714672 ] ], [ @@ -1180,7 +1180,7 @@ ], [ [ - 48.483197172743154 + 48.48319717274314 ] ], [ @@ -1190,7 +1190,7 @@ ], [ [ - 25.114796075762854 + 25.114796075762865 ] ], [ @@ -1200,12 +1200,12 @@ ], [ [ - 24.598784868702396 + 56.475090764302394 ] ], [ [ - 88.85549108487504 + 88.85549108487506 ] ], [ @@ -1285,12 +1285,12 @@ ], [ [ - 3.552713678800501e-15 + 0.0 ] ], [ [ - 3.552713678800501e-15 + 0.0 ] ], [ @@ -1315,17 +1315,17 @@ ], [ [ - 13.438481755355632 + 0.0 ] ], [ [ - 0.9567510014497458 + 32.83305689704975 ] ], [ [ - 64.50725185406851 + 32.630945958468516 ] ], [ @@ -1350,12 +1350,12 @@ ], [ [ - 15.938152947799999 + 3.907985046680551e-13 ] ], [ [ - 15.938152947799999 + 7.411342873742273 ] ], [ @@ -1400,37 +1400,37 @@ ], [ [ - 30.509936857109146 + 30.509936857109135 ] ], [ [ - 25.36579835636666 + 25.365798356366657 ] ], [ [ - 4.641551207752826 + 36.51785710335283 ] ], [ [ - 21.587254811716633 + 21.58725481171663 ] ], [ [ - 13.769712185780705 + 13.76971218578071 ] ], [ [ - 13.496360661803237 + 13.496360661803246 ] ], [ [ - 19.900055645888102 + 19.900055645888116 ] ], [ @@ -1440,7 +1440,7 @@ ], [ [ - 21.53986100962777 + 53.41616690522777 ] ], [ @@ -1465,7 +1465,7 @@ ], [ [ - 63.96130186104654 + 75.3876981175 ] ], [ @@ -1502,482 +1502,482 @@ "soc_series_fraction": [ [ [ - 1.0 + 0.917 ] ], [ [ - 1.0 + 0.834 ] ], [ [ - 1.0 + 0.751 ] ], [ [ - 1.0 + 0.591 ] ], [ [ - 0.84 + 0.431 ] ], [ [ - 0.707 + 0.298 ] ], [ [ - 0.707 + 0.138 ] ], [ [ - 0.707 + 0.011 ] ], [ [ - 0.707 + 0.0 ] ], [ [ - 0.707 + -0.0 ] ], [ [ - 0.707 + 0.0 ] ], [ [ - 0.707 + -0.0 ] ], [ [ - 0.707 + -0.0 ] ], [ [ - 0.707 + 0.0 ] ], [ [ - 0.707 + 0.0 ] ], [ [ - 0.707 + 0.0 ] ], [ [ - 0.707 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + -0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + -0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + 0.0 ] ], [ [ - 0.547 + -0.0 ] ], [ [ - 0.547 + -0.0 ] ], [ [ - 0.547 + -0.0 ] ], [ [ - 0.387 + -0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + -0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.387 + 0.0 ] ], [ [ - 0.398 + 0.011 ] ], [ [ - 0.432 + 0.045 ] ], [ [ - 0.556 + 0.169 ] ], [ [ - 0.622 + 0.235 ] ], [ [ - 0.721 + 0.334 ] ], [ [ - 0.742 + 0.355 ] ], [ [ - 0.737 + 0.35 ] ], [ [ - 0.737 + 0.283 ] ], [ [ - 0.577 + 0.283 ] ], [ [ - 0.577 + 0.123 ] ], [ [ - 0.577 + 0.123 ] ], [ [ - 0.577 + 0.123 ] ], [ [ - 0.577 + 0.123 ] ], [ [ - 0.577 + 0.123 ] ], [ [ - 0.577 + 0.043 ] ], [ [ - 0.577 + 0.0 ] ], [ [ - 0.577 + 0.0 ] ], [ [ - 0.577 + 0.0 ] ], [ [ - 0.577 + 0.0 ] ], [ [ - 0.577 + -0.0 ] ], [ [ - 0.577 + 0.0 ] ], [ [ - 0.577 + 0.0 ] ], [ [ - 0.577 + 0.0 ] ], [ [ - 0.577 + -0.0 ] ], [ [ - 0.577 + -0.0 ] ], [ [ - 0.577 + -0.0 ] ], [ [ - 0.417 + 0.0 ] ], [ [ - 0.417 + 0.0 ] ], [ [ - 0.417 + 0.0 ] ], [ [ - 0.417 + 0.0 ] ], [ [ - 0.417 + -0.0 ] ], [ [ - 0.417 + -0.0 ] ], [ [ - 0.257 + -0.0 ] ], [ [ - 0.257 + 0.0 ] ], [ [ - 0.257 + 0.0 ] ], [ [ - 0.257 + 0.0 ] ], [ [ - 0.257 + 0.0 ] ], [ [ - 0.2 + 0.0 ] ], [ [ - 0.2 + 0.0 ] ], [ [ - 0.2 + -0.0 ] ], [ [ - 0.2 + 0.0 ] ], [ [ - 0.2 + 0.0 ] ], [ [ - 0.2 + 0.0 ] ], [ [ - 0.2 + 0.0 ] ] ], @@ -2949,47 +2949,47 @@ "storage_discharge_series_kw": [ [ [ - 0.0 + 16.553543950349194 ] ], [ [ - 0.0 + 16.553543950349194 ] ], [ [ - 0.0 + 16.553543950349194 ] ], [ [ - 0.0 + 31.876305895599998 ] ], [ [ - 31.8763058956 + 31.876305895599998 ] ], [ [ - 26.477048520759453 + 26.47704852075946 ] ], [ [ - 0.0 + 31.876305895599998 ] ], [ [ - 0.0 + 25.215782278447378 ] ], [ [ - 0.0 + 2.24453151044555 ] ], [ @@ -2999,12 +2999,12 @@ ], [ [ - 0.0 + -0.0 ] ], [ [ - 0.0 + -0.0 ] ], [ @@ -3034,7 +3034,7 @@ ], [ [ - 31.8763058956 + 0.0 ] ], [ @@ -3089,7 +3089,7 @@ ], [ [ - 0.0 + -0.0 ] ], [ @@ -3099,22 +3099,22 @@ ], [ [ - 0.0 + -0.0 ] ], [ [ - 0.0 + -0.0 ] ], [ [ - 0.0 + -0.0 ] ], [ [ - 0.0 + -0.0 ] ], [ @@ -3129,7 +3129,7 @@ ], [ [ - 31.8763058956 + 0.0 ] ], [ @@ -3239,22 +3239,22 @@ ], [ [ - 0.8641905819693108 + 0.8641905819693114 ] ], [ [ - 0.0 + 13.438481755355625 ] ], [ [ - 31.8763058956 + 0.0 ] ], [ [ - 0.0 + 31.876305895599998 ] ], [ @@ -3279,12 +3279,12 @@ ], [ [ - 0.0 + 15.938152947799608 ] ], [ [ - 0.0 + 8.526810074057726 ] ], [ @@ -3339,22 +3339,22 @@ ], [ [ - 31.8763058956 + 0.0 ] ], [ [ - 0.0 + -0.0 ] ], [ [ - 0.0 + -0.0 ] ], [ [ - 0.0 + -0.0 ] ], [ @@ -3369,7 +3369,7 @@ ], [ [ - 31.8763058956 + 0.0 ] ], [ @@ -3394,12 +3394,12 @@ ], [ [ - 11.426396256453451 + 0.0 ] ], [ [ - 0.0 + -0.0 ] ], [ @@ -3434,7 +3434,7 @@ "size_kw": 31.88, "size_kwh": 210.17, "initial_capital_cost": 124638.15, - "dc_couple_inverter_size_kw": 82.18, + "dc_couple_inverter_size_kw": 82.7, "soc_series_fraction": [ 0.5, 0.5, @@ -12286,7 +12286,10 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -12299,16 +12302,13 @@ 0.0, 0.0, 0.0, + -0.0, + -0.0, + -0.0, 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + -0.0, + -0.0, + -0.0, 31.876, 31.876, 31.876, @@ -12741,7 +12741,7 @@ 0.0, 0.0, 0.0, - 0.0, + -0.0, 6.126, 31.876, 31.876, @@ -12765,7 +12765,7 @@ 0.0, 0.0, 0.0, - 0.0, + -0.0, 0.0, 26.115, 31.876, @@ -14637,7 +14637,7 @@ 0.0, 0.0, 0.0, - 0.0, + -0.0, 0.0, 18.869, 31.876, @@ -20182,8 +20182,8 @@ 0.0, 0.0, 0.0, - 0.0, - 0.0, + -0.0, + -0.0, 8.532, 31.876, 0.0, @@ -20853,7 +20853,7 @@ 0.0, 0.0, 0.0, - 0.0, + -0.0, 2.56, 31.876, 31.876, @@ -20877,9 +20877,9 @@ 0.0, 0.0, 0.0, - 0.0, - 0.0, - 0.0, + -0.0, + -0.0, + -0.0, 29.663, 31.876, 0.0, @@ -20901,9 +20901,9 @@ 0.0, 0.0, 0.0, - 0.0, - 0.0, - 0.0, + -0.0, + -0.0, + -0.0, 27.283, 31.876, 0.0, @@ -20957,19 +20957,19 @@ 0.0, 0.0, 0.0, - 0.0 + -0.0 ] }, "status": "optimal", - "solver_seconds": 3.359, + "solver_seconds": 5.603, "ElectricUtility": { - "lifecycle_emissions_tonnes_CO2_bau": 10653.83, - "annual_emissions_tonnes_CO2_bau": 495.07, - "lifecycle_emissions_tonnes_PM25": 0.54, + "lifecycle_emissions_tonnes_CO2_bau": 911.04, + "annual_emissions_tonnes_CO2_bau": 36.4416, + "lifecycle_emissions_tonnes_PM25": 0.36, "annual_energy_supplied_kwh_bau": 1.0054267e6, - "lifecycle_emissions_tonnes_PM25_bau": 0.6, - "lifecycle_emissions_tonnes_SO2": 0.63, - "annual_emissions_tonnes_SO2_bau": 0.03, + "lifecycle_emissions_tonnes_PM25_bau": 0.39, + "lifecycle_emissions_tonnes_SO2": 0.33, + "annual_emissions_tonnes_SO2_bau": 0.0148, "electric_to_load_series_kw": [ 31.876, 31.876, @@ -21134,7 +21134,7 @@ 114.821, 101.185, 65.758, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -21302,7 +21302,7 @@ 111.359, 101.185, 65.758, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -21470,7 +21470,7 @@ 108.417, 101.185, 65.758, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -21974,7 +21974,7 @@ 112.355, 96.512, 65.808, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -22646,7 +22646,7 @@ 71.86, 47.494, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -22813,8 +22813,8 @@ 93.09, 67.842, 46.538, - -0.0, - -0.0, + 0.0, + 0.0, 31.876, 31.876, 31.876, @@ -22981,7 +22981,7 @@ 94.58, 68.963, 43.193, - -0.0, + 0.0, 0.0, 31.876, 31.876, @@ -23150,7 +23150,7 @@ 67.853, 42.857, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -23318,7 +23318,7 @@ 77.741, 44.233, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -23486,7 +23486,7 @@ 68.887, 42.764, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -23654,7 +23654,7 @@ 69.238, 42.852, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -23822,7 +23822,7 @@ 69.73, 42.615, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -23990,7 +23990,7 @@ 71.788, 42.051, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -24158,7 +24158,7 @@ 68.985, 42.361, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -24326,7 +24326,7 @@ 69.57, 42.443, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -24518,7 +24518,7 @@ 86.615, 52.031, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -24662,7 +24662,7 @@ 70.082, 42.147, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -24998,7 +24998,7 @@ 70.633, 41.791, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -25334,7 +25334,7 @@ 68.11, 41.617, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -26006,7 +26006,7 @@ 106.69, 67.087, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -26174,7 +26174,7 @@ 68.148, 41.748, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -26342,7 +26342,7 @@ 111.383, 69.649, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -26510,7 +26510,7 @@ 82.217, 43.681, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -26870,7 +26870,7 @@ 84.775, 44.917, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -27013,8 +27013,8 @@ 149.736, 112.02, 69.201, - -0.0, - -0.0, + 0.0, + 0.0, 31.876, 31.876, 31.876, @@ -27181,7 +27181,7 @@ 129.917, 92.033, 55.133, - -0.0, + 0.0, 0.0, 31.876, 31.876, @@ -27350,7 +27350,7 @@ 133.631, 89.055, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -27518,7 +27518,7 @@ 78.689, 55.479, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -27685,7 +27685,7 @@ 120.204, 78.96, 60.714, - -0.0, + 0.0, 0.0, 31.876, 31.876, @@ -27709,8 +27709,8 @@ 112.883, 75.525, 58.982, - -0.0, - -0.0, + 0.0, + 0.0, 31.876, 31.876, 31.876, @@ -27853,8 +27853,8 @@ 102.008, 75.047, 62.332, - -0.0, - -0.0, + 0.0, + 0.0, 31.876, 31.876, 31.876, @@ -28022,7 +28022,7 @@ 76.025, 65.758, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -28190,7 +28190,7 @@ 78.316, 65.762, 0.0, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -28357,7 +28357,7 @@ 100.797, 80.99, 65.758, - -0.0, + 0.0, 0.0, 31.876, 31.876, @@ -28694,7 +28694,7 @@ 122.61, 101.185, 65.758, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -28790,7 +28790,7 @@ 122.608, 101.185, 65.758, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -28862,7 +28862,7 @@ 121.338, 101.185, 65.758, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -29534,7 +29534,7 @@ 122.346, 101.185, 65.758, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -29582,7 +29582,7 @@ 123.521, 101.204, 65.758, - -0.0, + 0.0, 31.876, 31.876, 31.876, @@ -29732,13 +29732,13 @@ 33.107, 33.107 ], - "annual_emissions_tonnes_NOx": 0.13, - "annual_emissions_tonnes_SO2": 0.03, - "annual_emissions_tonnes_PM25": 0.03, - "lifecycle_emissions_tonnes_NOx": 2.84, - "annual_emissions_tonnes_PM25_bau": 0.03, + "annual_emissions_tonnes_NOx": 0.086, + "annual_emissions_tonnes_SO2": 0.0132, + "annual_emissions_tonnes_PM25": 0.0144, + "lifecycle_emissions_tonnes_NOx": 2.15, + "avert_emissions_region": "California", + "annual_emissions_tonnes_PM25_bau": 0.015600000000000001, "annual_energy_supplied_kwh": 920618.46, - "emissions_region": "California", "electric_to_storage_series_kw": [ 0.0, 0.0, @@ -38501,7 +38501,8 @@ 0.0, 0.0 ], - "lifecycle_emissions_tonnes_NOx_bau": 3.11, + "distance_to_avert_emissions_region_meters": 0.0, + "lifecycle_emissions_tonnes_NOx_bau": 2.38, "electric_to_load_series_kw_bau": [ 31.876, 31.876, @@ -47264,11 +47265,11 @@ 33.107, 33.107 ], - "lifecycle_emissions_tonnes_SO2_bau": 0.69, - "distance_to_emissions_region_meters": 0.0, - "annual_emissions_tonnes_NOx_bau": 0.14, - "annual_emissions_tonnes_CO2": 452.67, - "lifecycle_emissions_tonnes_CO2": 9741.48 + "lifecycle_emissions_tonnes_SO2_bau": 0.37, + "cambium_emissions_region": "CAMXc", + "annual_emissions_tonnes_NOx_bau": 0.09519999999999999, + "annual_emissions_tonnes_CO2": 32.9444, + "lifecycle_emissions_tonnes_CO2": 823.61 }, "ElectricTariff": { "lifecycle_demand_cost_after_tax_bau": 0.0, @@ -64831,13 +64832,7 @@ "errors": [], "warnings": [ [ - "core_electric_utility.jl_187", - [ - "When using stochastic outage modeling (i.e. outage_start_time_steps, outage_durations, outage_probabilities), \n emissions and renewable energy percentage calculations and constraints do not consider outages." - ] - ], - [ - "core_reopt.jl_641", + "core_reopt.jl_665", [ "Adding binary variable to model outages. Some solvers are very slow with integer variables", "Adding binary variable to model outages. Some solvers are very slow with integer variables" @@ -70796,8 +70791,15 @@ "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", + "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y.", "The addition operator has been used on JuMP expressions a large number of times. This warning is safe to ignore but may indicate that model generation is slower than necessary. For performance reasons, you should not add expressions in a loop. Instead of x += y, use add_to_expression!(x,y) to modify x in place. If y is a single variable, you may also use add_to_expression!(x, coef, y) for x += coef*y." ] + ], + [ + "core_electric_utility.jl_321", + [ + "When using stochastic outage modeling (i.e. outage_start_time_steps, outage_durations, outage_probabilities), \n emissions and renewable energy percentage calculations and constraints do not consider outages." + ] ] ] }, @@ -97136,7 +97138,7 @@ 31.876, 31.876, 15.795, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -97256,7 +97258,7 @@ 31.876, 31.876, 10.64, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -97472,7 +97474,7 @@ 31.876, 31.876, 11.498, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -97616,7 +97618,7 @@ 31.876, 31.876, 9.084, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -97640,7 +97642,7 @@ 31.876, 31.876, 9.595, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -97784,7 +97786,7 @@ 31.876, 31.876, 6.34, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -97856,7 +97858,7 @@ 31.876, 31.876, 11.001, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -97880,7 +97882,7 @@ 31.876, 31.876, 5.648, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -97928,7 +97930,7 @@ 31.876, 31.876, 5.114, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98000,7 +98002,7 @@ 31.876, 31.876, 18.805, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98192,7 +98194,7 @@ 31.876, 31.876, 13.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98504,7 +98506,7 @@ 31.876, 30.483, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98552,7 +98554,7 @@ 31.876, 31.876, 28.936, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98599,8 +98601,8 @@ 31.876, 31.876, 31.388, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98672,7 +98674,7 @@ 31.876, 29.301, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98695,8 +98697,8 @@ 31.876, 31.876, 27.223, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98743,8 +98745,8 @@ 31.876, 31.876, 31.294, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98768,7 +98770,7 @@ 31.876, 31.876, 9.995, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98791,7 +98793,7 @@ 31.876, 31.876, 26.969, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98815,8 +98817,8 @@ 31.876, 31.876, 27.043, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98840,7 +98842,7 @@ 31.876, 25.875, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98863,7 +98865,7 @@ 31.876, 31.876, 25.676, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98887,8 +98889,8 @@ 31.876, 31.876, 26.932, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98912,7 +98914,7 @@ 31.876, 24.095, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98935,7 +98937,7 @@ 31.876, 31.876, 23.4, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -98959,8 +98961,8 @@ 31.876, 31.876, 23.183, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99007,7 +99009,7 @@ 31.876, 31.876, 24.773, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99032,7 +99034,7 @@ 31.876, 25.582, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99079,7 +99081,7 @@ 31.876, 31.876, 29.763, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99128,7 +99130,7 @@ 31.876, 13.049, 9.502, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99151,8 +99153,8 @@ 31.876, 31.876, 22.46, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99200,7 +99202,7 @@ 31.876, 31.876, 6.133, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99344,7 +99346,7 @@ 31.876, 26.189, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99367,7 +99369,7 @@ 31.876, 31.876, 18.598, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99416,7 +99418,7 @@ 31.876, 17.755, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99439,7 +99441,7 @@ 31.876, 31.876, 20.812, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99487,8 +99489,8 @@ 31.876, 31.876, 17.674, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99536,7 +99538,7 @@ 31.876, 26.32, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99631,7 +99633,7 @@ 31.876, 31.876, 13.831, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99727,7 +99729,7 @@ 31.876, 31.876, 19.089, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99775,8 +99777,8 @@ 31.876, 31.876, 18.106, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99800,7 +99802,7 @@ 31.876, 8.843, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99848,7 +99850,7 @@ 31.876, 31.876, 25.144, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99920,7 +99922,7 @@ 31.876, 15.719, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -99943,8 +99945,8 @@ 31.876, 31.876, 15.788, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100015,7 +100017,7 @@ 31.876, 31.876, 16.192, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100087,7 +100089,7 @@ 31.876, 31.876, 15.807, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100159,8 +100161,8 @@ 31.876, 31.876, 13.601, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100232,7 +100234,7 @@ 31.876, 14.559, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100279,7 +100281,7 @@ 31.876, 31.876, 11.772, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100303,7 +100305,7 @@ 31.876, 29.378, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100351,7 +100353,7 @@ 31.876, 31.876, 13.939, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100375,8 +100377,8 @@ 31.876, 31.876, 14.216, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100447,7 +100449,7 @@ 31.876, 31.876, 15.393, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100472,7 +100474,7 @@ 31.876, 1.054, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100495,7 +100497,7 @@ 31.876, 31.876, 16.083, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100519,7 +100521,7 @@ 31.876, 31.876, 16.926, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100544,7 +100546,7 @@ 31.876, 21.614, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100567,7 +100569,7 @@ 31.876, 31.876, 14.386, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100592,7 +100594,7 @@ 31.876, 13.695, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100638,9 +100640,9 @@ 31.876, 31.876, 28.394, - 0.0, - 0.0, - 0.0, + -0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100688,7 +100690,7 @@ 31.876, 16.339, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100760,7 +100762,7 @@ 31.876, 31.876, 6.108, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100784,7 +100786,7 @@ 31.876, 17.242, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100806,7 +100808,7 @@ 31.876, 31.876, 29.998, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100855,7 +100857,7 @@ 31.876, 31.876, 16.144, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100879,8 +100881,8 @@ 31.876, 31.876, 14.274, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -100952,7 +100954,7 @@ 31.876, 16.825, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101119,8 +101121,8 @@ 31.876, 31.876, 17.311, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101144,7 +101146,7 @@ 25.696, 0.0, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101215,8 +101217,8 @@ 31.876, 31.876, 18.276, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101287,8 +101289,8 @@ 31.876, 31.876, 22.145, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101407,7 +101409,7 @@ 31.876, 31.876, 17.717, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101431,7 +101433,7 @@ 31.876, 31.876, 19.616, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101478,8 +101480,8 @@ 31.876, 31.876, 27.736, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101550,9 +101552,9 @@ 31.876, 31.876, 29.589, - 0.0, - 0.0, - 0.0, + -0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101576,7 +101578,7 @@ 31.876, 20.382, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101623,7 +101625,7 @@ 31.876, 31.876, 20.904, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101696,7 +101698,7 @@ 31.876, 19.743, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101791,7 +101793,7 @@ 31.876, 31.876, 23.651, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101814,7 +101816,7 @@ 31.876, 31.876, 30.723, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101839,7 +101841,7 @@ 31.876, 31.876, 21.493, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101864,7 +101866,7 @@ 31.876, 21.309, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101912,7 +101914,7 @@ 31.876, 21.537, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -101959,8 +101961,8 @@ 31.876, 31.876, 22.701, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102032,7 +102034,7 @@ 31.876, 22.713, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102055,7 +102057,7 @@ 31.876, 31.876, 22.625, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102103,8 +102105,8 @@ 31.876, 31.876, 22.53, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102127,7 +102129,7 @@ 31.876, 31.876, 22.618, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102151,7 +102153,7 @@ 31.876, 31.876, 3.201, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102176,7 +102178,7 @@ 31.876, 22.879, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102248,7 +102250,7 @@ 31.876, 22.464, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102271,7 +102273,7 @@ 31.876, 31.876, 22.494, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102343,8 +102345,8 @@ 31.876, 31.876, 21.073, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102415,7 +102417,7 @@ 31.876, 31.876, 21.245, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102463,8 +102465,8 @@ 31.876, 31.876, 22.193, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102560,7 +102562,7 @@ 31.876, 22.702, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102608,7 +102610,7 @@ 31.876, 22.23, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102656,7 +102658,7 @@ 31.876, 9.003, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102679,8 +102681,8 @@ 31.876, 31.876, 21.157, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102704,7 +102706,7 @@ 31.876, 21.341, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102752,7 +102754,7 @@ 31.876, 20.758, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -102824,7 +102826,7 @@ 31.876, 15.028, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103016,7 +103018,7 @@ 31.876, 16.958, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103039,8 +103041,8 @@ 31.876, 31.876, 21.453, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103111,7 +103113,7 @@ 31.876, 31.876, 18.663, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103135,8 +103137,8 @@ 31.876, 31.876, 18.099, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103183,8 +103185,8 @@ 31.876, 31.876, 18.986, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103255,8 +103257,8 @@ 31.876, 31.876, 22.934, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103280,7 +103282,7 @@ 31.876, 17.204, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103328,7 +103330,7 @@ 31.876, 15.785, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103495,8 +103497,8 @@ 31.876, 31.876, 15.886, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103543,7 +103545,7 @@ 31.876, 31.876, 18.509, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103639,7 +103641,7 @@ 31.876, 31.876, 18.846, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103808,7 +103810,7 @@ 31.876, 15.45, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103903,7 +103905,7 @@ 31.876, 31.876, 17.875, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103927,7 +103929,7 @@ 31.876, 31.876, 17.162, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -103975,7 +103977,7 @@ 31.876, 31.876, 18.391, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104120,7 +104122,7 @@ 31.876, 20.041, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104168,7 +104170,7 @@ 31.876, 20.629, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104191,7 +104193,7 @@ 31.876, 31.876, 20.748, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104215,8 +104217,8 @@ 31.876, 31.876, 24.331, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104264,7 +104266,7 @@ 31.876, 24.176, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104312,7 +104314,7 @@ 31.876, 20.523, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104335,7 +104337,7 @@ 31.876, 31.876, 21.707, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104408,7 +104410,7 @@ 31.876, 23.617, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104431,8 +104433,8 @@ 31.876, 31.876, 25.472, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104552,7 +104554,7 @@ 31.876, 25.808, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104696,7 +104698,7 @@ 31.876, 31.876, 19.559, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104743,7 +104745,7 @@ 31.876, 31.876, 30.08, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104768,7 +104770,7 @@ 31.876, 26.438, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104863,8 +104865,8 @@ 31.876, 31.876, 29.671, - 0.0, - 0.0, + -0.0, + -0.0, 0.0, 0.0, 0.0, @@ -104888,7 +104890,7 @@ 31.876, 30.454, 0.0, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -105008,7 +105010,7 @@ 31.876, 31.876, 10.944, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -105032,7 +105034,7 @@ 31.876, 31.876, 23.763, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -105056,7 +105058,7 @@ 31.876, 31.876, 22.407, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -105200,7 +105202,7 @@ 31.876, 31.876, 3.929, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -105248,7 +105250,7 @@ 31.876, 31.876, 4.796, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -105296,7 +105298,7 @@ 31.876, 31.876, 5.109, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -105488,7 +105490,7 @@ 31.876, 31.876, 7.154, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -105560,7 +105562,7 @@ 31.876, 31.876, 8.558, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -105632,7 +105634,7 @@ 31.876, 31.876, 9.451, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -105728,7 +105730,7 @@ 31.876, 31.876, 9.895, - 0.0, + -0.0, 0.0, 0.0, 0.0, @@ -202268,67 +202270,28 @@ ], "Financial": { "net_present_cost": 0.0, - "lcc": 2.428401357e6, + "lifecycle_om_costs_before_tax_bau": 14793.9232, + "lcc": 2.4288865985e6, + "lifecycle_om_costs_after_tax": 19027.8031, "year_one_om_costs_before_tax": 1946.6667, "lifecycle_generation_tech_capital_costs": 45554.4483, "lifecycle_offgrid_other_annual_costs_after_tax": 0.0, - "initial_capital_costs_after_incentives": 111136.229, + "replacements_present_cost_after_tax": 29880.1042, + "lifecycle_outage_cost": 37487.7383, + "initial_capital_costs_after_incentives": 112040.9982, "lifecycle_MG_upgrade_and_fuel_cost": 0.0, "lifecycle_elecbill_after_tax": 2.2304499547e6, - "lifecycle_offgrid_other_capital_costs": 0.0, - "om_and_replacement_present_cost_after_tax": 48907.9073, - "replacements_future_cost_after_tax": 89626.194, - "developer_annual_free_cashflows": [], - "initial_capital_costs": 207302.2781, - "lifecycle_om_costs_after_tax_bau": 10947.5032, - "offtaker_annual_free_cashflows_bau": [ - 0.0, - -200094.22, - -204698.09, - -209407.89, - -214226.05, - -219155.08, - -224197.53, - -229355.99, - -234633.15, - -240031.73, - -245554.53, - -251204.41, - -256984.28, - -262897.15, - -268946.07, - -275134.17, - -281464.66, - -287940.81, - -294565.97, - -301343.57, - -308277.12, - -315370.21, - -322626.51, - -330049.77, - -337643.84, - -345412.65 - ], - "lifecycle_capital_costs": 141016.3332, - "lifecycle_production_incentive_after_tax": 0.0, - "internal_rate_of_return": 0.19, - "lifecycle_elecbill_after_tax_bau": 2.5219879993e6, - "lifecycle_chp_standby_cost_after_tax": 0.0, - "lifecycle_om_costs_before_tax_bau": 14793.9232, - "lifecycle_om_costs_after_tax": 19027.8031, - "replacements_present_cost_after_tax": 29880.1042, - "lifecycle_outage_cost": 38003.691, - "lifecycle_storage_capital_costs": 95461.8849, + "lifecycle_storage_capital_costs": 96366.6541, "offtaker_annual_free_cashflows": [ -207302.28, - -77281.59, - -180429.5, - -184999.06, - -189554.76, - -194129.64, - -198609.75, - -203191.87, - -208126.27, + -82003.36, + -179080.34, + -184035.54, + -188866.68, + -193637.69, + -198118.35, + -202699.91, + -207880.57, -213168.04, -284399.42, -223093.9, @@ -202348,19 +202311,24 @@ -306795.2 ], "year_one_om_costs_before_tax_bau": 1120.0, - "lifecycle_emissions_cost_health_bau": 58407.13, + "lifecycle_offgrid_other_capital_costs": 0.0, + "lifecycle_emissions_cost_health_bau": 48796.67, + "om_and_replacement_present_cost_after_tax": 48907.9073, "lifecycle_fuel_costs_after_tax_bau": 0.0, + "replacements_future_cost_after_tax": 89626.194, + "developer_annual_free_cashflows": [], "developer_om_and_replacement_present_cost_after_tax": 48907.9073, + "lifecycle_emissions_cost_climate_bau": 29288.99, "offtaker_discounted_annual_free_cashflows": [ -207302.28, - -71358.81, - -153833.4, - -145641.17, - -137791.01, - -130301.55, - -123092.0, - -116280.56, - -109976.34, + -75718.71, + -152683.11, + -144882.63, + -137290.83, + -129971.34, + -122787.45, + -115999.03, + -109846.51, -104007.82, -128128.03, -92805.7, @@ -202379,13 +202347,42 @@ -44246.87, -41796.23 ], - "lifecycle_emissions_cost_climate_bau": 350494.22, - "lcc_bau": 2.5988503738e6, - "lifecycle_capital_costs_plus_om_after_tax": 160044.1364, - "lifecycle_emissions_cost_health": 53261.03, + "lcc_bau": 2.5988498648e6, + "lifecycle_capital_costs_plus_om_after_tax": 160948.9055, + "lifecycle_emissions_cost_health": 44202.55, + "initial_capital_costs": 207302.2781, + "lifecycle_om_costs_after_tax_bau": 10947.5032, "lifecycle_om_costs_before_tax": 25713.2475, "annualized_payment_to_third_party": 0.0, - "lifecycle_emissions_cost_climate": 320479.13, + "offtaker_annual_free_cashflows_bau": [ + 0.0, + -200094.22, + -204698.09, + -209407.89, + -214226.05, + -219155.08, + -224197.53, + -229355.99, + -234633.15, + -240031.73, + -245554.53, + -251204.41, + -256984.28, + -262897.15, + -268946.07, + -275134.17, + -281464.66, + -287940.81, + -294565.97, + -301343.57, + -308277.12, + -315370.21, + -322626.51, + -330049.77, + -337643.84, + -345412.65 + ], + "lifecycle_emissions_cost_climate": 26478.04, "lifecycle_fuel_costs_after_tax": 0.0, "lifecycle_chp_standby_cost_after_tax_bau": 0.0, "lifecycle_production_incentive_after_tax_bau": 0.0, @@ -202417,10 +202414,15 @@ -49816.81, -47057.28 ], - "npv": 170449.02, + "lifecycle_capital_costs": 141921.1024, + "lifecycle_production_incentive_after_tax": 0.0, + "npv": 169963.27, + "internal_rate_of_return": 0.19, + "lifecycle_elecbill_after_tax_bau": 2.5219879993e6, "lifecycle_MG_upgrade_and_fuel_cost_bau": 0.0, - "simple_payback_years": 4.45, + "simple_payback_years": 4.5, "year_one_om_costs_after_tax": 1440.5333, - "lifecycle_outage_cost_bau": 65914.3623 + "lifecycle_outage_cost_bau": 65914.3623, + "lifecycle_chp_standby_cost_after_tax": 0.0 } }